]> git.donarmstrong.com Git - mothur.git/blobdiff - parsimony.h
fixed bugs with trim.seqs and bdiffs
[mothur.git] / parsimony.h
index b5d7e209c415274020f4d359a35bbcdf374d8383..d4f71abb9511b71f96fbdd4cbc11b080117db364 100644 (file)
@@ -13,6 +13,7 @@
 
 #include "treecalculator.h"
 #include "treemap.h"
+#include "globaldata.hpp"
 
 /***********************************************************************/
 
@@ -22,11 +23,16 @@ class Parsimony : public TreeCalculator  {
                Parsimony(TreeMap* t) : tmap(t) {};
                ~Parsimony() {};
                EstOutput getValues(Tree*);
+               EstOutput getValues(Tree*, string, string) { return data; };
                
        private:
+               GlobalData* globaldata;
+               Tree* copyTree;
                EstOutput data;
                TreeMap* tmap;
+               map<string, int>::iterator it;
 };
 
 /***********************************************************************/
-#endif
\ No newline at end of file
+
+#endif