X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=getlineagecommand.h;h=a6770614b6dfffac32f4e57ce65f451a0046085e;hb=e0ce7cbc93d7d2fbb753ca694182db092a0ea0e7;hp=0d07ac6193f37807a25247df864f762e67369d58;hpb=ca0785e447ca7aa7e2f0ab8bb1155db126b551ea;p=mothur.git diff --git a/getlineagecommand.h b/getlineagecommand.h index 0d07ac6..a677061 100644 --- a/getlineagecommand.h +++ b/getlineagecommand.h @@ -17,13 +17,24 @@ class GetLineageCommand : public Command { public: GetLineageCommand(string); - ~GetLineageCommand(){}; - int execute(); - void help(); - + GetLineageCommand(); + ~GetLineageCommand(){} + + vector setParameters(); + string getCommandName() { return "get.lineage"; } + string getCommandCategory() { return "Phylotype Analysis"; } + string getHelpString(); + string getCitation() { return "http://www.mothur.org/wiki/Get.lineage"; } + string getDescription() { return "gets 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 +44,7 @@ class GetLineageCommand : public Command { int readAlign(); int readList(); int readTax(); - string removeConfidences(string); + vector< map > getTaxons(string); }; #endif