X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=raredisplay.h;fp=raredisplay.h;h=6d07efc55ab9ab677bb9f3604f46862d02984e16;hb=de3d202264ab8a55fc91e0c2776aa5bed92bbf55;hp=a87596225b818c525fdd97156f5baf64b1dceb71;hpb=a8e2df1b96a57f5f29576b08361b86a96a8eff4f;p=mothur.git diff --git a/raredisplay.h b/raredisplay.h index a875962..6d07efc 100644 --- a/raredisplay.h +++ b/raredisplay.h @@ -11,7 +11,7 @@ class RareDisplay : public Display { public: - RareDisplay(Calculator* calc, FileOutput* file) : estimate(calc), output(file), nIters(1), index(0) {}; + RareDisplay(Calculator* calc, FileOutput* file) : estimate(calc), output(file), nIters(1) {}; ~RareDisplay() { delete estimate; delete output; }; void init(string); void reset(); @@ -27,10 +27,8 @@ private: Calculator* estimate; FileOutput* output; string label; - vector seqs; - vector results; - vector var; - int index, nIters; + map > results; //maps seqCount to results for that number of sequences + int nIters; }; #endif