]> git.donarmstrong.com Git - mothur.git/blobdiff - alignmentdb.h
fixes while testing 1.33.0
[mothur.git] / alignmentdb.h
index a69b917388fcabb052ab453a4c9e8e93e55e3fb6..537af8d21548e118a8d7470133be1acd4aab11fb 100644 (file)
@@ -20,18 +20,16 @@ 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();
        
        Sequence findClosestSequence(Sequence*);
        float getSearchScore()  {  return search->getSearchScore();  }
        int getLongestBase()    {  return longest;  }
-       int MPISend(int);
-       int MPIRecv(int);
        
 private:
-       int numSeqs, longest;
+       int numSeqs, longest, threadID;
        string method;
        
        Database* search;