]> git.donarmstrong.com Git - mothur.git/blobdiff - bootstrap.h
working on pam
[mothur.git] / bootstrap.h
index 71d2c2602c0980e2b8071bc86b4c79deff9a0200..962780a767258830f895a3033676cf08adfd20d2 100644 (file)
@@ -12,7 +12,6 @@
 /* This class implements the Bootstrap estimator on single group. 
 It is a child of the calculator class. */
 
-#include <Carbon/Carbon.h>
 #include "calculator.h"
 
 /***********************************************************************/
@@ -21,12 +20,13 @@ It is a child of the calculator class. */
 class Bootstrap : public Calculator  {
        
 public:
-       Bootstrap() : Calculator("Bootstrap", 1) {};
+       Bootstrap() : Calculator("bootstrap", 1, false) {};
        EstOutput getValues(SAbundVector*);
-       EstOutput getValues(SharedRAbundVector*, SharedRAbundVector*) {return data;};
+       EstOutput getValues(vector<SharedRAbundVector*>) {return data;};
+       string getCitation() { return "http://www.mothur.org/wiki/Bootstrap"; }
        
 };
 
 /***********************************************************************/
 
-#endif
\ No newline at end of file
+#endif