X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=venn.h;h=db26b272045458540cfb4ab7ca2f44bd563ba4bc;hb=250e3b11b1c9c1e1ad458ab6c7e71ac2e67e11d9;hp=8902cf4c9298dfe7df40b6739445cc494ebce3eb;hpb=cd37904452dc95b183ff313ff05720c562902487;p=mothur.git diff --git a/venn.h b/venn.h index 8902cf4..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(); + 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; + string groupComb, outputDir, inputfile; ofstream outsvg; + MothurOut* m; + bool nseqs, sharedOtus; + int fontSize; }; /***********************************************************************/