X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=efron.h;h=e485c5399a5f75fd46f8b749b6b1196f847d0884;hp=652159d97546ee24ef378995278babe79a8a9e65;hb=d1c97b8c04bb75faca1e76ffad60b37a4d789d3d;hpb=37a2c0b7dc68bfa53c8f38a713259929c4c46a9f diff --git a/efron.h b/efron.h index 652159d..e485c53 100644 --- a/efron.h +++ b/efron.h @@ -6,7 +6,7 @@ * Mothur * * Created by Thomas Ryabin on 5/13/09. - * Copyright 2009 __MyCompanyName__. All rights reserved. + * Copyright 2009Schloss Lab UMASS Amherst. All rights reserved. * */ @@ -20,11 +20,12 @@ 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) {return data;}; + string getCitation() { return "http://www.mothur.org/wiki/Efron"; } private: - int m; + int f; };