]> git.donarmstrong.com Git - mothur.git/blobdiff - sharedsobs.h
changed random forest output filename
[mothur.git] / sharedsobs.h
index 3a7037e17a5eff4d8ec7240a51005940138e075a..3fa32cee636d2b4e7aa328356353b77cbf377df7 100644 (file)
@@ -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 <Carbon/Carbon.h>
 #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<SharedRAbundVector*>);
+       string getCitation() { return "http://www.mothur.org/wiki/sharedsobs"; }
 };
 
 /***********************************************************************/