src/inc/blastParse.h 1.6
1.6 2009/04/12 03:47:20 markd
added support for PSI BLAST madness
Index: src/inc/blastParse.h
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/inc/blastParse.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -b -B -U 4 -r1.5 -r1.6
--- src/inc/blastParse.h 12 Aug 2007 06:07:46 -0000 1.5
+++ src/inc/blastParse.h 12 Apr 2009 03:47:20 -0000 1.6
@@ -23,16 +23,18 @@
int queryBaseCount; /* Number of bases in query. */
char *database; /* Name of database. */
int dbSeqCount; /* Number of sequences in database. */
int dbBaseCount; /* Number of bases in database. */
+ int psiRounds; /* PSI BLAST rounds, or 0 if not PSI blast */
struct blastGappedAli *gapped; /* List of gapped alignments. */
};
struct blastGappedAli
/* Info about a gapped alignment. */
{
struct blastGappedAli *next;
struct blastQuery *query; /* Query associated with this alignment (not owned here). */
+ int psiRound; /* PSI BLAST round, or 0 if not PSI blast */
char *targetName; /* Name of target sequence. */
int targetSize; /* Size of target sequence. */
struct blastBlock *blocks; /* List of aligning blocks (no big gaps). */
};