]> git.donarmstrong.com Git - mothur.git/blobdiff - sharedsobscollectsummary.h
added kruskwalliscommand to Xcode project and fixed parameter issues.
[mothur.git] / sharedsobscollectsummary.h
index 3ff35b15dacda761a51d52a64efcd1d760b5498e..d35a2ac56e852eba082235b871365c663496fa11 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*>);
+       string getCitation() { return "http://www.mothur.org/wiki/Sharedsobs"; }
 };
 
 /***********************************************************************/