X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=parsimony.h;h=bf0e0d4f90198ef353c2c1899414f699454c8a7e;hb=2cfb747aa8f63bde9c1114001e6d2e81ccd26178;hp=a22f5bda875b467fee13b369c9a1c639ad5e5662;hpb=5318771152ee5b1a280b3dc50aedd887dd1da8a8;p=mothur.git diff --git a/parsimony.h b/parsimony.h index a22f5bd..bf0e0d4 100644 --- a/parsimony.h +++ b/parsimony.h @@ -12,26 +12,33 @@ */ #include "treecalculator.h" -#include "treemap.h" -#include "globaldata.hpp" +#include "counttable.h" /***********************************************************************/ class Parsimony : public TreeCalculator { public: - Parsimony(TreeMap* t) : tmap(t) {}; + Parsimony() {}; ~Parsimony() {}; - EstOutput getValues(Tree*); - EstOutput getValues(Tree*, string, string) { return data; }; + EstOutput getValues(Tree*, int, string); private: - GlobalData* globaldata; - Tree* copyTree; + struct linePair { + int start; + int num; + linePair(int i, int j) : start(i), num(j) {} + }; + vector lines; + EstOutput data; - TreeMap* tmap; - map::iterator it; + int processors; + string outputDir; + + EstOutput driver(Tree*, vector< vector >, int, int, CountTable*); + EstOutput createProcesses(Tree*, vector< vector >, CountTable*); }; /***********************************************************************/ -#endif \ No newline at end of file + +#endif