X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=alignmentdb.h;h=900aadc6eb8be36b9c0193f8d255a2fdc8312269;hb=8dd3c225255d7084e3aff8740aa4f1f1cabb367a;hp=d665f788764f6ea228ad70bb99867602820a16c5;hpb=74844a60d80c6dd06e3fb02ee9b928424f9019b0;p=mothur.git diff --git a/alignmentdb.h b/alignmentdb.h index d665f78..900aadc 100644 --- a/alignmentdb.h +++ b/alignmentdb.h @@ -20,7 +20,9 @@ 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*); @@ -28,8 +30,8 @@ public: int getLongestBase() { return longest; } private: - int numSeqs, longest; - float searchScore; + int numSeqs, longest, threadID; + string method; Database* search; vector templateSequences;