]> 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 528289eb257cabfeeff67eb632c032538377c9a3..05956a405fca4488aa39234c87d775c5841de33c 100644 (file)
--- a/sobs.h
+++ b/sobs.h
@@ -21,13 +21,14 @@ 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"; }
 };
 
 /***********************************************************************/