]> git.donarmstrong.com Git - mothur.git/blobdiff - sharedace.h
changes while testing
[mothur.git] / sharedace.h
index fead251ba0ced3ab338bf735b53e46bc0715d2b2..9ea0d6a1c901e3fb73d296d1a31c35ff11a76539 100644 (file)
@@ -12,8 +12,6 @@
 /* This class implements the SharedAce estimator on two groups. 
 It is a child of the calculator class. */
 
-
-#include <Carbon/Carbon.h>
 #include "calculator.h"
 
 /***********************************************************************/
@@ -21,13 +19,14 @@ It is a child of the calculator class. */
 class SharedAce : public Calculator  {
        
 public:
-       SharedAce(int n=10) : abund(n),  Calculator("SharedAce", 3) {};
+       SharedAce(int n=10) : abund(n),  Calculator("sharedace", 1, false) {};
        EstOutput getValues(SAbundVector*) {return data;};
-       EstOutput getValues(SharedRAbundVector*, SharedRAbundVector*);
+       EstOutput getValues(vector<SharedRAbundVector*>);
+       string getCitation() { return "http://www.mothur.org/wiki/SharedAce"; }
 private:
        int abund;
 };
 
 /***********************************************************************/
-#endif
 
+#endif