X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=shen.h;h=ad0eda47c54b7d8c0f081e908471ab16eb85d717;hp=a96abe9ba3d3222680fd5e99470a95ca6d4d472c;hb=a8e2df1b96a57f5f29576b08361b86a96a8eff4f;hpb=d873f7bf94309317a08c8757e0d0d60b06fbd473 diff --git a/shen.h b/shen.h index a96abe9..ad0eda4 100644 --- a/shen.h +++ b/shen.h @@ -11,7 +11,6 @@ */ #include "calculator.h" -#include "globaldata.hpp" /* This class implements the shen calculator on single group. It is a child of the calculator class. */ @@ -21,12 +20,13 @@ class Shen : public Calculator { public: - Shen(int size) : m(size), Calculator("shen", 1, false) {}; + Shen(int size, int n) : f(size), abund(n), Calculator("shen", 1, false) {}; EstOutput getValues(SAbundVector*); EstOutput getValues(vector) {return data;}; + string getCitation() { return "http://www.mothur.org/wiki/Shen"; } private: - int m; - GlobalData* globaldata; + int f; + int abund; };