#include "format.h"
#include "log.h"
#include "linestream.h"
#include "common.h"
#include "blatParser.h"
Go to the source code of this file.
Functions | |
void | blatParser_deInit (void) |
Deinitialize the blatParser module. | |
void | blatParser_initFromFile (char *fileName) |
Initialize the blatParser module from file. | |
void | blatParser_initFromPipe (char *command) |
Initialize the blatParser module from pipe. | |
BlatQuery * | blatParser_nextQuery (void) |
Returns a pointer to next BlatQuery. |
Definition in file blatParser.c.
void blatParser_initFromFile | ( | char * | fileName | ) |
Initialize the blatParser module from file.
[in] | fileName | File name, use "-" to denote stdin |
Definition at line 28 of file blatParser.c.
void blatParser_initFromPipe | ( | char * | command | ) |
Initialize the blatParser module from pipe.
[in] | command | Command to be executed |
Definition at line 45 of file blatParser.c.
BlatQuery* blatParser_nextQuery | ( | void | ) |
Returns a pointer to next BlatQuery.
Definition at line 111 of file blatParser.c.