]> git.donarmstrong.com Git - mothur.git/blobdiff - phylodiversity.h
fixed bug with phylo.diversity. not calculating as intended.
[mothur.git] / phylodiversity.h
index 131a63cd31b799f9e60eae28fcfcf9beed732d9f..5e0259541d691fc0b5b51cbf7f46feb6034f8cf8 100644 (file)
@@ -15,7 +15,6 @@
 #include "globaldata.hpp"
 #include "mothurout.h"
 
-typedef vector<double> EstOutput; 
 
 /***********************************************************************/
 
@@ -25,15 +24,13 @@ class PhyloDiversity  {
                PhyloDiversity(TreeMap* t) : tmap(t) { globaldata = GlobalData::getInstance();  m = MothurOut::getInstance(); }
                ~PhyloDiversity() {};
                
-               EstOutput getValues(Tree*, vector<int>);
-               void setTotalGroupBranchLengths(Tree*);
+               //int getValues(Tree*, vector<int>, vector< vector< float> >&);
+               
                
        private:
                GlobalData* globaldata;
                MothurOut* m;
-               EstOutput data;
                TreeMap* tmap;
-               map<string, float> groupTotals;
 };
 
 /***********************************************************************/