]> git.donarmstrong.com Git - mothur.git/blob - venn.h
changed heatmap and venn command to use vector of sharedrabunds instead of order...
[mothur.git] / venn.h
1 #ifndef VENN_H
2 #define VENN_H
3 /*
4  *  venn.h
5  *  Mothur
6  *
7  *  Created by Sarah Westcott on 3/30/09.
8  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
9  *
10  */
11
12 using namespace std;
13
14 #include "sabundvector.hpp"
15 #include "sharedrabundvector.h"
16 #include "datavector.hpp"
17 #include "globaldata.hpp"
18 #include "calculator.h"
19
20
21 /***********************************************************************/
22
23 class Venn {
24         
25         public:
26                 Venn();
27                 ~Venn(){};
28         
29                 void getPic(SAbundVector*, vector<Calculator*>);
30                 void getPic(vector<SharedRAbundVector*>, vector<Calculator*>);
31
32         private:
33                 GlobalData* globaldata;
34                 Calculator* singleCalc;
35                 string format, groupComb;
36                 ofstream outsvg;
37
38                         
39 };
40 /***********************************************************************/
41
42 #endif
43