]> git.donarmstrong.com Git - mothur.git/blobdiff - alignmentdb.h
mods to shhh.seqs and trim.flows to fix eye candy output
[mothur.git] / alignmentdb.h
index d665f788764f6ea228ad70bb99867602820a16c5..22d2dd35c044a652fabafbc5deb1bef3f2022391 100644 (file)
@@ -21,6 +21,7 @@ class AlignmentDB {
 public:
 
        AlignmentDB(string, string, int, float, float, float, float);  //reads fastafile passed in and stores sequences
+       AlignmentDB(string);
        ~AlignmentDB();
        
        Sequence findClosestSequence(Sequence*);
@@ -29,7 +30,7 @@ public:
        
 private:
        int numSeqs, longest;
-       float searchScore;
+       string method;
        
        Database* search;
        vector<Sequence> templateSequences;