File: unweighted.cpp

package info (click to toggle)
mothur 1.48.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 13,684 kB
  • sloc: cpp: 161,854; makefile: 122; sh: 31
file content (445 lines) | stat: -rwxr-xr-x 18,266 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
/*
 *  unweighted.cpp
 *  Mothur
 *
 *  Created by Sarah Westcott on 2/9/09.
 *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
 *
 */

#include "unweighted.h"

/**************************************************************************************************/
Unweighted::Unweighted(bool r, vector<string> G) : includeRoot(r), Groups(G) {
    try {
        int numGroups = Groups.size();
        
        //calculate number of comparisons i.e. with groups A,B,C = AB, AC, BC = 3;
        for (int i=0; i<numGroups; i++) {
            for (int l = 0; l < i; l++) {
                vector<string> groups; groups.push_back(Groups[i]); groups.push_back(Groups[l]);
                namesOfGroupCombos.push_back(groups);
            }
        }
    }
    catch(exception& e) {
        m->errorOut(e, "Unweighted", "Unweighted");
        exit(1);
    }
}
/**************************************************************************************************/

EstOutput Unweighted::getValues(Tree* t, int p) {
	try {
		processors = p;
    
		return (createProcesses(t));
	}
	catch(exception& e) {
		m->errorOut(e, "Unweighted", "getValues");
		exit(1);
	}
}
/***********************************************************************/
struct unweightedData {
    int start;
    int num, count;
    MothurOut* m;
    EstOutput results;
    vector< vector<string> > namesOfGroupCombos;
    vector<vector<int> > randomizedTreeNodes;
    Tree* t;
    CountTable* ct;
    bool includeRoot;
    vector<string> Treenames;
    Utils util;
    
    unweightedData(){}
    unweightedData(int st, int en, vector< vector<string> > ngc, Tree* tree, CountTable* count, bool ir) {
        m = MothurOut::getInstance();
        start = st;
        num = en;
        namesOfGroupCombos = ngc;
        t = tree;
        ct = count;
        includeRoot = ir;
        Treenames = tree->getTreeNames();
        results.resize(num);
        count = 0;
    }

