]> git.donarmstrong.com Git - mothur.git/blob - venn.h
fixed some bugs
[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 #include "sabundvector.hpp"
13 #include "sharedrabundvector.h"
14 #include "datavector.hpp"
15 #include "globaldata.hpp"
16 #include "calculator.h"
17
18
19 /***********************************************************************/
20
21 class Venn {
22         
23         public:
24                 Venn();
25                 ~Venn(){};
26         
27                 void getPic(SAbundVector*, vector<Calculator*>);
28                 void getPic(vector<SharedRAbundVector*>, vector<Calculator*>);
29
30         private:
31                 GlobalData* globaldata;
32                 Calculator* singleCalc;
33                 string format, groupComb;
34                 ofstream outsvg;
35
36                         
37 };
38 /***********************************************************************/
39
40 #endif
41