]> git.donarmstrong.com Git - mothur.git/blob - phylodiversity.h
5e0259541d691fc0b5b51cbf7f46feb6034f8cf8
[mothur.git] / phylodiversity.h
1 #ifndef PHYLODIVERSITY_H
2 #define PHYLODIVERSITY_H
3
4
5 /*
6  *  phylodiversity.h
7  *  Mothur
8  *
9  *  Created by westcott on 4/30/10.
10  *  Copyright 2010 Schloss Lab. All rights reserved.
11  *
12  */
13
14 #include "treemap.h"
15 #include "globaldata.hpp"
16 #include "mothurout.h"
17
18
19 /***********************************************************************/
20
21 class PhyloDiversity  {
22         
23         public:
24                 PhyloDiversity(TreeMap* t) : tmap(t) { globaldata = GlobalData::getInstance();  m = MothurOut::getInstance(); }
25                 ~PhyloDiversity() {};
26                 
27                 //int getValues(Tree*, vector<int>, vector< vector< float> >&);
28                 
29                 
30         private:
31                 GlobalData* globaldata;
32                 MothurOut* m;
33                 TreeMap* tmap;
34 };
35
36 /***********************************************************************/
37
38
39 #endif
40