X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=sobs.h;h=05956a405fca4488aa39234c87d775c5841de33c;hp=3162f708a3acb0877c0c2638f4a61b8d2107e040;hb=050a3ff02473a3d4c0980964e1a9ebe52e55d6b8;hpb=20a2d0350a737a434c89f303662d64a8eeea7b05 diff --git a/sobs.h b/sobs.h index 3162f70..05956a4 100644 --- a/sobs.h +++ b/sobs.h @@ -1,5 +1,6 @@ #ifndef SOBS_H #define SOBS_H + /* * sobs.h * Dotur @@ -13,7 +14,6 @@ It is a child of the calculator class. */ -#include #include "calculator.h" /***********************************************************************/ @@ -21,15 +21,16 @@ It is a child of the calculator class. */ class Sobs : public Calculator { public: - Sobs() : Calculator("Sobs", 1) {}; + Sobs() : Calculator("sobs", 1, false) {}; EstOutput getValues(SAbundVector* rank){ data.resize(1,0); data[0] = (double)rank->getNumBins(); return data; } - EstOutput getValues(SharedRAbundVector* shared1, SharedRAbundVector* shared2) {return data;}; + EstOutput getValues(vector) {return data;}; + string getCitation() { return "http://www.mothur.org/wiki/Sobs"; } }; /***********************************************************************/ -#endif \ No newline at end of file +#endif