X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=venn.h;h=db26b272045458540cfb4ab7ca2f44bd563ba4bc;hb=a0f1fca79d2ddfa7ad36b4485039c68b5704fe8d;hp=ceb52fda7a5447f812133aea9c343d7ccf8e71b5;hpb=f20505bcd9f07e0b5f967be0e8d414076d9a5678;p=mothur.git diff --git a/venn.h b/venn.h index ceb52fd..db26b27 100644 --- a/venn.h +++ b/venn.h @@ -9,38 +9,31 @@ * */ -using namespace std; - -#include "ordervector.hpp" -#include "Sabundvector.hpp" +#include "sabundvector.hpp" #include "sharedrabundvector.h" -#include "sharedordervector.h" #include "datavector.hpp" -#include "globaldata.hpp" #include "calculator.h" + /***********************************************************************/ class Venn { - - public: - Venn(); - ~Venn(){}; - - void getPic(OrderVector*, vector); - void getPic(SharedOrderVector*, vector); - - private: - void getSharedVectors(SharedOrderVector*); - - SAbundVector* sabund; - GlobalData* globaldata; - 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