]> git.donarmstrong.com Git - mothur.git/blobdiff - coverage.h
moved mothur's source into a folder to make grabbing just the source easier on github
[mothur.git] / coverage.h
diff --git a/coverage.h b/coverage.h
deleted file mode 100644 (file)
index 8d6fead..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-#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, false) {};
-       EstOutput getValues(SAbundVector*);     
-       EstOutput getValues(vector<SharedRAbundVector*>) {return data;};
-       string getCitation() { return "http://www.mothur.org/wiki/Coverage"; }
-};
-
-
-/***********************************************************************/
-
-#endif