X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=sharedsobs.h;h=3fa32cee636d2b4e7aa328356353b77cbf377df7;hp=3a7037e17a5eff4d8ec7240a51005940138e075a;hb=615301e57c25e241356a9c2380648d117709458d;hpb=20a2d0350a737a434c89f303662d64a8eeea7b05 diff --git a/sharedsobs.h b/sharedsobs.h index 3a7037e..3fa32ce 100644 --- a/sharedsobs.h +++ b/sharedsobs.h @@ -9,20 +9,20 @@ * */ -/* This class implements the SharedSobs estimator on two groups. +/* This class implements the SharedSobs estimator on two groups for the shared rarefaction command. It is a child of the calculator class. */ -#include #include "calculator.h" /***********************************************************************/ class SharedSobs : public Calculator { public: - SharedSobs() : Calculator("SharedSobs", 1) {}; + SharedSobs() : Calculator("sharedsobs", 1, false) {}; EstOutput getValues(SAbundVector* rank){ return data; }; - EstOutput getValues(SharedRAbundVector* shared1, SharedRAbundVector* shared2); + EstOutput getValues(vector); + string getCitation() { return "http://www.mothur.org/wiki/sharedsobs"; } }; /***********************************************************************/