]> git.donarmstrong.com Git - mothur.git/blob - phylodiversitycommand.h
Merge remote-tracking branch 'mothur/master'
[mothur.git] / phylodiversitycommand.h
1 #ifndef PHYLODIVERSITYCOMMAND_H
2 #define PHYLODIVERSITYCOMMAND_H
3
4 /*
5  *  phylodiversitycommand.h
6  *  Mothur
7  *
8  *  Created by westcott on 4/30/10.
9  *  Copyright 2010 Schloss Lab. All rights reserved.
10  *
11  */
12
13 #include "command.hpp"
14 #include "treemap.h"
15 #include "sharedutilities.h"
16 #include "tree.h"
17
18 class PhyloDiversityCommand : public Command {
19         
20         public:
21                 PhyloDiversityCommand(string);
22                 PhyloDiversityCommand();
23                 ~PhyloDiversityCommand(){}
24         
25                 vector<string> setParameters();
26                 string getCommandName()                 { return "phylo.diversity";                     }
27                 string getCommandCategory()             { return "Hypothesis Testing";          }
28                 string getHelpString(); 
29                 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"; }
30                 string getDescription()         { return "phylo.diversity"; }
31
32                 int execute();
33                 void help() { m->mothurOut(getHelpString()); }
34 private:
35                 TreeMap* tmap;
36                 float freq;
37                 int iters, processors, numUniquesInName;  
38                 bool abort, rarefy, summary, collect, scale;
39                 string groups, outputDir, treefile, groupfile, namefile;
40                 vector<string> Groups, outputNames; //holds groups to be used, and outputFile names
41                 
42                 int readNamesFile();
43                 void printData(set<int>&, map< string, vector<float> >&, ofstream&, int);
44                 void printSumData(map< string, vector<float> >&, ofstream&, int);
45                 vector<float> calcBranchLength(Tree*, int, map< string, set<int> >&);
46                 int driver(Tree*, map< string, vector<float> >&, map<string, vector<float> >&, int, int, vector<int>&, set<int>&, ofstream&, ofstream&, bool);
47                 int createProcesses(vector<int>&, Tree*, map< string, vector<float> >&, map<string, vector<float> >&, int, int, vector<int>&, set<int>&, ofstream&, ofstream&);
48
49 };
50
51 #endif
52