]> git.donarmstrong.com Git - mothur.git/blobdiff - chao1.h
added modify names parameter to set.dir
[mothur.git] / chao1.h
diff --git a/chao1.h b/chao1.h
index 3a7cfc75eb6e69de6ab072bf363c661013a084c2..21224eb00d26587cb5f4c4440e9fab42d5508e79 100644 (file)
--- a/chao1.h
+++ b/chao1.h
@@ -9,7 +9,6 @@
  *
  */
 
-#include <Carbon/Carbon.h>
 #include "calculator.h"
 
 /* This class implements the Ace estimator on single group. 
@@ -20,12 +19,13 @@ It is a child of the calculator class. */
 class Chao1 : public Calculator  {
        
 public: 
-       Chao1() : Calculator("Chao", 3) {};
+       Chao1() : Calculator("chao", 3, false) {};
        EstOutput getValues(SAbundVector*);     
-       EstOutput getValues(SharedRAbundVector*, SharedRAbundVector*) {return data;};
+       EstOutput getValues(vector<SharedRAbundVector*>) {return data;};
+       string getCitation() { return "http://www.mothur.org/wiki/Chao"; }
 };
 
 
 /***********************************************************************/
 
-#endif
\ No newline at end of file
+#endif