X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=rarefact.h;fp=rarefact.h;h=6eed91214905f3e8f50b89043c45ea8203b2b808;hb=37519fc35c0eb1523e84227517694c4015847c6d;hp=fc1e8d13e4b289851c65e72a1ebd1804edfbd44d;hpb=fb01d5df390a98313ca095a812fc240dc079d084;p=mothur.git diff --git a/rarefact.h b/rarefact.h index fc1e8d1..6eed912 100644 --- a/rarefact.h +++ b/rarefact.h @@ -14,16 +14,14 @@ class Rarefact { public: Rarefact(OrderVector* o, vector disp) : numSeqs(o->getNumSeqs()), order(o), displays(disp), label(o->getLabel()) {}; - Rarefact(SharedOrderVector* sharedorder, vector disp) : - numSeqs(sharedorder->getNumSeqs()), sharedorder(sharedorder), displays(disp), label(sharedorder->getLabel()) {}; + Rarefact(vector shared, vector disp) : + lookup(shared), displays(disp) {}; ~Rarefact(){}; void getCurve(int, int); void getSharedCurve(int, int); private: - SharedOrderVector* sharedorder; - GlobalData* globaldata; OrderVector* order; vector displays; int numSeqs, numGroupComb;