8 * Created by Pat Schloss on 4/22/09.
9 * Copyright 2009 Patrick D. Schloss. All rights reserved.
13 #include "calculator.h"
15 /* This class implements the coverage estimator on single group.
16 It is a child of the calculator class. */
18 /***********************************************************************/
20 class Coverage : public Calculator {
23 Coverage() : Calculator("coverage", 1, false) {};
24 EstOutput getValues(SAbundVector*);
25 EstOutput getValues(vector<SharedRAbundVector*>) {return data;};
26 string getCitation() { return "http://www.mothur.org/wiki/Coverage"; }
30 /***********************************************************************/