]> git.donarmstrong.com Git - mothur.git/blobdiff - gower.h
added odum, canberra, structchi2, structchord, structeuclidean, gower, hellinger...
[mothur.git] / gower.h
diff --git a/gower.h b/gower.h
new file mode 100644 (file)
index 0000000..b6337ce
--- /dev/null
+++ b/gower.h
@@ -0,0 +1,31 @@
+#ifndef GOWER_H
+#define GOWER_H
+
+/*
+ *  gower.h
+ *  Mothur
+ *
+ *  Created by westcott on 12/17/10.
+ *  Copyright 2010 Schloss Lab. All rights reserved.
+ *
+ */
+
+
+#include "calculator.h"
+
+/***********************************************************************/
+
+class Gower : public Calculator  {
+       
+public:
+       Gower() :  Calculator("gower", 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
+