]> git.donarmstrong.com Git - mothur.git/blobdiff - trimseqscommand.h
changed normalize.shared and sub.sample commands to fix bug in normalize.shared and...
[mothur.git] / trimseqscommand.h
index 40c221a0ec61c051099d081f15dd87bea135a163..13d1a417684bbf3b96d8a9d05c0bde2a2e22c544 100644 (file)
@@ -27,7 +27,8 @@ public:
        string getCommandCategory()             { return "Sequence Processing";         }
        string getHelpString(); 
        string getCitation() { return "http://www.mothur.org/wiki/Trim.seqs"; }
-       
+       string getDescription()         { return "provides the preprocessing features needed to screen and sort pyrosequences"; }
+
        int execute(); 
        void help() { m->mothurOut(getHelpString()); }  
        
@@ -41,7 +42,7 @@ private:
                linePair(unsigned long int i, unsigned long int j) : start(i), end(j) {}
        };
        
-       void getOligos(vector<vector<string> >&, vector<vector<string> >&, vector<vector<string> >&);
+       bool getOligos(vector<vector<string> >&, vector<vector<string> >&, vector<vector<string> >&);
        int stripBarcode(Sequence&, QualityScores&, int&);
        int stripForward(Sequence&, QualityScores&, int&);
        bool stripReverse(Sequence&, QualityScores&);
@@ -55,7 +56,7 @@ private:
        bool compareDNASeq(string, string);
        int countDiffs(string, string);
 
-       bool abort;
+       bool abort, createGroup;
        string fastaFile, oligoFile, qFileName, groupfile, nameFile, outputDir;
        
        bool flip, allFiles, qtrim;