X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=removelineagecommand.h;h=a4ffea9c529829da3c3f08cfbc41c5e3bdf5ddcf;hb=2009a1a1f47e7467094d844e7c07ab8ddf7bb447;hp=d18fc23076d83a8a3d4083ce2423af47cfd08e2f;hpb=ca0785e447ca7aa7e2f0ab8bb1155db126b551ea;p=mothur.git diff --git a/removelineagecommand.h b/removelineagecommand.h index d18fc23..a4ffea9 100644 --- a/removelineagecommand.h +++ b/removelineagecommand.h @@ -17,13 +17,22 @@ class RemoveLineageCommand : public Command { public: RemoveLineageCommand(string); + RemoveLineageCommand(); ~RemoveLineageCommand(){}; - int execute(); - void help(); - + + vector setParameters(); + string getCommandName() { return "remove.lineage"; } + string getCommandCategory() { return "Phylotype Analysis"; } + 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; + vector outputNames, listOfTaxons; string fastafile, namefile, groupfile, alignfile, listfile, taxfile, outputDir, taxons; bool abort, dups; @@ -33,7 +42,7 @@ class RemoveLineageCommand : public Command { int readAlign(); int readList(); int readTax(); - string removeConfidences(string); + vector< map > getTaxons(string); }; #endif