]> git.donarmstrong.com Git - mothur.git/blobdiff - shannon.h
moved mothur's source into a folder to make grabbing just the source easier on github
[mothur.git] / shannon.h
diff --git a/shannon.h b/shannon.h
deleted file mode 100644 (file)
index 3d9ecde..0000000
--- a/shannon.h
+++ /dev/null
@@ -1,33 +0,0 @@
-#ifndef SHANNON_H
-#define SHANNON_H
-/*
- *  shannon.h
- *  Dotur
- *
- *  Created by Sarah Westcott on 1/7/09.
- *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
- *
- */
-
-/* This class implements the Shannon estimator on single group. 
-It is a child of the calculator class. */
-
-
-#include "calculator.h"
-
-/***********************************************************************/
-
-class Shannon : public Calculator  {
-       
-public:
-       Shannon() : Calculator("shannon", 3, false) {};
-       EstOutput getValues(SAbundVector* rank);
-       EstOutput getValues(vector<SharedRAbundVector*>) {return data;};
-       string getCitation() { return "http://www.mothur.org/wiki/Shannon"; }
-private:
-       
-};
-
-/***********************************************************************/
-
-#endif