X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=sharedjackknife.h;h=1e9cbf539077e570dc6c5abaa9a4500266a19e11;hp=00c0de08af07a132a3d38ce8cb6a67a614dfd5aa;hb=a8e2df1b96a57f5f29576b08361b86a96a8eff4f;hpb=c196b6b4768ccb84955d773ff0f22e4994d1ba7b diff --git a/sharedjackknife.h b/sharedjackknife.h index 00c0de0..1e9cbf5 100644 --- a/sharedjackknife.h +++ b/sharedjackknife.h @@ -6,12 +6,11 @@ * Mothur * * Created by Thomas Ryabin on 3/30/09. - * Copyright 2009 __MyCompanyName__. All rights reserved. + * Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved. * */ #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); + string getCitation() { return "http://www.mothur.org/wiki/Sharedjackknife"; } private: - GlobalData* globaldata; int numGroups, callCount, count; bool currentCallDone; vector groups; - double simpson(int[], double, int); + double simpson(vector, double, int); double* jackknife(); };