]> git.donarmstrong.com Git - mothur.git/blobdiff - parsimonycommand.h
got rid of extra temp files in dist.seqs
[mothur.git] / parsimonycommand.h
index ba30d4016886123c1d8b33967899d699619b30b4..603506f666e022a5b314aa73ca1e9817abfa85a4 100644 (file)
 #include "command.hpp"
 #include "parsimony.h"
 #include "treemap.h"
+#include "progress.hpp"
+#include "sharedutilities.h"
+#include "fileoutput.h"
 
-using namespace std;
 
 class GlobalData;
 
@@ -21,38 +23,41 @@ class ParsimonyCommand : public Command {
        
        public:
                ParsimonyCommand();     
-               ~ParsimonyCommand() { delete pars; }
+               ~ParsimonyCommand() { delete pars; delete util; delete output; }
                int execute();  
        
        private:
                GlobalData* globaldata;
+               SharedUtil* util;
+               FileOutput* output;
                vector<Tree*> T;           //user trees
                Tree* randT;  //random tree
                Tree* copyUserTree; 
                TreeMap* tmap; 
                TreeMap* savetmap;
                Parsimony* pars;
-               string parsFile, sumFile, randomtree;
-               int iters, numGroups;
+               vector<string> groupComb; // AB. AC, BC...
+               string sumFile, randomtree, allGroups;
+               int iters, numGroups, numComp, counter;
                vector<int> numEachGroup; //vector containing the number of sequences in each group the users wants for random distrib.
-               vector<float> userTreeScores; //scores for users trees
-               vector<float> UScoreSig;  //tree score signifigance when compared to random trees - percentage of random trees with that score or lower.
+               vector< vector<float> > userTreeScores; //scores for users trees for each comb.
+               vector< vector<float> > UScoreSig;  //tree score signifigance when compared to random trees - percentage of random trees with that score or lower.
                EstOutput userData;                     //pscore info for user tree
                EstOutput randomData;           //pscore info for random trees
-               map<int, float> validScores;  //contains scores from both user and random
-               map<int, float> rscoreFreq;  //pscore, number of random trees with that score.
-               map<int, float> uscoreFreq;  //pscore, number of user trees with that score.
-               map<int, float> rCumul;  //pscore, cumulative percentage of number of random trees with that score or lower.
-               map<int, float> uCumul;  //pscore, cumulative percentage of number of user trees with that score or lower .
-               map<int, float>::iterator it;
-               map<int, float>::iterator it2;
+               map<int, double>  validScores;  //map contains scores from both user and random
+               vector< map<int, double> > rscoreFreq;  //map <pscore, number of random trees with that score.> -vector entry for each combination.
+               vector< map<int, double> > uscoreFreq;  //map <pscore, number of user trees with that score.> -vector entry for each combination.
+               vector< map<int, double> > rCumul;  //map <pscore, cumulative percentage of number of random trees with that score or lower.> -vector entry for each combination.
+               vector< map<int, double> > uCumul;  //map <pscore, cumulative percentage of number of user trees with that score or lower .> -vector entry for each combination.
+               map<int, double>::iterator it;
+               map<int, double>::iterator it2;
                
                ofstream out, outSum;
+               ifstream inFile;
                
                void printParsimonyFile();  
                void printUSummaryFile();
                void getUserInput();
-               void setGroups();
                
 };