]> git.donarmstrong.com Git - mothur.git/blobdiff - sharedjackknife.h
added modify names parameter to set.dir
[mothur.git] / sharedjackknife.h
index 00c0de08af07a132a3d38ce8cb6a67a614dfd5aa..1e9cbf539077e570dc6c5abaa9a4500266a19e11 100644 (file)
@@ -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<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();
 };