X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=getlineagecommand.h;h=a6770614b6dfffac32f4e57ce65f451a0046085e;hb=36a6b02cf7f09d2bc34376b588944a9ca73429c5;hp=84f773d92c57c124fc1c748131e3cdce4f43fad4;hpb=8bc3e5b38c2317a1715f53be22fa96455868c281;p=mothur.git diff --git a/getlineagecommand.h b/getlineagecommand.h index 84f773d..a677061 100644 --- a/getlineagecommand.h +++ b/getlineagecommand.h @@ -18,20 +18,25 @@ class GetLineageCommand : public Command { GetLineageCommand(string); GetLineageCommand(); - ~GetLineageCommand(){}; - vector getRequiredParameters(); - vector getValidParameters(); - vector getRequiredFiles(); - map > getOutputFiles() { return outputTypes; } - int execute(); - void help(); - + ~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; - map > outputTypes; int readFasta(); int readName(); @@ -39,7 +44,7 @@ class GetLineageCommand : public Command { int readAlign(); int readList(); int readTax(); - string removeConfidences(string); + vector< map > getTaxons(string); }; #endif