#include "format.h"
#include "log.h"
#include "linestream.h"
#include "common.h"
#include "blastParser.h"
Go to the source code of this file.
Functions | |
void | blastParser_deInit (void) |
Deinitialize the blatParser module. | |
void | blastParser_initFromFile (char *fileName) |
Initialize the blastParser module from file. | |
void | blastParser_initFromPipe (char *command) |
Initialize the blastParser module from pipe. | |
BlastQuery * | blastParser_nextQuery (void) |
Get the next BlastQuery. |
Definition in file blastParser.c.
void blastParser_initFromFile | ( | char * | fileName | ) |
Initialize the blastParser module from file.
[in] | fileName | File name, use "-" to denote stdin |
Definition at line 24 of file blastParser.c.
void blastParser_initFromPipe | ( | char * | command | ) |
Initialize the blastParser module from pipe.
[in] | command | Command to be executed |
Definition at line 38 of file blastParser.c.
BlastQuery* blastParser_nextQuery | ( | void | ) |
Get the next BlastQuery.
Definition at line 103 of file blastParser.c.