X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=shen.h;h=ad0eda47c54b7d8c0f081e908471ab16eb85d717;hp=59d6c3abe6893685a000562183c8d8052a8fa467;hb=cf9987b67aa49777a4c91c2d21f96e58bf17aa82;hpb=0470f6d037aacb3563c3f7010708120a4a67d4e6 diff --git a/shen.h b/shen.h index 59d6c3a..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,13 +20,13 @@ class Shen : public Calculator { public: - Shen(int size, int n) : m(size), abund(n), 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; + int f; int abund; - GlobalData* globaldata; };