X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=sharedsobscollectsummary.h;h=0429f90b8cbe67fd9feb3192017b1271c59fe187;hb=541bab1dac00688b4c3a8c4a95ab464412663c50;hp=3ff35b15dacda761a51d52a64efcd1d760b5498e;hpb=44c1323a88b2a697c7047df1b3bb8c59eadd15b1;p=mothur.git diff --git a/sharedsobscollectsummary.h b/sharedsobscollectsummary.h index 3ff35b1..0429f90 100644 --- a/sharedsobscollectsummary.h +++ b/sharedsobscollectsummary.h @@ -10,6 +10,7 @@ * */ +/* This calculator returns the number of shared species between 2 groups. */ #include "calculator.h" @@ -17,9 +18,11 @@ class SharedSobsCS : public Calculator { public: - SharedSobsCS() : Calculator("SharedSobs", 1) {}; + SharedSobsCS() : Calculator("sharedsobs", 1, true) {}; EstOutput getValues(SAbundVector* rank){ return data; }; - EstOutput getValues(SharedRAbundVector* shared1, SharedRAbundVector* shared2); + EstOutput getValues(vector); + EstOutput getValues(vector, vector&); + string getCitation() { return "http://www.mothur.org/wiki/Sharedsobs"; } }; /***********************************************************************/