X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=unifracweightedcommand.h;h=7317c8a43092a5712a06dda00589d1eb4528c649;hb=a98eb683e17d8e49583bf2d215ab7562a4cdca75;hp=c36152d107d894c4e26c857ce3508e4780ae06ef;hpb=315e38cf393c82be238da5b32574f225a020d25c;p=mothur.git diff --git a/unifracweightedcommand.h b/unifracweightedcommand.h index c36152d..7317c8a 100644 --- a/unifracweightedcommand.h +++ b/unifracweightedcommand.h @@ -23,12 +23,19 @@ class GlobalData; class UnifracWeightedCommand : public Command { public: - UnifracWeightedCommand(string); + UnifracWeightedCommand(string); ~UnifracWeightedCommand() { if (abort == false) { delete weighted; delete util; } } int execute(); void help(); private: + struct linePair { + int start; + int num; + linePair(int i, int j) : start(i), num(j) {} + }; + vector lines; + GlobalData* globaldata; SharedUtil* util; FileOutput* output; @@ -36,7 +43,6 @@ class UnifracWeightedCommand : public Command { vector utreeScores; //user tree unweighted scores vector WScoreSig; //tree weighted score signifigance when compared to random trees - percentage of random trees with that score or lower. vector groupComb; // AB. AC, BC... - Tree* randT; //random tree TreeMap* tmap; Weighted* weighted; string sumFile, outputDir; @@ -51,7 +57,8 @@ class UnifracWeightedCommand : public Command { bool abort, phylip, random; string groups, itersString; - vector Groups; //holds groups to be used + vector Groups, outputNames; //holds groups to be used + int processors; ofstream outSum; @@ -62,6 +69,8 @@ class UnifracWeightedCommand : public Command { //void removeValidScoresDuplicates(); int findIndex(float, int); void calculateFreqsCumuls(); + int createProcesses(Tree*, vector< vector >, vector&, vector< vector >&); + int driver(Tree*, vector< vector >, int, int, vector&, vector< vector >&); };