X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=sharedace.h;h=9ea0d6a1c901e3fb73d296d1a31c35ff11a76539;hb=250e3b11b1c9c1e1ad458ab6c7e71ac2e67e11d9;hp=fead251ba0ced3ab338bf735b53e46bc0715d2b2;hpb=20a2d0350a737a434c89f303662d64a8eeea7b05;p=mothur.git 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