X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=sobs.h;h=05956a405fca4488aa39234c87d775c5841de33c;hp=528289eb257cabfeeff67eb632c032538377c9a3;hb=050a3ff02473a3d4c0980964e1a9ebe52e55d6b8;hpb=e2373397d9316500ee0d196e60dcab75d208511a diff --git a/sobs.h b/sobs.h index 528289e..05956a4 100644 --- a/sobs.h +++ b/sobs.h @@ -21,13 +21,14 @@ 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"; } }; /***********************************************************************/