X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=venn.h;h=db26b272045458540cfb4ab7ca2f44bd563ba4bc;hb=3914b0d6480f67df53b1e838f51c4e6155710434;hp=748723e85dd068722d09179dab76ee1dd2968390;hpb=2c5f6dfaab750da109bb7bc7e51b005d135c2d77;p=mothur.git diff --git a/venn.h b/venn.h index 748723e..db26b27 100644 --- a/venn.h +++ b/venn.h @@ -9,39 +9,31 @@ * */ -using namespace std; - -#include "ordervector.hpp" #include "sabundvector.hpp" #include "sharedrabundvector.h" -#include "sharedordervector.h" #include "datavector.hpp" -#include "globaldata.hpp" #include "calculator.h" -#include "sharedutilities.h" + /***********************************************************************/ class Venn { - - public: - Venn(); - ~Venn(){}; - - void getPic(OrderVector*, vector); - void getPic(SharedOrderVector*, vector); - - private: - SharedUtil* util; - SAbundVector* sabund; - GlobalData* globaldata; - Calculator* singleCalc; - vector lookup; - string format, groupComb; - ofstream outsvg; - - +public: + Venn(string, bool, string, int, bool); + ~Venn(){}; + + vector getPic(SAbundVector*, vector); + vector getPic(vector, vector); + +private: + Calculator* singleCalc; + string groupComb, outputDir, inputfile; + ofstream outsvg; + MothurOut* m; + bool nseqs, sharedOtus; + int fontSize; }; + /***********************************************************************/ #endif