]> 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 748723e85dd068722d09179dab76ee1dd2968390..db26b272045458540cfb4ab7ca2f44bd563ba4bc 100644 (file)
--- a/venn.h
+++ b/venn.h
@@ -9,39 +9,31 @@
  *
  */
 
-using namespace std;
-
-#include "ordervector.hpp"
 #include "sabundvector.hpp"
 #include "sharedrabundvector.h"
-#include "sharedordervector.h"
 #include "datavector.hpp"
-#include "globaldata.hpp"
 #include "calculator.h"
-#include "sharedutilities.h"
+
 
 /***********************************************************************/
 
 class Venn {
-       
-       public:
-               Venn();
-               ~Venn(){};
-       
-               void getPic(OrderVector*, vector<Calculator*>);
-               void getPic(SharedOrderVector*, vector<Calculator*>);
-
-       private:
-               SharedUtil* util;
-               SAbundVector* sabund;
-               GlobalData* globaldata;
-               Calculator* singleCalc;
-               vector<SharedRAbundVector*> lookup;
-               string format, groupComb;
-               ofstream outsvg;
-
-                       
+public:
+       Venn(string, bool, string, int, bool);
+       ~Venn(){};
+
+       vector<string> getPic(SAbundVector*, vector<Calculator*>);
+       vector<string> getPic(vector<SharedRAbundVector*>, vector<Calculator*>);
+
+private:
+       Calculator* singleCalc;
+       string groupComb, outputDir, inputfile;
+       ofstream outsvg;
+       MothurOut* m;
+       bool nseqs, sharedOtus;
+       int fontSize;
 };
+
 /***********************************************************************/
 
 #endif