]> git.donarmstrong.com Git - mothur.git/blobdiff - chopseqscommand.h
fixed ties issue in maligner getBlastSeqs
[mothur.git] / chopseqscommand.h
index b6af15466c3f7fde3062760335c12e11025e7393..92544ee30cb69df2f04b95a4e9f7c99c748e835e 100644 (file)
@@ -18,18 +18,25 @@ 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 getHelpString(); 
+       
+               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