]> git.donarmstrong.com Git - mothur.git/blob - venn.h
c5c5f6f80991a6751f2671a03d6e9c1459cd8c38
[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 "calculator.h"
16
17
18 /***********************************************************************/
19
20 class Venn {
21 public:
22         Venn(string, bool, string);
23         ~Venn(){};
24
25         vector<string> getPic(SAbundVector*, vector<Calculator*>);
26         vector<string> getPic(vector<SharedRAbundVector*>, vector<Calculator*>);
27
28 private:
29         Calculator* singleCalc;
30         string groupComb, outputDir, inputfile;
31         ofstream outsvg;
32         MothurOut* m;
33         bool nseqs;
34 };
35
36 /***********************************************************************/
37
38 #endif
39