X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=venn.h;h=50d49d1b98c4c364faed44366534daf91d017b55;hb=dc383fb61b6d165a8d36e6108df8bc7129243ae6;hp=8a789c364ac9e6e25bb0bc0312994e4c0e319d34;hpb=74c78f9abd9e733f0c2f812efec97a76632fcbf8;p=mothur.git diff --git a/venn.h b/venn.h index 8a789c3..50d49d1 100644 --- a/venn.h +++ b/venn.h @@ -12,29 +12,28 @@ #include "sabundvector.hpp" #include "sharedrabundvector.h" #include "datavector.hpp" -#include "globaldata.hpp" #include "calculator.h" /***********************************************************************/ class Venn { - - public: - Venn(); - ~Venn(){}; - - void getPic(SAbundVector*, vector); - void getPic(vector, vector); - - private: - GlobalData* globaldata; - Calculator* singleCalc; - string format, groupComb; - ofstream outsvg; - - +public: + Venn(string, bool, string, int); + ~Venn(){}; + + vector getPic(SAbundVector*, vector); + vector getPic(vector, vector); + +private: + Calculator* singleCalc; + string groupComb, outputDir, inputfile; + ofstream outsvg; + MothurOut* m; + bool nseqs; + int fontSize; }; + /***********************************************************************/ #endif