]> git.donarmstrong.com Git - mothur.git/blobdiff - removeseqscommand.h
added command descriptions
[mothur.git] / removeseqscommand.h
index 8238c649489e3dff52371fa06ab8e2f49b93258f..df96e4514bc84787ad901e137bbc794588681705 100644 (file)
@@ -17,13 +17,23 @@ class RemoveSeqsCommand : public Command {
        public:
        
                RemoveSeqsCommand(string);      
-               ~RemoveSeqsCommand(){};
-               int execute();
-               void help();    
-               
+               RemoveSeqsCommand();
+               ~RemoveSeqsCommand(){}
+       
+               vector<string> setParameters();
+               string getCommandName()                 { return "remove.seqs";                         }
+               string getCommandCategory()             { return "Sequence Processing";         }
+               string getHelpString(); 
+               string getCitation() { return "http://www.mothur.org/wiki/Remove.seqs"; }
+               string getDescription()         { return "removes sequences from a list, fasta, name, group, alignreport, quality or taxonomy file"; }
+
+               int execute(); 
+               void help() { m->mothurOut(getHelpString()); }  
+       
+       
        private:
                set<string> names;
-               string accnosfile, fastafile, namefile, groupfile, alignfile, listfile, taxfile, outputDir;
+               string accnosfile, fastafile, namefile, groupfile, alignfile, listfile, taxfile, qualfile, outputDir;
                bool abort, dups;
                vector<string> outputNames;
                
@@ -34,6 +44,7 @@ class RemoveSeqsCommand : public Command {
                void readAccnos();
                int readList();
                int readTax();
+               int readQual();
                
 };