]> git.donarmstrong.com Git - mothur.git/blobdiff - chopseqscommand.h
fixed subsample name file name issue. added count parameter to cluster command....
[mothur.git] / chopseqscommand.h
index b6af15466c3f7fde3062760335c12e11025e7393..cc22c751483a75f246f69e4955985f158d041638 100644 (file)
@@ -18,18 +18,28 @@ class ChopSeqsCommand : public Command {
        
        public:
        
-               ChopSeqsCommand(string);        
+               ChopSeqsCommand(string);
+               ChopSeqsCommand();      
                ~ChopSeqsCommand(){};
-               int execute();
-               void help();    
-               
+       
+               vector<string> setParameters();
+               string getCommandName()                 { return "chop.seqs";           }
+               string getCommandCategory()             { return "Sequence Processing"; }
+               string getOutputFileNameTag(string, string);
+        string getHelpString();        
+               string getCitation() { return "http://www.mothur.org/wiki/Chops.seqs"; }
+               string getDescription()         { return "trim sequence length"; }
+       
+               int execute(); 
+               void help() { m->mothurOut(getHelpString()); }          
+       
        private:
                string fastafile, outputDir, keep;
-               bool abort;
+               bool abort, countGaps, Short;
                int numbases;
+               vector<string> outputNames;
                
                string getChopped(Sequence);
-               
 };
 
 #endif