X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=boneh.h;fp=boneh.h;h=d16ffa72ef48f0cd012bda5b1e00068f3b52afc3;hb=0caf3fbabaa3ece404f8ce77f4c883dc5b1bf1dc;hp=0000000000000000000000000000000000000000;hpb=1b73ff67c83892a025e597dabd9df6fe7b58206a;p=mothur.git diff --git a/boneh.h b/boneh.h new file mode 100644 index 0000000..d16ffa7 --- /dev/null +++ b/boneh.h @@ -0,0 +1,35 @@ +#ifndef BONEH_H +#define BONEH_H + +/* + * boneh.h + * Mothur + * + * Created by Thomas Ryabin on 5/13/09. + * Copyright 2009Schloss Lab UMASS Amherst. All rights reserved. + * + */ + +#include "calculator.h" + +/* This class implements the boneh calculator on single group. + It is a child of the calculator class. */ + +/***********************************************************************/ + +class Boneh : public Calculator { + +public: + 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 f; +}; + + +/***********************************************************************/ + +#endif