]> git.donarmstrong.com Git - mothur.git/blobdiff - weighted.h
added boneh, efron, and solow calculators
[mothur.git] / weighted.h
index b0d443333d230b410d6a4f64c88c2ee0b18f2a61..3fed6f5e90757ef699e7c4e68c1c7ccd954f9109 100644 (file)
@@ -22,12 +22,14 @@ class Weighted : public TreeCalculator  {
                Weighted(TreeMap* t) : tmap(t) {};
                ~Weighted() {};
                EstOutput getValues(Tree*);
+               EstOutput getValues(Tree*, string, string);
                
        private:
+               GlobalData* globaldata;
                EstOutput data;
                TreeMap* tmap;
                map<string, int>::iterator it;
-               map<string, float> WScore; //a score for each group combination i.e. AB, AC, BC.
+               map<string, double> WScore; //a score for each group combination i.e. AB, AC, BC.
 };
 
 /***********************************************************************/