X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=removeseqscommand.h;h=474951a9feaee7d497417cf2a03f206367056241;hb=0cefb55a2616975bd4a144fc345693695ffc9bb6;hp=8238c649489e3dff52371fa06ab8e2f49b93258f;hpb=14edc148cb299c5624f72bb681375b704aa74f43;p=mothur.git diff --git a/removeseqscommand.h b/removeseqscommand.h index 8238c64..474951a 100644 --- a/removeseqscommand.h +++ b/removeseqscommand.h @@ -17,13 +17,24 @@ class RemoveSeqsCommand : public Command { public: RemoveSeqsCommand(string); - ~RemoveSeqsCommand(){}; - int execute(); - void help(); - + RemoveSeqsCommand(); + ~RemoveSeqsCommand(){} + + vector 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 names; - string accnosfile, fastafile, namefile, groupfile, alignfile, listfile, taxfile, outputDir; + string accnosfile, fastafile, namefile, groupfile, alignfile, listfile, taxfile, qualfile, outputDir; bool abort, dups; vector outputNames; @@ -31,9 +42,9 @@ class RemoveSeqsCommand : public Command { int readName(); int readGroup(); int readAlign(); - void readAccnos(); int readList(); int readTax(); + int readQual(); };