X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=sobs.h;h=05956a405fca4488aa39234c87d775c5841de33c;hb=3914b0d6480f67df53b1e838f51c4e6155710434;hp=c2136b5e493dc7b81d5b1d2dd4564e0bad9c6b7a;hpb=58cf1d08fee8c64334979075fa57bcafb035a2ed;p=mothur.git diff --git a/sobs.h b/sobs.h index c2136b5..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"; } }; /***********************************************************************/