X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=alignmentdb.h;h=537af8d21548e118a8d7470133be1acd4aab11fb;hp=27d0434e7cbc453c6cf98dba633d65d8a9bf7790;hb=050a3ff02473a3d4c0980964e1a9ebe52e55d6b8;hpb=d3aed959ca3b68890eeb7b815e24210bcfeb256c diff --git a/alignmentdb.h b/alignmentdb.h index 27d0434..537af8d 100644 --- a/alignmentdb.h +++ b/alignmentdb.h @@ -20,9 +20,8 @@ class AlignmentDB { public: - AlignmentDB(string, string, int, float, float, float, float); //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(const AlignmentDB& adb); ~AlignmentDB(); Sequence findClosestSequence(Sequence*); @@ -30,7 +29,7 @@ public: int getLongestBase() { return longest; } private: - int numSeqs, longest; + int numSeqs, longest, threadID; string method; Database* search;