]> git.donarmstrong.com Git - mothur.git/blobdiff - jackknife.h
fixes while testing 1.33.0
[mothur.git] / jackknife.h
index 45f9287b124498ad7bd798b948d88eac71befff0..fe9f6b618ee8ce1a6a96a9fc3ea96f94ee722848 100644 (file)
@@ -10,7 +10,6 @@
  *
  */
 
-#include <Carbon/Carbon.h>
 #include "calculator.h"
 
 /* This class implements the JackKnife estimator on single group. 
@@ -21,9 +20,10 @@ It is a child of the calculator class. */
 class Jackknife : public Calculator  {
        
 public:
-       Jackknife() : Calculator("Jackknife", 3) {      getAMatrix(); };
+       Jackknife() : Calculator("jackknife", 3, false) {       getAMatrix(); };
        EstOutput getValues(SAbundVector*);
-       EstOutput getValues(SharedRAbundVector*, SharedRAbundVector*) {return data;};
+       EstOutput getValues(vector<SharedRAbundVector*>) {return data;};
+       string getCitation() { return "http://www.mothur.org/wiki/Jackknife"; }
 
 private:
        static const int maxOrder = 30;
@@ -35,4 +35,4 @@ private:
 
 /***********************************************************************/
 
-#endif
\ No newline at end of file
+#endif