]> git.donarmstrong.com Git - mothur.git/blobdiff - chopseqscommand.h
removed read.dist, read.otu, read.tree and globaldata. added current to defaults...
[mothur.git] / chopseqscommand.h
index dbf4d23b71ebc1302672e66bc65472331117713f..92544ee30cb69df2f04b95a4e9f7c99c748e835e 100644 (file)
@@ -21,23 +21,22 @@ class ChopSeqsCommand : public Command {
                ChopSeqsCommand(string);
                ChopSeqsCommand();      
                ~ChopSeqsCommand(){};
-               vector<string> getRequiredParameters();
-               vector<string> getValidParameters();
-               vector<string> getRequiredFiles();
-               map<string, vector<string> > getOutputFiles() { return outputTypes; }
-               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, countGaps, Short;
                int numbases;
                vector<string> outputNames;
-               map<string, vector<string> > outputTypes;
                
                string getChopped(Sequence);
-               
-               
 };
 
 #endif