X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=boneh.h;h=d16ffa72ef48f0cd012bda5b1e00068f3b52afc3;hp=919200cb519d0ccdbcc52f2af2f94b52f031432d;hb=a8e2df1b96a57f5f29576b08361b86a96a8eff4f;hpb=37a2c0b7dc68bfa53c8f38a713259929c4c46a9f diff --git a/boneh.h b/boneh.h index 919200c..d16ffa7 100644 --- a/boneh.h +++ b/boneh.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,12 +20,13 @@ class Boneh : public Calculator { public: - Boneh(int size) : m(size), Calculator("boneh", 1, false) {}; + Boneh(int size) : f(size), Calculator("boneh", 1, false) {}; EstOutput getValues(SAbundVector*); EstOutput getValues(vector) {return data;}; + string getCitation() { return "http://www.mothur.org/wiki/Boneh"; } private: double getV(double, double, double); - int m; + int f; };