]> git.donarmstrong.com Git - mothur.git/blobdiff - coverage.h
working on libshuff
[mothur.git] / coverage.h
diff --git a/coverage.h b/coverage.h
new file mode 100644 (file)
index 0000000..c556bb2
--- /dev/null
@@ -0,0 +1,40 @@
+#ifndef COVERAGE_H
+#define COVERAGE_H
+
+/*
+ *  coverage.h
+ *  Mothur
+ *
+ *  Created by Sarah Westcott on 3/9/09.
+ *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
+ *
+ */
+
+#include "mothur.h"
+#include "fullmatrix.h"
+#include "globaldata.hpp"
+
+using namespace std;
+
+/***********************************************************************/
+
+class Coverage  {
+       
+       public: 
+               Coverage(){};
+               ~Coverage(){};
+               vector< vector<float> > getValues(FullMatrix*, float);  
+               
+       private:
+               GlobalData* globaldata;
+               vector< vector<float> > data;
+               int numGroups;
+
+};
+
+
+/***********************************************************************/
+
+
+
+#endif
\ No newline at end of file