]> git.donarmstrong.com Git - mothur.git/blobdiff - sharedjclass.h
changed random forest output filename
[mothur.git] / sharedjclass.h
index c35abffc9d8ded2f9f092d9b8ef37d8770ae2f6c..015b8acdd4ad1f0264dd75730e47e64bc823f3a6 100644 (file)
@@ -1,5 +1,5 @@
-#ifndef SHAREDJCLASS_H
-#define SHAREDJCLASS_H
+#ifndef JCLASS_H
+#define JCLASS_H
 /*
  *  sharedjclass.h
  *  Dotur
 /* This class implements the SharedJclass estimator on two groups. 
 It is a child of the calculator class. */
 
-
-#include <Carbon/Carbon.h>
 #include "calculator.h"
 
 /***********************************************************************/
 
-class SharedJclass : public Calculator  {
+class Jclass : public Calculator  {
        
 public:
-       SharedJclass() :  Calculator("SharedJclass", 3) {};
+       Jclass() :  Calculator("jclass", 1, false) {};
        EstOutput getValues(SAbundVector*) {return data;};
-       EstOutput getValues(SharedRAbundVector*, SharedRAbundVector*);
+       EstOutput getValues(vector<SharedRAbundVector*>);
+       string getCitation() { return "http://www.mothur.org/wiki/Jclass"; }
 private:
        
 };
 
 /***********************************************************************/
 
-#endif
\ No newline at end of file
+#endif