X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=getlineagecommand.h;h=4cee8b6459e3089b4d69e015b2bb4b2edb22c9eb;hb=541bab1dac00688b4c3a8c4a95ab464412663c50;hp=ca84bf2fad3e11e60808daa15230b5674a4a7849;hpb=f06fdb807822f8e06db003ed809c87250905cfc8;p=mothur.git diff --git a/getlineagecommand.h b/getlineagecommand.h index ca84bf2..4cee8b6 100644 --- a/getlineagecommand.h +++ b/getlineagecommand.h @@ -11,6 +11,8 @@ */ #include "command.hpp" +#include "sharedrabundvector.h" +#include "listvector.hpp" class GetLineageCommand : public Command { @@ -23,8 +25,12 @@ class GetLineageCommand : public Command { vector setParameters(); string getCommandName() { return "get.lineage"; } string getCommandCategory() { return "Phylotype Analysis"; } - string getHelpString(); + + string getHelpString(); + string getOutputPattern(string); 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()); } @@ -33,16 +39,23 @@ class GetLineageCommand : public Command { private: set names; vector outputNames, listOfTaxons; - string fastafile, namefile, groupfile, alignfile, listfile, taxfile, outputDir, taxons; + string fastafile, namefile, groupfile, alignfile, countfile, listfile, taxfile, outputDir, taxons, sharedfile, constaxonomy, label; bool abort, dups; + vector lookup; + ListVector* list; int readFasta(); int readName(); + int readCount(); int readGroup(); int readAlign(); int readList(); - int readTax(); - string removeConfidences(string); + int readTax(); + int readShared(); + int readConsTax(); + int readConsList(); + int getShared(); + int getListVector(); vector< map > getTaxons(string); };