    unweightedData(int st, int en, vector< vector<string> > ngc, Tree* tree, CountTable* count, bool ir, vector<vector<int> > randomTreeNodes) {
        m = MothurOut::getInstance();
        start = st;
        num = en;
        namesOfGroupCombos = ngc;
        randomizedTreeNodes = randomTreeNodes;
        t = tree;
        ct = count;
        includeRoot = ir;
        Treenames = tree->getTreeNames();
        results.resize(num);
        count = 0;
    }
};
/**************************************************************************************************/
int findNodeBelonging(MothurOut* m, vector<string>& namesOfGroupCombos, map< string, vector<int> >& groupNodeInfo) {
    try {
     
     int nodeBelonging = -1;
     for (int g = 0; g < namesOfGroupCombos.size(); g++) {
         if (groupNodeInfo[namesOfGroupCombos[g]].size() != 0) { nodeBelonging = groupNodeInfo[namesOfGroupCombos[g]][0]; break; }
     }
     
     //sanity check
     if (nodeBelonging == -1) {
         m->mothurOut("[WARNING]: cannot find a nodes in the tree from grouping ");
         for (int g = 0; g < namesOfGroupCombos.size()-1; g++) { m->mothurOut(namesOfGroupCombos[g] + "-"); }
         m->mothurOut(namesOfGroupCombos[namesOfGroupCombos.size()-1]);
         m->mothurOut(", skipping.\n");
     }
     
     return nodeBelonging;
 }
 catch(exception& e) {
     m->errorOut(e, "Weighted", "findNodeBelongingToThisComparison");
     exit(1);
 }
}
/**************************************************************************************************/
void getRoot2(MothurOut* m, Tree* t, int v, vector<string> grouping, set<int>& rootForGrouping) {
    try {
        //you are a leaf so get your parent
        int index = t->tree[v].getParent();
        
        //my parent is a potential root
        rootForGrouping.insert(index);
        
        //while you aren't at root
        while(t->tree[index].getParent() != -1){
            
            if (m->getControl_pressed()) {  return; }
            
            //am I the root for this grouping? if so I want to stop "early"
            //does my sibling have descendants from the users groups?
            //if so I am not the root
            int parent = t->tree[index].getParent();
            int lc = t->tree[parent].getLChild();
            int rc = t->tree[parent].getRChild();
            
            int sib = lc;
            if (lc == index) { sib = rc; }
            
            map<string, int>::iterator itGroup;
            int pcountSize = 0;
            for (int j = 0; j < grouping.size(); j++) {
                map<string, int>::iterator itGroup = t->tree[sib].pcount.find(grouping[j]);
                if (itGroup != t->tree[sib].pcount.end()) { pcountSize++; if (pcountSize > 1) { break; } }
            }
            
            //if yes, I am not the root
            if (pcountSize != 0) {
                rootForGrouping.clear();
                rootForGrouping.insert(parent);
            }
            
            index = parent;
        }
        
        //get all nodes above the root to add so we don't add their u values above
        index = *(rootForGrouping.begin());
        while(t->tree[index].getParent() != -1){
            int parent = t->tree[index].getParent();
            rootForGrouping.insert(parent);
            
            index = parent;
        }
        
        
        return;
    }
    catch(exception& e) {
        m->errorOut(e, "Weighted", "getRoot2");
        exit(1);
    }
}
/**************************************************************************************************/
void driverUnweighted(unweightedData* params) {
    try {
        params->count = 0;

        for (int h = params->start; h < (params->start+params->num); h++) {
            
            if (params->m->getControl_pressed()) { break; }
            
            double UniqueBL=0.0000;  //a branch length is unique if it's chidren are from the same group
            double totalBL = 0.00;	//all branch lengths
            double UW = 0.00;		//Unweighted Value = UniqueBL / totalBL;
            set<int> rootBranches; //if not including root this will hold branches that are "above" the root for this comparison

            int nodeBelonging = findNodeBelonging(params->m, params->namesOfGroupCombos[h], params->t->groupNodeInfo);
            
            if (nodeBelonging != -1) {

                //fills rootBranches to exclude, if including the root then rootBranches should be empty.
                if (!params->includeRoot) { getRoot2(params->m, params->t, nodeBelonging, params->namesOfGroupCombos[h], rootBranches); }

                for(int i=0;i<params->t->getNumNodes();i++){
                    
                    if (params->m->getControl_pressed()) {  break; }
                    
                    //pcountSize = 0, they are from a branch that is entirely from a group the user doesn't want
                    //pcountSize = 2, not unique to one group
                    //pcountSize = 1, unique to one group
                    
                    int pcountSize = 0;
                    for (int j = 0; j < params->namesOfGroupCombos[h].size(); j++) {
                        map<string, int>::iterator itGroup = params->t->tree[i].pcount.find(params->namesOfGroupCombos[h][j]);
                        if (itGroup != params->t->tree[i].pcount.end()) { pcountSize++; if (pcountSize > 1) { break; } }
                    }
                    
                    
                    //unique calc
                    if (pcountSize == 0) { }
                    else if (!params->util.isEqual(params->t->tree[i].getBranchLength(), -1) && (pcountSize == 1) && (rootBranches.count(i) == 0)) { //you have a unique branch length and you are not the root
                        UniqueBL += abs(params->t->tree[i].getBranchLength());
                    }
                    
                    //total calc
                    if (pcountSize == 0) { }
                    else if (!params->util.isEqual(params->t->tree[i].getBranchLength(), -1) && (pcountSize != 0) && (rootBranches.count(i) == 0)) { //you have a branch length and you are not the root
                        totalBL += abs(params->t->tree[i].getBranchLength());
                    }
                }
                
                UW = (UniqueBL / totalBL);
                
                if (isnan(UW) || isinf(UW)) { UW = 0; }
                
                params->results[params->count] = UW;
            }
            params->count++;
        }
    }
    catch(exception& e) {
        params->m->errorOut(e, "Unweighted", "driverUnweighted");
        exit(1);
    }
}
/**************************************************************************************************/

