]> git.donarmstrong.com Git - mothur.git/blobdiff - sobs.h
changed random forest output filename
[mothur.git] / sobs.h
diff --git a/sobs.h b/sobs.h
index 3162f708a3acb0877c0c2638f4a61b8d2107e040..05956a405fca4488aa39234c87d775c5841de33c 100644 (file)
--- a/sobs.h
+++ b/sobs.h
@@ -1,5 +1,6 @@
 #ifndef SOBS_H
 #define SOBS_H
+
 /*
  *  sobs.h
  *  Dotur
@@ -13,7 +14,6 @@
 It is a child of the calculator class. */
 
 
-#include <Carbon/Carbon.h>
 #include "calculator.h"
 
 /***********************************************************************/
@@ -21,15 +21,16 @@ It is a child of the calculator class. */
 class Sobs : public Calculator {
 
 public:
-       Sobs() : Calculator("Sobs", 1) {};
+       Sobs() : Calculator("sobs", 1, false) {};
        EstOutput getValues(SAbundVector* rank){
                data.resize(1,0);
                data[0] = (double)rank->getNumBins();
                return data;
        }
-       EstOutput getValues(SharedRAbundVector* shared1, SharedRAbundVector* shared2) {return data;};
+       EstOutput getValues(vector<SharedRAbundVector*>) {return data;};
+       string getCitation() { return "http://www.mothur.org/wiki/Sobs"; }
 };
 
 /***********************************************************************/
 
-#endif
\ No newline at end of file
+#endif