X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=bergerparker.h;fp=bergerparker.h;h=f164ec8b56128c03a90d1298de40461d9ba91611;hb=eb1c88346fb246e95a6b38935b103f95e38b82ca;hp=0000000000000000000000000000000000000000;hpb=d53f63d7e0d9c3feeb8ded5a74e6c150fae50fe9;p=mothur.git diff --git a/bergerparker.h b/bergerparker.h new file mode 100644 index 0000000..f164ec8 --- /dev/null +++ b/bergerparker.h @@ -0,0 +1,32 @@ +#ifndef BERGERPARKER_H +#define BERGERPARKER_H +/* + * bergerparker.h + * Mothur + * + * Created by Thomas Ryabin on 3/6/09. + * Copyright 2009 __MyCompanyName__. All rights reserved. + * + */ + +#include "calculator.h" + +/*This class implements the SSBP estimator on single group. +It is a child of the calculator class.*/ + +/***********************************************************************/ + +class BergerParker : public Calculator { + +public: + BergerParker() : Calculator("bergerparker", 1) {}; + EstOutput getValues(SAbundVector*); + EstOutput getValues(SharedRAbundVector*, SharedRAbundVector*) {return data;}; + +private: +}; + +/***********************************************************************/ + +#endif +