X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=phylodiversitycommand.h;h=95276921149b5237a923928bc9f23a5e8e7aed1b;hb=fdfbfe59134dd7dd3e49d90609d129128ba2d370;hp=52295cf65250846036ac07fdd687832c30ef5e10;hpb=8f7f4fc08b8c70d9ef0f79607813dba4e926e102;p=mothur.git diff --git a/phylodiversitycommand.h b/phylodiversitycommand.h index 52295cf..9527692 100644 --- a/phylodiversitycommand.h +++ b/phylodiversitycommand.h @@ -12,9 +12,8 @@ #include "command.hpp" #include "treemap.h" -#include "readtree.h" #include "sharedutilities.h" - +#include "tree.h" class PhyloDiversityCommand : public Command { @@ -26,25 +25,26 @@ class PhyloDiversityCommand : public Command { vector setParameters(); string getCommandName() { return "phylo.diversity"; } string getCommandCategory() { return "Hypothesis Testing"; } - string getHelpString(); + string getOutputFileNameTag(string, string); + string getHelpString(); string getCitation() { return "Faith DP (1994). Phylogenetic pattern and the quantification of organismal biodiversity. Philos Trans R Soc Lond B Biol Sci 345: 45-58. \nhttp://www.mothur.org/wiki/Phylo.diversity"; } - + string getDescription() { return "phylo.diversity"; } + int execute(); void help() { m->mothurOut(getHelpString()); } private: - ReadTree* read; TreeMap* tmap; float freq; int iters, processors, numUniquesInName; bool abort, rarefy, summary, collect, scale; string groups, outputDir, treefile, groupfile, namefile; vector Groups, outputNames; //holds groups to be used, and outputFile names - map nameMap; + map getRootForGroups(Tree* t); int readNamesFile(); void printData(set&, map< string, vector >&, ofstream&, int); void printSumData(map< string, vector >&, ofstream&, int); - vector calcBranchLength(Tree*, int, map< string, set >&); + vector calcBranchLength(Tree*, int, vector< map >&, map); int driver(Tree*, map< string, vector >&, map >&, int, int, vector&, set&, ofstream&, ofstream&, bool); int createProcesses(vector&, Tree*, map< string, vector >&, map >&, int, int, vector&, set&, ofstream&, ofstream&);