]> git.donarmstrong.com Git - mothur.git/blobdiff - chopseqscommand.h
added sequence name to error string in fastq.info. Changed np_shannon to npshannon.
[mothur.git] / chopseqscommand.h
index b6af15466c3f7fde3062760335c12e11025e7393..e73714d2e98406da2a05e54bb34f61398bd0143c 100644 (file)
@@ -18,18 +18,27 @@ 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(); 
+               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