]> git.donarmstrong.com Git - mothur.git/blobdiff - shannonrange.h
added Jensen-Shannon calc. working on get.communitytype command. fixed bug in get...
[mothur.git] / shannonrange.h
diff --git a/shannonrange.h b/shannonrange.h
new file mode 100644 (file)
index 0000000..34b73f4
--- /dev/null
@@ -0,0 +1,29 @@
+//
+//  shannonrange.h
+//  Mothur
+//
+//  Created by SarahsWork on 1/3/14.
+//  Copyright (c) 2014 Schloss Lab. All rights reserved.
+//
+
+#ifndef Mothur_shannonrange_h
+#define Mothur_shannonrange_h
+
+#include "calculator.h"
+
+/***********************************************************************/
+
+class RangeShannon : public Calculator  {
+       
+public:
+       RangeShannon() : Calculator("rangeshannon", 3, false) {};
+       EstOutput getValues(SAbundVector*) {return data;};
+    EstOutput getValues(vector<SharedRAbundVector*>);
+       string getCitation() { return "http://www.mothur.org/wiki/rangeshannon"; }
+};
+
+/***********************************************************************/
+
+
+
+#endif