]> git.donarmstrong.com Git - mothur.git/blob - venn.h
added modify names parameter to set.dir
[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, int, bool);
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, sharedOtus;
34         int fontSize;
35 };
36
37 /***********************************************************************/
38
39 #endif
40