EstOutput Unweighted::createProcesses(Tree* t) {
	try {
        vector<linePair> lines;
        int remainingPairs = namesOfGroupCombos.size();
        if (remainingPairs < processors) { processors = remainingPairs; }
        int startIndex = 0;
        for (int remainingProcessors = processors; remainingProcessors > 0; remainingProcessors--) {
            int numPairs = remainingPairs; //case for last processor
            if (remainingProcessors != 1) { numPairs = ceil(remainingPairs / remainingProcessors); }
            lines.push_back(linePair(startIndex, numPairs)); //startIndex, numPairs
            startIndex = startIndex + numPairs;
            remainingPairs = remainingPairs - numPairs;
        }
        
        //create array of worker threads
        vector<std::thread*> workerThreads;
        vector<unweightedData*> data;
        vector<string> Treenames; Treenames = t->getTreeNames();
        CountTable* ct = t->getCountTable();
        
        //Lauch worker threads
        for (int i = 0; i < processors-1; i++) {
            CountTable* copyCount = new CountTable();
            copyCount->copy(ct);
            Tree* copyTree = new Tree(copyCount, Treenames);
            copyTree->getCopy(t);
            
            unweightedData* dataBundle = new unweightedData(lines[i+1].start, lines[i+1].end, namesOfGroupCombos, copyTree, copyCount, includeRoot);
            data.push_back(dataBundle);
            
            workerThreads.push_back(new std::thread(driverUnweighted, dataBundle));
        }
        
        CountTable* copyCount = new CountTable();
        copyCount->copy(ct);
        Tree* copyTree = new Tree(copyCount, Treenames);
        copyTree->getCopy(t);
        
        unweightedData* dataBundle = new unweightedData(lines[0].start, lines[0].end, namesOfGroupCombos, t, ct, includeRoot);
        driverUnweighted(dataBundle);
        EstOutput results = dataBundle->results;
        delete copyTree; delete copyCount;
        delete dataBundle;
        
        for (int i = 0; i < processors-1; i++) {
            workerThreads[i]->join();
            
            for (int j = 0; j < data[i]->results.size(); j++) {  results.push_back(data[i]->results[j]);  }
            if (data[i]->count != data[i]->num) { //you didn't complete your tasks
                m->mothurOut("[ERROR]: thread " + toString(i+1) + " failed to complete it's tasks, quitting.\n");
                m->setControl_pressed(true);
            }
            
            delete data[i]->t; delete data[i]->ct; delete data[i]; delete workerThreads[i];
        }
        
        return results;
	}
	catch(exception& e) {
		m->errorOut(e, "Unweighted", "createProcesses");
		exit(1);
	}
}
/**************************************************************************************************/

EstOutput Unweighted::getValues(Tree* t, vector<vector<int> >& randomTreeNodes, int p) {
 try {
		processors = p;
    
        return (createProcesses(t, randomTreeNodes));
	}
	catch(exception& e) {
		m->errorOut(e, "Unweighted", "getValues");
		exit(1);
	}
}
/**************************************************************************************************/
void driverRandomCalcs(unweightedData* params) {
    try {
        params->count = 0;
       
        vector<string> Treenames = params->t->getTreeNames();
        Tree* copyTree = new Tree(params->ct, Treenames);
        
        for (int h = params->start; h < (params->start+params->num); h++) {
            
            if (params->m->getControl_pressed()) { break; }
            
            //copy random tree passed in
            copyTree->getCopy(params->t);
            
            //swap labels in the groups you want to compare
            copyTree->assembleRandomUnifracTree(params->randomizedTreeNodes[h]);
            
            double UniqueBL=0.0000;  //a branch length is unique if it's chidren are from the same group
            double totalBL = 0.00;	//all branch lengths
            double UW = 0.00;		//Unweighted Value = UniqueBL / totalBL;
            //find a node that belongs to one of the groups in this combo
            set<int> rootBranches; //if not including root this will hold branches that are "above" the root for this comparison

            int nodeBelonging = findNodeBelonging(params->m, params->namesOfGroupCombos[h], params->t->groupNodeInfo);
            
            if (nodeBelonging != -1) {

                //fills rootBranches to exclude, if including the root then rootBranches should be empty.
                if (!params->includeRoot) { getRoot2(params->m, params->t, nodeBelonging, params->namesOfGroupCombos[h], rootBranches); }

                for(int i=0;i<copyTree->getNumNodes();i++){
                    
                    if (params->m->getControl_pressed()) {  break; }
                    
                    //pcountSize = 0, they are from a branch that is entirely from a group the user doesn't want
                    //pcountSize = 2, not unique to one group
                    //pcountSize = 1, unique to one group
                    
                    int pcountSize = 0;
                    for (int j = 0; j < params->namesOfGroupCombos[h].size(); j++) {
                        map<string, int>::iterator itGroup = copyTree->tree[i].pcount.find(params->namesOfGroupCombos[h][j]);
                        if (itGroup != copyTree->tree[i].pcount.end()) { pcountSize++; if (pcountSize > 1) { break; } }
                    }
                    
                    //unique calc
                    if (pcountSize == 0) { }
                    else if (!params->util.isEqual(copyTree->tree[i].getBranchLength(), -1) && (pcountSize == 1) && (rootBranches.count(i) == 0)) { //you have a unique branch length and you are not the root
                        UniqueBL += abs(copyTree->tree[i].getBranchLength());
                    }
                    
                    //total calc
                    if (pcountSize == 0) { }
                    else if (!params->util.isEqual(copyTree->tree[i].getBranchLength(), -1) && (pcountSize != 0) && (rootBranches.count(i) == 0)) { //you have a branch length and you are not the root
                        totalBL += abs(copyTree->tree[i].getBranchLength()); 
                    }
                    
                }
                
                UW = (UniqueBL / totalBL);
                if (isnan(UW) || isinf(UW)) { UW = 0; }
                
                params->results[params->count] = UW;
            }
            params->count++;
        }
        
        delete copyTree;
    }
    catch(exception& e) {
        params->m->errorOut(e, "Unweighted", "driverRandomCalcs");
        exit(1);
    }
}
/**************************************************************************************************/

