]> git.donarmstrong.com Git - mothur.git/blobdiff - chopseqscommand.h
working on mgcluster count file change
[mothur.git] / chopseqscommand.h
index 2da134e4660202410c86f86d6c1ef1e1139bff5e..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;
-               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