00001 /* seqStats - some sequence statistics functions that need 00002 * math libraries. */ 00003 00004 #ifndef SEQSTATS_H 00005 #define SEQSTATS_H 00006 00007 double dnaMatchEntropy(DNA *query, DNA *target, int baseCount); 00008 /* Return entropy of matching bases - a number between 0 and 1, with 00009 * higher numbers the more diverse the matching bases. */ 00010 00011 #endif /* SEQSTATS_H */
1.5.2