X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=unweighted.h;fp=unweighted.h;h=f27df8c9495d36ea9b98f74b521316af95271a0f;hb=bd93b1a6f9fe9a6a4a7ac2e9f106e5c83a438856;hp=007fef7911918ba7c6505f8fc1213cdd8e9be43a;hpb=f099fdc1e3a0d7b75d780a164e5bdb93496a7a1d;p=mothur.git diff --git a/unweighted.h b/unweighted.h index 007fef7..f27df8c 100644 --- a/unweighted.h +++ b/unweighted.h @@ -21,14 +21,26 @@ class Unweighted : public TreeCalculator { public: Unweighted(TreeMap* t) : tmap(t) {}; ~Unweighted() {}; - EstOutput getValues(Tree*); + EstOutput getValues(Tree*, int, string); EstOutput getValues(Tree*, string, string); private: + struct linePair { + int start; + int num; + linePair(int i, int j) : start(i), num(j) {} + }; + vector lines; + GlobalData* globaldata; Tree* copyTree; EstOutput data; TreeMap* tmap; + int processors; + string outputDir; + + EstOutput driver(Tree*, vector< vector >, int, int); + EstOutput createProcesses(Tree*, vector< vector >); };