X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=parsimony.h;fp=parsimony.h;h=b5d7e209c415274020f4d359a35bbcdf374d8383;hb=d037597badc8d18e235c59f0c1114180edb7f98f;hp=0000000000000000000000000000000000000000;hpb=58cf1d08fee8c64334979075fa57bcafb035a2ed;p=mothur.git diff --git a/parsimony.h b/parsimony.h new file mode 100644 index 0000000..b5d7e20 --- /dev/null +++ b/parsimony.h @@ -0,0 +1,32 @@ +#ifndef PARSIMONY_H +#define PARSIMONY_H + + +/* + * parsimony.h + * Mothur + * + * Created by Sarah Westcott on 1/26/09. + * Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved. + * + */ + +#include "treecalculator.h" +#include "treemap.h" + +/***********************************************************************/ + +class Parsimony : public TreeCalculator { + + public: + Parsimony(TreeMap* t) : tmap(t) {}; + ~Parsimony() {}; + EstOutput getValues(Tree*); + + private: + EstOutput data; + TreeMap* tmap; +}; + +/***********************************************************************/ +#endif \ No newline at end of file