]> git.donarmstrong.com Git - mothur.git/blobdiff - venn.h
changed random forest output filename
[mothur.git] / venn.h
diff --git a/venn.h b/venn.h
index cf6a5ee332fbe2d70e3b5d1c2066c59db5ebb107..db26b272045458540cfb4ab7ca2f44bd563ba4bc 100644 (file)
--- a/venn.h
+++ b/venn.h
@@ -12,7 +12,6 @@
 #include "sabundvector.hpp"
 #include "sharedrabundvector.h"
 #include "datavector.hpp"
-#include "globaldata.hpp"
 #include "calculator.h"
 
 
 
 class Venn {
 public:
-       Venn(string);
+       Venn(string, bool, string, int, bool);
        ~Venn(){};
 
-       void getPic(SAbundVector*, vector<Calculator*>);
-       void getPic(vector<SharedRAbundVector*>, vector<Calculator*>);
+       vector<string> getPic(SAbundVector*, vector<Calculator*>);
+       vector<string> getPic(vector<SharedRAbundVector*>, vector<Calculator*>);
 
 private:
-       GlobalData* globaldata;
        Calculator* singleCalc;
-       string groupComb, outputDir;
+       string groupComb, outputDir, inputfile;
        ofstream outsvg;
+       MothurOut* m;
+       bool nseqs, sharedOtus;
+       int fontSize;
 };
 
 /***********************************************************************/