]> git.donarmstrong.com Git - mothur.git/blobdiff - manhattan.h
fixed bug with trim.seqs- when a file is blank for a grouping mothur removed it,...
[mothur.git] / manhattan.h
diff --git a/manhattan.h b/manhattan.h
new file mode 100644 (file)
index 0000000..3115da6
--- /dev/null
@@ -0,0 +1,30 @@
+#ifndef MANHATTAN_H
+#define MANHATTAN_H
+
+/*
+ *  manhattan.h
+ *  Mothur
+ *
+ *  Created by westcott on 12/15/10.
+ *  Copyright 2010 Schloss Lab. All rights reserved.
+ *
+ */
+
+
+#include "calculator.h"
+
+/***********************************************************************/
+
+class Manhattan : public Calculator  {
+       
+public:
+       Manhattan() :  Calculator("manhattan", 1, false) {};
+       EstOutput getValues(SAbundVector*) {return data;};
+       EstOutput getValues(vector<SharedRAbundVector*>);
+private:
+       
+};
+
+/***********************************************************************/
+
+#endif