X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=removelineagecommand.h;h=a756d24f583be82eac03634ebcd8496c4fd687b6;hb=96dbe925073caefaed6e6db85659c144a806aeb1;hp=9fdca48db66da3e0ddf5c603949c7380e61155b0;hpb=ca9ac1d80c62f57270b0dcd49410ebe08a8aecd6;p=mothur.git diff --git a/removelineagecommand.h b/removelineagecommand.h index 9fdca48..a756d24 100644 --- a/removelineagecommand.h +++ b/removelineagecommand.h @@ -23,24 +23,27 @@ class RemoveLineageCommand : public Command { vector setParameters(); string getCommandName() { return "remove.lineage"; } string getCommandCategory() { return "Phylotype Analysis"; } - string getHelpString(); - + string getOutputFileNameTag(string, string); + string getHelpString(); + string getCitation() { return "http://www.mothur.org/wiki/Remove.lineage"; } + string getDescription() { return "removes sequences from a list, fasta, name, group, alignreport or taxonomy file from a given taxonomy or set of taxonomies"; } + int execute(); void help() { m->mothurOut(getHelpString()); } private: set names; - vector outputNames; - string fastafile, namefile, groupfile, alignfile, listfile, taxfile, outputDir, taxons; + vector outputNames, listOfTaxons; + string fastafile, namefile, groupfile, alignfile, listfile, countfile, taxfile, outputDir, taxons; bool abort, dups; int readFasta(); int readName(); int readGroup(); + int readCount(); int readAlign(); int readList(); int readTax(); - string removeConfidences(string); vector< map > getTaxons(string); };