X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=venn.h;h=db26b272045458540cfb4ab7ca2f44bd563ba4bc;hb=250e3b11b1c9c1e1ad458ab6c7e71ac2e67e11d9;hp=33935e6a2c9496fd984b8328cf33326dbeb23fa1;hpb=61798fe609675abfedf511e542cc48c56a531199;p=mothur.git diff --git a/venn.h b/venn.h index 33935e6..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,19 +19,19 @@ class Venn { public: - Venn(string, bool); + 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; + bool nseqs, sharedOtus; + int fontSize; }; /***********************************************************************/