EstOutput Unweighted::createProcesses(Tree* t, vector<vector<int> >& randomTreeNodes) {
	try {
        vector<linePair> lines;
        int remainingPairs = namesOfGroupCombos.size();
        if (remainingPairs < processors) { processors = remainingPairs; }
        int startIndex = 0;
        for (int remainingProcessors = processors; remainingProcessors > 0; remainingProcessors--) {
            int numPairs = remainingPairs; //case for last processor
            if (remainingProcessors != 1) { numPairs = ceil(remainingPairs / remainingProcessors); }
            lines.push_back(linePair(startIndex, numPairs)); //startIndex, numPairs
            startIndex = startIndex + numPairs;
            remainingPairs = remainingPairs - numPairs;
        }
        
        //create array of worker threads
        vector<std::thread*> workerThreads;
        vector<unweightedData*> data;
        vector<string> Treenames; Treenames = t->getTreeNames();
        CountTable* ct = t->getCountTable();
        
        //Lauch worker threads
        for (int i = 0; i < processors-1; i++) {
            CountTable* copyCount = new CountTable();
            copyCount->copy(ct);
            Tree* copyTree = new Tree(copyCount, Treenames);
            copyTree->getCopy(t);
            
            unweightedData* dataBundle = new unweightedData(lines[i+1].start, lines[i+1].end, namesOfGroupCombos, copyTree, copyCount, includeRoot, randomTreeNodes);
            data.push_back(dataBundle);
            
            workerThreads.push_back(new std::thread(driverRandomCalcs, dataBundle));
        }
        
        unweightedData* dataBundle = new unweightedData(lines[0].start, lines[0].end, namesOfGroupCombos, t, ct, includeRoot, randomTreeNodes);
        driverRandomCalcs(dataBundle);
        EstOutput results = dataBundle->results;
        delete dataBundle;
        
        for (int i = 0; i < processors-1; i++) {
            workerThreads[i]->join();
            
            for (int j = 0; j < data[i]->results.size(); j++) {  results.push_back(data[i]->results[j]);  }
            if (data[i]->count != data[i]->num) { //you didn't complete your tasks
                m->mothurOut("[ERROR]: thread " + toString(i+1) + " failed to complete it's tasks, quitting.\n");
                m->setControl_pressed(true);
            }
            
            delete data[i]->t;
            delete data[i]->ct;
            delete data[i];
            delete workerThreads[i];
        }
        
        return results;
	}
	catch(exception& e) {
		m->errorOut(e, "Unweighted", "createProcesses");
		exit(1);
	}
}
/**************************************************************************************************/