]> git.donarmstrong.com Git - mothur.git/blobdiff - removeseqscommand.h
added sparseDistanceMatrix class. Modified cluster commands to use the new sparse...
[mothur.git] / removeseqscommand.h
index de1e3d9d6aff8595a098cf8bf2fd6c1d5c79ec9f..474951a9feaee7d497417cf2a03f206367056241 100644 (file)
@@ -19,25 +19,29 @@ class RemoveSeqsCommand : public Command {
                RemoveSeqsCommand(string);      
                RemoveSeqsCommand();
                ~RemoveSeqsCommand(){}
-               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 "remove.seqs";                         }
+               string getCommandCategory()             { return "Sequence Processing";         }
+               string getOutputFileNameTag(string, string);
+       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, qualfile, outputDir;
                bool abort, dups;
                vector<string> outputNames;
-               map<string, vector<string> > outputTypes;
                
                int readFasta();
                int readName();
                int readGroup();
                int readAlign();
-               void readAccnos();
                int readList();
                int readTax();
                int readQual();