]> git.donarmstrong.com Git - mothur.git/blobdiff - chopseqscommand.h
added current as option is lists of file names, processors now outputted with current...
[mothur.git] / chopseqscommand.h
index 2da134e4660202410c86f86d6c1ef1e1139bff5e..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;
-               bool abort;
-               int end, fromend;
+               string fastafile, outputDir, keep;
+               bool abort, countGaps, Short;
+               int numbases;
+               vector<string> outputNames;
                
-               string getChoppedAligned(Sequence);
-               string getChoppedUnaligned(Sequence);
+               string getChopped(Sequence);
 };
 
 #endif