]> git.donarmstrong.com Git - mothur.git/blob - coverage.h
changing command name classify.shared to classifyrf.shared
[mothur.git] / coverage.h
1 #ifndef COVERAGE_H
2 #define COVERAGE_H
3
4 /*
5  *  coverage.h
6  *  Mothur
7  *
8  *  Created by Pat Schloss on 4/22/09.
9  *  Copyright 2009 Patrick D. Schloss. All rights reserved.
10  *
11  */
12
13 #include "calculator.h"
14
15 /* This class implements the coverage estimator on single group. 
16  It is a child of the calculator class. */
17
18 /***********************************************************************/
19
20 class Coverage : public Calculator  {
21         
22 public: 
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"; }
27 };
28
29
30 /***********************************************************************/
31
32 #endif