]> git.donarmstrong.com Git - mothur.git/blobdiff - npshannon.h
added modify names parameter to set.dir
[mothur.git] / npshannon.h
index 4a633b30526bbe26812bd777dd05e5be74e08f60..ea870d3b390fede481ce727d939ed0b34ebbf621 100644 (file)
@@ -13,7 +13,6 @@
 /* This class implements the NPShannon estimator on single group. 
 It is a child of the calculator class. */
 
-#include <Carbon/Carbon.h>
 #include "calculator.h"
 
 /***********************************************************************/
@@ -21,13 +20,14 @@ It is a child of the calculator class. */
 class NPShannon : public Calculator  {
        
 public:
-       NPShannon() : Calculator("NPShannon", 1) {};
+       NPShannon() : Calculator("npshannon", 1, false) {};
        EstOutput getValues(SAbundVector*);
-       EstOutput getValues(SharedRAbundVector*, SharedRAbundVector*) {return data;};
+       EstOutput getValues(vector<SharedRAbundVector*>) {return data;};
+       string getCitation() { return "http://www.mothur.org/wiki/Npshannon"; }
 private:
        
 };
 
 /***********************************************************************/
 
-#endif
\ No newline at end of file
+#endif