X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=alignmentdb.h;h=537af8d21548e118a8d7470133be1acd4aab11fb;hp=339f46ff65f423dc0366064181e690e25420b1f0;hb=1a20e24ee786195ab0e1cccd4f5aede7a88f3f4e;hpb=63e089e0b3aad1741bab60119ed7ccc784dce347 diff --git a/alignmentdb.h b/alignmentdb.h index 339f46f..537af8d 100644 --- a/alignmentdb.h +++ b/alignmentdb.h @@ -20,7 +20,8 @@ class AlignmentDB { public: - AlignmentDB(string, string, int, int, int, int, int); //reads fastafile passed in and stores sequences + AlignmentDB(string, string, int, float, float, float, float, int); //reads fastafile passed in and stores sequences + AlignmentDB(string); ~AlignmentDB(); Sequence findClosestSequence(Sequence*); @@ -28,12 +29,13 @@ public: int getLongestBase() { return longest; } private: - int numSeqs, longest; - float searchScore; + int numSeqs, longest, threadID; + string method; Database* search; vector templateSequences; Sequence emptySequence; + MothurOut* m; }; /**************************************************************************************************/