X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=venn.h;h=db26b272045458540cfb4ab7ca2f44bd563ba4bc;hp=d3a3f05b841e768554746b14fa087d0baef28bfe;hb=d1c97b8c04bb75faca1e76ffad60b37a4d789d3d;hpb=74844a60d80c6dd06e3fb02ee9b928424f9019b0 diff --git a/venn.h b/venn.h index d3a3f05..db26b27 100644 --- 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" @@ -20,18 +19,19 @@ class Venn { public: - Venn(string); + Venn(string, bool, string, int, bool); ~Venn(){}; vector getPic(SAbundVector*, vector); vector getPic(vector, vector); private: - GlobalData* globaldata; Calculator* singleCalc; - string groupComb, outputDir; + string groupComb, outputDir, inputfile; ofstream outsvg; MothurOut* m; + bool nseqs, sharedOtus; + int fontSize; }; /***********************************************************************/