X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=goodscoverage.h;fp=goodscoverage.h;h=b4065c0488db035cfee65d5a8c2cd4282cf5eb9a;hb=c196b6b4768ccb84955d773ff0f22e4994d1ba7b;hp=0000000000000000000000000000000000000000;hpb=dc08123b7f14e2305e5bb2b3a8fcef96fc829b07;p=mothur.git diff --git a/goodscoverage.h b/goodscoverage.h new file mode 100644 index 0000000..b4065c0 --- /dev/null +++ b/goodscoverage.h @@ -0,0 +1,31 @@ +#ifndef GOODSCOVERAGE_H +#define GOODSCOVERAGE_H + +/* + * goodscoverage.h + * Mothur + * + * Created by Thomas Ryabin on 4/8/09. + * Copyright 2009 __MyCompanyName__. All rights reserved. + * + */ +#include "calculator.h" + +/* This class implements the LogSD estimator on single group. +It is a child of the calculator class. */ + +/***********************************************************************/ + +class GoodsCoverage : public Calculator { + +public: + GoodsCoverage() : Calculator("goodscoverage", 1, false) {}; + EstOutput getValues(SAbundVector*); + EstOutput getValues(vector) {return data;}; + +private: +}; + +/***********************************************************************/ + +#endif