]> git.donarmstrong.com Git - mothur.git/blob - parsimony.h
adding treeclimber and unifrac pieces
[mothur.git] / parsimony.h
1 #ifndef PARSIMONY_H
2 #define PARSIMONY_H
3
4
5 /*
6  *  parsimony.h
7  *  Mothur
8  *
9  *  Created by Sarah Westcott on 1/26/09.
10  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
11  *
12  */
13
14 #include "treecalculator.h"
15 #include "treemap.h"
16
17 /***********************************************************************/
18
19 class Parsimony : public TreeCalculator  {
20         
21         public:
22                 Parsimony(TreeMap* t) : tmap(t) {};
23                 ~Parsimony() {};
24                 EstOutput getValues(Tree*);
25                 
26         private:
27                 EstOutput data;
28                 TreeMap* tmap;
29 };
30
31 /***********************************************************************/
32 #endif