X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=venn.h;h=db26b272045458540cfb4ab7ca2f44bd563ba4bc;hb=372fb21ea66ced432b109225851a1b80ef0491a3;hp=cf6a5ee332fbe2d70e3b5d1c2066c59db5ebb107;hpb=315e38cf393c82be238da5b32574f225a020d25c;p=mothur.git diff --git a/venn.h b/venn.h index cf6a5ee..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,17 +19,19 @@ class Venn { public: - Venn(string); + Venn(string, bool, string, int, bool); ~Venn(){}; - void getPic(SAbundVector*, vector); - void getPic(vector, vector); + 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; }; /***********************************************************************/