]> git.donarmstrong.com Git - mothur.git/blobdiff - sharedjackknife.h
changing command name classify.shared to classifyrf.shared
[mothur.git] / sharedjackknife.h
index bdec8f713f777f6df061038fae677676a609eb1a..1e9cbf539077e570dc6c5abaa9a4500266a19e11 100644 (file)
@@ -11,7 +11,6 @@
  */
 
 #include "calculator.h"
-#include "globaldata.hpp"
 
 /*This class implements the SharedJackknife estimator. 
 It is a child of the calculator class.*/ 
@@ -24,13 +23,13 @@ public:
        SharedJackknife() : numGroups(-1), callCount(0), count(0), currentCallDone(true), Calculator("sharedjackknife", 3, false) {};
        EstOutput getValues(SAbundVector*) {return data;};
        EstOutput getValues(vector<SharedRAbundVector*>);
+       string getCitation() { return "http://www.mothur.org/wiki/Sharedjackknife"; }
        
 private:
-       GlobalData* globaldata;
        int numGroups, callCount, count;
        bool currentCallDone;
        vector<SharedRAbundVector*> groups;
-       double simpson(int[], double, int);
+       double simpson(vector<int>, double, int);
        double* jackknife();
 };