X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=parsimony.h;h=fc905f2d3c432ab1ce4a05007e13ca0f14264fd0;hb=0bcfddf7bc721a334bdae42d86a580019303537d;hp=11d4cc859b2c35295a273780499485ac70e1c052;hpb=5a3592c6478d5d786ec20e4bee71854ad92fdb8c;p=mothur.git diff --git a/parsimony.h b/parsimony.h index 11d4cc8..fc905f2 100644 --- a/parsimony.h +++ b/parsimony.h @@ -22,15 +22,27 @@ class Parsimony : public TreeCalculator { public: Parsimony(TreeMap* t) : tmap(t) {}; ~Parsimony() {}; - EstOutput getValues(Tree*); - EstOutput getValues(Tree*, string, string) { return data; }; + EstOutput getValues(Tree*, int, string); + //EstOutput getValues(Tree*, string, string) { return data; } private: + struct linePair { + int start; + int num; + linePair(int i, int j) : start(i), num(j) {} + }; + vector lines; + GlobalData* globaldata; EstOutput data; TreeMap* tmap; - map::iterator it; + int processors; + string outputDir; + + EstOutput driver(Tree*, vector< vector >, int, int); + EstOutput createProcesses(Tree*, vector< vector >); }; /***********************************************************************/ -#endif \ No newline at end of file + +#endif