]> git.donarmstrong.com Git - mothur.git/blob - venn.h
venn command with up to 4 groups using sharedsobs, sharedchao and sharedace estimator...
[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 "Sabundvector.hpp"
16 #include "sharedrabundvector.h"
17 #include "sharedordervector.h"
18 #include "datavector.hpp"
19 #include "globaldata.hpp"
20 #include "calculator.h"
21
22 /***********************************************************************/
23
24 class Venn {
25         
26         public:
27                 Venn();
28                 ~Venn(){};
29         
30                 void getPic(OrderVector*, vector<Calculator*>);
31                 void getPic(SharedOrderVector*, vector<Calculator*>);
32
33         private:
34                 void getSharedVectors(SharedOrderVector*);
35                 
36                 SAbundVector* sabund;
37                 GlobalData* globaldata;
38                 vector<SharedRAbundVector*> lookup;
39                 string format, groupComb;
40                 ofstream outsvg;
41
42                         
43 };
44 /***********************************************************************/
45
46 #endif
47