X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=removeseqscommand.h;h=1a6365dac35b9e18669f8827c4054268b9123d9e;hp=df96e4514bc84787ad901e137bbc794588681705;hb=1a20e24ee786195ab0e1cccd4f5aede7a88f3f4e;hpb=0caf3fbabaa3ece404f8ce77f4c883dc5b1bf1dc diff --git a/removeseqscommand.h b/removeseqscommand.h index df96e45..1a6365d 100644 --- a/removeseqscommand.h +++ b/removeseqscommand.h @@ -23,7 +23,9 @@ 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"; } @@ -33,15 +35,16 @@ class RemoveSeqsCommand : public Command { 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();