]> git.donarmstrong.com Git - mothur.git/blobdiff - memchi2.h
added odum, canberra, structchi2, structchord, structeuclidean, gower, hellinger...
[mothur.git] / memchi2.h
diff --git a/memchi2.h b/memchi2.h
new file mode 100644 (file)
index 0000000..a81296c
--- /dev/null
+++ b/memchi2.h
@@ -0,0 +1,31 @@
+#ifndef MEMCHI2_H
+#define MEMCHI2_H
+
+/*
+ *  memchi2.h
+ *  Mothur
+ *
+ *  Created by westcott on 12/17/10.
+ *  Copyright 2010 Schloss Lab. All rights reserved.
+ *
+ */
+
+
+
+#include "calculator.h"
+
+/***********************************************************************/
+
+class MemChi2 : public Calculator  {
+       
+public:
+       MemChi2() :  Calculator("memchi2", 1, false, true) {};  //the true means this calculator needs all groups to calculate the pair value
+       EstOutput getValues(SAbundVector*) {return data;};
+       EstOutput getValues(vector<SharedRAbundVector*>);
+private:
+       
+};
+
+/***********************************************************************/
+
+#endif