X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=coverage.h;fp=coverage.h;h=c17f8e7cbdd7d38465fba23ceff41ad98f7ac6a4;hb=477e76a8a79b60f6cd4253324dd830bdea25e3e9;hp=0000000000000000000000000000000000000000;hpb=e4827e0945cbda536064e5a345996b2a7dfcbb81;p=mothur.git diff --git a/coverage.h b/coverage.h new file mode 100644 index 0000000..c17f8e7 --- /dev/null +++ b/coverage.h @@ -0,0 +1,31 @@ +#ifndef COVERAGE_H +#define COVERAGE_H + +/* + * coverage.h + * Mothur + * + * Created by Pat Schloss on 4/22/09. + * Copyright 2009 Patrick D. Schloss. All rights reserved. + * + */ + +#include "calculator.h" + +/* This class implements the coverage estimator on single group. + It is a child of the calculator class. */ + +/***********************************************************************/ + +class Coverage : public Calculator { + +public: + Coverage() : Calculator("coverage", 1) {}; + EstOutput getValues(SAbundVector*); + EstOutput getValues(SharedRAbundVector*, SharedRAbundVector*) {return data;}; +}; + + +/***********************************************************************/ + +#endif