]> git.donarmstrong.com Git - mothur.git/blob - phylodiversity.h
removed read.dist, read.otu, read.tree and globaldata. added current to defaults...
[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 "mothurout.h"
16
17
18 /***********************************************************************/
19
20 class PhyloDiversity  {
21         
22         public:
23                 PhyloDiversity(TreeMap* t) : tmap(t) {  m = MothurOut::getInstance(); }
24                 ~PhyloDiversity() {};
25                 
26                 //int getValues(Tree*, vector<int>, vector< vector< float> >&);
27                 
28                 
29         private:
30                 MothurOut* m;
31                 TreeMap* tmap;
32 };
33
34 /***********************************************************************/
35
36
37 #endif
38