X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=sharedace.h;h=9ea0d6a1c901e3fb73d296d1a31c35ff11a76539;hp=fead251ba0ced3ab338bf735b53e46bc0715d2b2;hb=df7e3ff9f68ef157b0328a2d353c3258c5d45d89;hpb=20a2d0350a737a434c89f303662d64a8eeea7b05 diff --git a/sharedace.h b/sharedace.h index fead251..9ea0d6a 100644 --- a/sharedace.h +++ b/sharedace.h @@ -12,8 +12,6 @@ /* This class implements the SharedAce estimator on two groups. It is a child of the calculator class. */ - -#include #include "calculator.h" /***********************************************************************/ @@ -21,13 +19,14 @@ It is a child of the calculator class. */ class SharedAce : public Calculator { public: - SharedAce(int n=10) : abund(n), Calculator("SharedAce", 3) {}; + SharedAce(int n=10) : abund(n), Calculator("sharedace", 1, false) {}; EstOutput getValues(SAbundVector*) {return data;}; - EstOutput getValues(SharedRAbundVector*, SharedRAbundVector*); + EstOutput getValues(vector); + string getCitation() { return "http://www.mothur.org/wiki/SharedAce"; } private: int abund; }; /***********************************************************************/ -#endif +#endif