]> git.donarmstrong.com Git - mothur.git/blobdiff - venn.h
fixed bug with trim.seqs allfiles=t
[mothur.git] / venn.h
diff --git a/venn.h b/venn.h
index cf6a5ee332fbe2d70e3b5d1c2066c59db5ebb107..c5c5f6f80991a6751f2671a03d6e9c1459cd8c38 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);
        ~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;
 };
 
 /***********************************************************************/