]> git.donarmstrong.com Git - mothur.git/blob - venn.h
fbb6cf183ba7ac1409ad83c4cee42ef3d59e5cb9
[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 "ordervector.hpp"
15 #include "rabundvector.hpp"
16 #include "sharedrabundvector.h"
17 #include "sharedordervector.h"
18 #include "datavector.hpp"
19 #include "globaldata.hpp"
20
21 /***********************************************************************/
22
23 class Venn {
24         
25         public:
26                 Venn();
27                 ~Venn(){};
28         
29                 void getPic(OrderVector*);
30                 void getPic(SharedOrderVector*);
31
32         private:
33                 void getSharedVectors(SharedOrderVector*);
34                 
35                 RAbundVector rabund;
36                 GlobalData* globaldata;
37                 vector<SharedRAbundVector*> lookup;
38                 string format, groupComb;
39                 ofstream outsvg;
40
41                         
42 };
43 /***********************************************************************/
44
45 #endif
46