]> git.donarmstrong.com Git - mothur.git/blob - parsimonycommand.h
Revert to previous commit
[mothur.git] / parsimonycommand.h
1 #ifndef PARSIMONYCOMMAND_H
2 #define PARSIMONYCOMMAND_H
3 /*
4  *  parsimonycommand.h
5  *  Mothur
6  *
7  *  Created by Sarah Westcott on 1/26/09.
8  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
9  *
10  */
11
12 #include "command.hpp"
13 #include "parsimony.h"
14 #include "treemap.h"
15 #include "progress.hpp"
16 #include "sharedutilities.h"
17 #include "fileoutput.h"
18 #include "readtree.h"
19
20
21 class ParsimonyCommand : public Command {
22
23 public:
24         ParsimonyCommand(string);       
25         ParsimonyCommand();
26         ~ParsimonyCommand(){}
27         
28         vector<string> setParameters();
29         string getCommandName()                 { return "parsimony";                           }
30         string getCommandCategory()             { return "Hypothesis Testing";          }
31         string getHelpString(); 
32         string getCitation() { return "Slatkin M, Maddison WP (1989). A cladistic measure of gene flow inferred from the phylogenies of alleles. Genetics 123: 603-13. \nSlatkin M, Maddison WP (1990). Detecting isolation by distance using phylogenies of genes. Genetics 126: 249-60. \nMartin AP (2002). Phylogenetic approaches for describing and comparing the diversity of microbial communities. Appl Environ Microbiol 68: 3673-82. \nSchloss PD, Handelsman J (2006). Introducing TreeClimber, a test to compare microbial community structure. Appl Environ Microbiol 72: 2379-84.\nhttp://www.mothur.org/wiki/Parsimony"; }
33         string getDescription()         { return "generic test that describes whether two or more communities have the same structure"; }
34
35         int execute();
36         void help() { m->mothurOut(getHelpString()); }
37         
38 private:
39         FileOutput* output;
40         vector<Tree*> T;           //user trees
41         Tree* randT;  //random tree
42         Tree* copyUserTree; 
43         TreeMap* tmap; 
44         TreeMap* savetmap;
45         vector<string> groupComb; // AB. AC, BC...
46         string sumFile, randomtree, allGroups, outputDir, treefile, groupfile, namefile;
47         int iters, numGroups, numComp, counter, processors, numUniquesInName;
48         vector<int> numEachGroup; //vector containing the number of sequences in each group the users wants for random distrib.
49         vector< vector<float> > userTreeScores; //scores for users trees for each comb.
50         vector< vector<float> > UScoreSig;  //tree score signifigance when compared to random trees - percentage of random trees with that score or lower.
51         EstOutput userData;                     //pscore info for user tree
52         EstOutput randomData;           //pscore info for random trees
53         map<int, double>  validScores;  //map contains scores from both user and random
54         vector< map<int, double> > rscoreFreq;  //map <pscore, number of random trees with that score.> -vector entry for each combination.
55         vector< map<int, double> > uscoreFreq;  //map <pscore, number of user trees with that score.> -vector entry for each combination.
56         vector< map<int, double> > rCumul;  //map <pscore, cumulative percentage of number of random trees with that score or lower.> -vector entry for each combination.
57         vector< map<int, double> > uCumul;  //map <pscore, cumulative percentage of number of user trees with that score or lower .> -vector entry for each combination.
58         
59         ofstream outSum;
60         bool abort;
61         string groups, itersString;
62         vector<string> Groups, outputNames; //holds groups to be used
63         map<string, string> nameMap;
64         
65         void printParsimonyFile();  
66         int printUSummaryFile();
67         void getUserInput();
68         int readNamesFile();
69         
70 };
71
72
73 #endif