]> git.donarmstrong.com Git - mothur.git/blobdiff - unifracweightedcommand.h
added citation function to commands
[mothur.git] / unifracweightedcommand.h
index d309566e45b0d58fb2631eeb1a0ad1816907f437..2e2ba3a64f11bf35f7b6ff612bd8b32e6bdd644a 100644 (file)
 #include "command.hpp"
 #include "weighted.h"
 #include "treemap.h"
-
-using namespace std;
-
-class GlobalData;
+#include "progress.hpp"
+#include "sharedutilities.h"
+#include "fileoutput.h"
+#include "readtree.h"
 
 class UnifracWeightedCommand : public Command {
        
        public:
-               UnifracWeightedCommand();       
-               ~UnifracWeightedCommand() { delete weighted; }
-               int execute();  
+               UnifracWeightedCommand(string);
+               UnifracWeightedCommand();
+               ~UnifracWeightedCommand() {}
+       
+               vector<string> setParameters();
+               string getCommandName()                 { return "unifrac.weighted";            }
+               string getCommandCategory()             { return "Hypothesis Testing";          }
+               string getHelpString(); 
+               string getCitation() { return "http://www.mothur.org/wiki/Unifrac.weighted"; }
+       
+               int execute();
+               void help() { m->mothurOut(getHelpString()); }
        
        private:
-               GlobalData* globaldata;
+               struct linePair {
+                       int start;
+                       int num;
+                       linePair(int i, int j) : start(i), num(j) {}
+               };
+               vector<linePair> lines;
+               
+               ReadTree* read;
+               SharedUtil* util;
+               FileOutput* output;
                vector<Tree*> T;           //user trees
-               vector<float> utreeScores;  //user tree unweighted scores
-               vector<float> WScoreSig;  //tree weighted score signifigance when compared to random trees - percentage of random trees with that score or lower.
+               vector<double> utreeScores;  //user tree unweighted scores
+               vector<double> WScoreSig;  //tree weighted score signifigance when compared to random trees - percentage of random trees with that score or lower.
                vector<string> groupComb; // AB. AC, BC...
-               Tree* randT;  //random tree
                TreeMap* tmap;
                Weighted* weighted;
-               string weightedFile, sumFile;
-               int iters, numGroups, numComp;
+               string sumFile, outputDir;
+               int iters, numGroups, numComp, counter;
                EstOutput userData;                     //weighted score info for user tree
                EstOutput randomData;           //weighted score info for random trees
-               vector< vector<float> > validScores;  //vector<contains scores from both user and random> each group comb has an entry
-               vector< vector<float> > rScores;  //vector<weighted scores for random trees.> each group comb has an entry
-               vector< vector<float> > uScores;  //vector<weighted scores for user trees.> each group comb has an entry
-                                                               
-               ofstream outSum, out;
+               vector< vector<double> > rScores;  //vector<weighted scores for random trees.> each group comb has an entry
+               vector< vector<double> > uScores;  //vector<weighted scores for user trees.> each group comb has an entry
+               vector< map<float, float> > rScoreFreq;  //map <weighted score, number of random trees with that score.> -vector entry for each combination.
+               vector< map<float, float> > rCumul;  //map <weighted score, cumulative percentage of number of random trees with that score or higher.> -vector entry for each c                                                                
+               map<float, float>  validScores;  //map contains scores from random
+               
+               bool abort, phylip, random, includeRoot;
+               string groups, itersString, outputForm, treefile, groupfile, namefile;
+               vector<string> Groups, outputNames; //holds groups to be used
+               int processors, numUniquesInName;
+               ofstream outSum;
+               map<string, string> nameMap;
                
                void printWSummaryFile();
-       //      void printWeightedFile();  
-               void removeValidScoresDuplicates();
-               int findIndex(float);
-               void setGroups(); 
+               void printWeightedFile();  
+               void createPhylipFile();
+               //void removeValidScoresDuplicates();
+               int findIndex(float, int);
+               void calculateFreqsCumuls();
+               int createProcesses(Tree*,  vector< vector<string> >,  vector< vector<double> >&);
+               int driver(Tree*, vector< vector<string> >, int, int,  vector< vector<double> >&);
+               int readNamesFile();
+               
 };