]> git.donarmstrong.com Git - mothur.git/blobdiff - efron.h
sffinfo bug with flow grams right index when clipQualRight=0
[mothur.git] / efron.h
diff --git a/efron.h b/efron.h
index 782e72e8e11f3145032052abab60629107e857a6..e485c5399a5f75fd46f8b749b6b1196f847d0884 100644 (file)
--- a/efron.h
+++ b/efron.h
 class Efron : public Calculator  {
        
 public: 
-       Efron(int size) : m(size), Calculator("efron", 1, false) {};
+       Efron(int size) : f(size), Calculator("efron", 1, false) {};
        EstOutput getValues(SAbundVector*);     
        EstOutput getValues(vector<SharedRAbundVector*>) {return data;};
+       string getCitation() { return "http://www.mothur.org/wiki/Efron"; }
 private:
-       int m;
+       int f;
 };