]> git.donarmstrong.com Git - mothur.git/blob - venn.h
merged pat's trim seqs edits with sarah's major overhaul of global data; also added...
[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 public:
23         Venn();
24         ~Venn(){};
25
26         void getPic(SAbundVector*, vector<Calculator*>);
27         void getPic(vector<SharedRAbundVector*>, vector<Calculator*>);
28
29 private:
30         GlobalData* globaldata;
31         Calculator* singleCalc;
32         string groupComb;
33         ofstream outsvg;
34 };
35
36 /***********************************************************************/
37
38 #endif
39