X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=removeseqscommand.h;h=1a6365dac35b9e18669f8827c4054268b9123d9e;hb=372fb21ea66ced432b109225851a1b80ef0491a3;hp=d99151ec022dfdafcfa2327998466549cbcb3eda;hpb=ca9ac1d80c62f57270b0dcd49410ebe08a8aecd6;p=mothur.git diff --git a/removeseqscommand.h b/removeseqscommand.h index d99151e..1a6365d 100644 --- a/removeseqscommand.h +++ b/removeseqscommand.h @@ -23,23 +23,28 @@ class RemoveSeqsCommand : public Command { vector setParameters(); string getCommandName() { return "remove.seqs"; } string getCommandCategory() { return "Sequence Processing"; } - string getHelpString(); - + + string getHelpString(); + string getOutputPattern(string); + 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, qualfile, outputDir; + string accnosfile, fastafile, namefile, groupfile, countfile, alignfile, listfile, taxfile, qualfile, outputDir; bool abort, dups; vector outputNames; + map uniqueMap; int readFasta(); int readName(); int readGroup(); + int readCount(); int readAlign(); - void readAccnos(); int readList(); int readTax(); int readQual();