]> git.donarmstrong.com Git - mothur.git/blobdiff - sharedsobscollectsummary.h
changes while testing
[mothur.git] / sharedsobscollectsummary.h
index 3ff35b15dacda761a51d52a64efcd1d760b5498e..0429f90b8cbe67fd9feb3192017b1271c59fe187 100644 (file)
@@ -10,6 +10,7 @@
  *
  */
 
+/* This calculator returns the number of shared species between 2 groups. */
 
 #include "calculator.h"
 
 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<SharedRAbundVector*>);
+    EstOutput getValues(vector<SharedRAbundVector*>, vector<string>&);
+       string getCitation() { return "http://www.mothur.org/wiki/Sharedsobs"; }
 };
 
 /***********************************************************************/