X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=sharedsobs.h;h=3fa32cee636d2b4e7aa328356353b77cbf377df7;hb=250e3b11b1c9c1e1ad458ab6c7e71ac2e67e11d9;hp=3a7037e17a5eff4d8ec7240a51005940138e075a;hpb=20a2d0350a737a434c89f303662d64a8eeea7b05;p=mothur.git 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"; } }; /***********************************************************************/