X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=ace.h;h=ce56b76af639b6170a3967269ffe0e561a7b3b22;hp=19188fa3d2269b0bfc6e03ecc44e25d8887910a6;hb=050a3ff02473a3d4c0980964e1a9ebe52e55d6b8;hpb=20a2d0350a737a434c89f303662d64a8eeea7b05 diff --git a/ace.h b/ace.h index 19188fa..ce56b76 100644 --- a/ace.h +++ b/ace.h @@ -13,7 +13,6 @@ /* This class implements the Ace estimator on a single group. It is a child of the calculator class. */ -#include #include "calculator.h" /***********************************************************************/ @@ -21,9 +20,10 @@ It is a child of the calculator class. */ class Ace : public Calculator { public: - Ace(int n=10) : abund(n), Calculator("ACE", 3) {}; + Ace(int n) : abund(n), Calculator("ace", 3, false) {}; EstOutput getValues(SAbundVector*); - EstOutput getValues(SharedRAbundVector*, SharedRAbundVector*) {return data;}; + EstOutput getValues(vector) {return data;}; + string getCitation() { return "http://www.mothur.org/wiki/Ace"; } private: int abund; };