X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=sharedthetayc.h;h=b132a56e5650cd7e82b2c5dd7eed5eb2c4c8e0d3;hp=9c69fb1fc15539736a9d56df381cc4eb05b236c7;hb=615301e57c25e241356a9c2380648d117709458d;hpb=20a2d0350a737a434c89f303662d64a8eeea7b05 diff --git a/sharedthetayc.h b/sharedthetayc.h index 9c69fb1..b132a56 100644 --- a/sharedthetayc.h +++ b/sharedthetayc.h @@ -1,5 +1,5 @@ -#ifndef SHAREDTHETAYC_H -#define SHAREDTHETAYC_H +#ifndef THETAYC_H +#define THETAYC_H /* * sharedthetayc.h * Dotur @@ -13,21 +13,22 @@ It is a child of the calculator class. */ -#include #include "calculator.h" /***********************************************************************/ -class SharedThetaYC : public Calculator { +class ThetaYC : public Calculator { public: - SharedThetaYC() : Calculator("SharedThetaYC", 3) {}; + ThetaYC() : Calculator("thetayc", 3, false) {}; EstOutput getValues(SAbundVector*) {return data;}; - EstOutput getValues(SharedRAbundVector*, SharedRAbundVector*); + EstOutput getValues(vector); + string getCitation() { return "http://www.mothur.org/wiki/Thetayc"; } private: }; /***********************************************************************/ - #endif + +#endif