]> git.donarmstrong.com Git - mothur.git/blob - unifracweightedcommand.cpp
working on unifrac parallelization
[mothur.git] / unifracweightedcommand.cpp
1 /*
2  *  unifracweightedcommand.cpp
3  *  Mothur
4  *
5  *  Created by Sarah Westcott on 2/9/09.
6  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
7  *
8  */
9
10 #include "unifracweightedcommand.h"
11
12 /***********************************************************/
13 UnifracWeightedCommand::UnifracWeightedCommand(string option) {
14         try {
15                 globaldata = GlobalData::getInstance();
16                 abort = false;
17                 Groups.clear();
18                         
19                 //allow user to run help
20                 if(option == "help") { help(); abort = true; }
21                 
22                 else {
23                         //valid paramters for this command
24                         string Array[] =  {"groups","iters","distance","random","processors","outputdir","inputdir"};
25                         vector<string> myArray (Array, Array+(sizeof(Array)/sizeof(string)));
26                         
27                         OptionParser parser(option);
28                         map<string,string> parameters=parser.getParameters();
29                         
30                         ValidParameters validParameter;
31                 
32                         //check to make sure all parameters are valid for command
33                         for (map<string,string>::iterator it = parameters.begin(); it != parameters.end(); it++) { 
34                                 if (validParameter.isValidParameter(it->first, myArray, it->second) != true) {  abort = true;  }
35                         }
36                         
37                         if (globaldata->gTree.size() == 0) {//no trees were read
38                                 m->mothurOut("You must execute the read.tree command, before you may execute the unifrac.weighted command."); m->mothurOutEndLine(); abort = true;  }
39                         
40                         //if the user changes the output directory command factory will send this info to us in the output parameter 
41                         outputDir = validParameter.validFile(parameters, "outputdir", false);           if (outputDir == "not found"){  
42                                 outputDir = ""; 
43                                 outputDir += m->hasPath(globaldata->inputFileName); //if user entered a file with a path then preserve it       
44                         }
45                                                                                                                                         
46                         //check for optional parameter and set defaults
47                         // ...at some point should added some additional type checking...
48                         groups = validParameter.validFile(parameters, "groups", false);                 
49                         if (groups == "not found") { groups = ""; }
50                         else { 
51                                 m->splitAtDash(groups, Groups);
52                                 globaldata->Groups = Groups;
53                         }
54                                 
55                         itersString = validParameter.validFile(parameters, "iters", false);                     if (itersString == "not found") { itersString = "1000"; }
56                         convert(itersString, iters); 
57                         
58                         string temp = validParameter.validFile(parameters, "distance", false);                  if (temp == "not found") { temp = "false"; }
59                         phylip = m->isTrue(temp);
60                 
61                         temp = validParameter.validFile(parameters, "random", false);                                   if (temp == "not found") { temp = "F"; }
62                         random = m->isTrue(temp);
63                         
64                         temp = validParameter.validFile(parameters, "processors", false);       if (temp == "not found"){       temp = "1";                             }
65                         convert(temp, processors); 
66                         
67                         if (!random) {  iters = 0;  } //turn off random calcs
68
69                         
70                         if (abort == false) {
71                                 T = globaldata->gTree;
72                                 tmap = globaldata->gTreemap;
73                                 sumFile = outputDir + m->getSimpleName(globaldata->getTreeFile()) + ".wsummary";
74                                 m->openOutputFile(sumFile, outSum);
75                                 outputNames.push_back(sumFile);
76                                 
77                                 util = new SharedUtil();
78                                 string s; //to make work with setgroups
79                                 util->setGroups(globaldata->Groups, tmap->namesOfGroups, s, numGroups, "weighted");     //sets the groups the user wants to analyze
80                                 util->getCombos(groupComb, globaldata->Groups, numComp);
81                                 
82                                 weighted = new Weighted(tmap);
83                                 
84                         }
85                 }
86                 
87                 
88         }
89         catch(exception& e) {
90                 m->errorOut(e, "UnifracWeightedCommand", "UnifracWeightedCommand");
91                 exit(1);
92         }
93 }
94 //**********************************************************************************************************************
95
96 void UnifracWeightedCommand::help(){
97         try {
98                 m->mothurOut("The unifrac.weighted command can only be executed after a successful read.tree command.\n");
99                 m->mothurOut("The unifrac.weighted command parameters are groups, iters, distance and random.  No parameters are required.\n");
100                 m->mothurOut("The groups parameter allows you to specify which of the groups in your groupfile you would like analyzed.  You must enter at least 2 valid groups.\n");
101                 m->mothurOut("The group names are separated by dashes.  The iters parameter allows you to specify how many random trees you would like compared to your tree.\n");
102                 m->mothurOut("The distance parameter allows you to create a distance file from the results. The default is false.\n");
103                 m->mothurOut("The random parameter allows you to shut off the comparison to random trees. The default is false, meaning don't compare your trees with randomly generated trees.\n");
104                 m->mothurOut("The unifrac.weighted command should be in the following format: unifrac.weighted(groups=yourGroups, iters=yourIters).\n");
105                 m->mothurOut("Example unifrac.weighted(groups=A-B-C, iters=500).\n");
106                 m->mothurOut("The default value for groups is all the groups in your groupfile, and iters is 1000.\n");
107                 m->mothurOut("The unifrac.weighted command output two files: .weighted and .wsummary their descriptions are in the manual.\n");
108                 m->mothurOut("Note: No spaces between parameter labels (i.e. groups), '=' and parameters (i.e.yourGroups).\n\n");
109         }
110         catch(exception& e) {
111                 m->errorOut(e, "UnifracWeightedCommand", "help");
112                 exit(1);
113         }
114 }
115
116 /***********************************************************/
117 int UnifracWeightedCommand::execute() {
118         try {
119         
120                 if (abort == true) { return 0; }
121                 
122                 int start = time(NULL);
123                 
124                 //get weighted for users tree
125                 userData.resize(numComp,0);  //data[0] = weightedscore AB, data[1] = weightedscore AC...
126                 randomData.resize(numComp,0); //data[0] = weightedscore AB, data[1] = weightedscore AC...
127                                 
128                 //create new tree with same num nodes and leaves as users
129                 randT = new Tree();
130                 
131                 //get weighted scores for users trees
132                 for (int i = 0; i < T.size(); i++) {
133                         
134                         if (m->control_pressed) { delete randT; outSum.close(); for (int i = 0; i < outputNames.size(); i++) {  remove(outputNames[i].c_str());  } return 0; }
135
136                         counter = 0;
137                         rScores.resize(numComp);  //data[0] = weightedscore AB, data[1] = weightedscore AC...
138                         uScores.resize(numComp);  //data[0] = weightedscore AB, data[1] = weightedscore AC...
139                         
140                         if (random) {  
141                                 output = new ColumnFile(outputDir + m->getSimpleName(globaldata->getTreeFile())  + toString(i+1) + ".weighted", itersString);  
142                                 outputNames.push_back(outputDir + m->getSimpleName(globaldata->getTreeFile())  + toString(i+1) + ".weighted");
143                         } 
144
145                         userData = weighted->getValues(T[i], processors, outputDir);  //userData[0] = weightedscore
146                         
147                         if (m->control_pressed) { 
148                                 delete randT;
149                                 if (random) { delete output; }
150                                 outSum.close();
151                                 for (int i = 0; i < outputNames.size(); i++) {  remove(outputNames[i].c_str());  }
152                                 return 0; 
153                         }
154
155                         
156                         //save users score
157                         for (int s=0; s<numComp; s++) {
158                                 //add users score to vector of user scores
159                                 uScores[s].push_back(userData[s]);
160                                 
161                                 //save users tree score for summary file
162                                 utreeScores.push_back(userData[s]);
163                         }
164                         
165                         if (random) { 
166                                 vector<double> sums = weighted->getBranchLengthSums(T[i]); 
167                         
168                                 //calculate number of comparisons i.e. with groups A,B,C = AB, AC, BC = 3;
169                                 vector< vector<string> > namesOfGroupCombos;
170                                 for (int a=0; a<numGroups; a++) { 
171                                         for (int l = a+1; l < numGroups; l++) { 
172                                                 vector<string> groups; groups.push_back(globaldata->Groups[a]); groups.push_back(globaldata->Groups[l]);
173                                                 namesOfGroupCombos.push_back(groups);
174                                         }
175                                 }
176                         
177                                 #if defined (__APPLE__) || (__MACH__) || (linux) || (__linux)
178                                         if(processors != 1){
179                                                 int numPairs = namesOfGroupCombos.size();
180                                                 int numPairsPerProcessor = numPairs / processors;
181                                         
182                                                 for (int i = 0; i < processors; i++) {
183                                                         int startPos = i * numPairsPerProcessor;
184                                                         if(i == processors - 1){
185                                                                 numPairsPerProcessor = numPairs - i * numPairsPerProcessor;
186                                                         }
187                                                         lines.push_back(new linePair(startPos, numPairsPerProcessor));
188                                                 }
189                                         }
190                                 #endif
191
192                                 
193                                 //get scores for random trees
194                                 for (int j = 0; j < iters; j++) {
195                                         
196                                         #if defined (__APPLE__) || (__MACH__) || (linux) || (__linux)
197                                                 if(processors == 1){
198                                                         driver(T[i], randT, namesOfGroupCombos, 0, namesOfGroupCombos.size(), sums, rScores);
199                                                 }else{
200                                                         createProcesses(T[i], randT, namesOfGroupCombos, sums, rScores);
201                                                 }
202                                         #else
203                                                 driver(T[i], randT, namesOfGroupCombos, 0, namesOfGroupCombos.size(), sums, rScores);
204                                         #endif
205                                         
206                                         if (m->control_pressed) { delete output; outSum.close(); for (int i = 0; i < outputNames.size(); i++) { remove(outputNames[i].c_str());  } return 0; }
207                                         
208                                         //report progress
209                                         m->mothurOut("Iter: " + toString(j+1)); m->mothurOutEndLine();          
210                                 }
211
212                                 for (int i = 0; i < lines.size(); i++) {  delete lines[i];  }  lines.clear();
213                                 
214                                 //find the signifigance of the score for summary file
215                                 for (int f = 0; f < numComp; f++) {
216                                         //sort random scores
217                                         sort(rScores[f].begin(), rScores[f].end());
218                                         
219                                         //the index of the score higher than yours is returned 
220                                         //so if you have 1000 random trees the index returned is 100 
221                                         //then there are 900 trees with a score greater then you. 
222                                         //giving you a signifigance of 0.900
223                                         int index = findIndex(userData[f], f);    if (index == -1) { m->mothurOut("error in UnifracWeightedCommand"); m->mothurOutEndLine(); exit(1); } //error code
224                                         
225                                         //the signifigance is the number of trees with the users score or higher 
226                                         WScoreSig.push_back((iters-index)/(float)iters);
227                                 }
228                                 
229                                 //out << "Tree# " << i << endl;
230                                 calculateFreqsCumuls();
231                                 printWeightedFile();
232                                 
233                                 delete output;
234                         
235                         }
236                         
237                         //clear data
238                         rScores.clear();
239                         uScores.clear();
240                         validScores.clear();
241                 }
242                 
243                 
244                 if (m->control_pressed) { delete randT; outSum.close(); for (int i = 0; i < outputNames.size(); i++) {  remove(outputNames[i].c_str());  } return 0;  }
245                 
246                 printWSummaryFile();
247                 
248                 if (phylip) {   createPhylipFile();             }
249
250                 //clear out users groups
251                 globaldata->Groups.clear();
252                 
253                 delete randT;
254                 
255                 if (m->control_pressed) { 
256                         for (int i = 0; i < outputNames.size(); i++) {  remove(outputNames[i].c_str());  }
257                         return 0; 
258                 }
259                 
260                 m->mothurOut("It took " + toString(time(NULL) - start) + " secs to run unifrac.weighted."); m->mothurOutEndLine();
261                 
262                 m->mothurOutEndLine();
263                 m->mothurOut("Output File Names: "); m->mothurOutEndLine();
264                 for (int i = 0; i < outputNames.size(); i++) {  m->mothurOut(outputNames[i]); m->mothurOutEndLine();    }
265                 m->mothurOutEndLine();
266                 
267                 return 0;
268                 
269         }
270         catch(exception& e) {
271                 m->errorOut(e, "UnifracWeightedCommand", "execute");
272                 exit(1);
273         }
274 }
275 /**************************************************************************************************/
276
277 int UnifracWeightedCommand::createProcesses(Tree* t, Tree* randT, vector< vector<string> > namesOfGroupCombos, vector<double>& sums, vector< vector<double> >& scores) {
278         try {
279 #if defined (__APPLE__) || (__MACH__) || (linux) || (__linux)
280                 int process = 1;
281                 int num = 0;
282                 vector<int> processIDS;
283                 
284                 EstOutput results;
285                 
286                 //loop through and create all the processes you want
287                 while (process != processors) {
288                         int pid = fork();
289                         
290                         if (pid > 0) {
291                                 processIDS.push_back(pid);  //create map from line number to pid so you can append files in correct order later
292                                 process++;
293                         }else if (pid == 0){
294                                 driver(t, randT, namesOfGroupCombos, lines[process]->start, lines[process]->num, sums, scores);
295                         
296                                 //pass numSeqs to parent
297                                 ofstream out;
298                                 string tempFile = outputDir + toString(getpid()) + ".weightedcommand.results.temp";
299                                 m->openOutputFile(tempFile, out);
300                                 for (int i = lines[process]->start; i < (lines[process]->start + lines[process]->num); i++) {  out << scores[i][(scores[i].size()-1)] << '\t';  } out << endl;
301                                 out.close();
302                                 
303                                 exit(0);
304                         }else { m->mothurOut("unable to spawn the necessary processes."); m->mothurOutEndLine(); exit(0); }
305                 }
306                 
307                 driver(t, randT, namesOfGroupCombos, lines[0]->start, lines[0]->num, sums, scores);
308                 
309                 //force parent to wait until all the processes are done
310                 for (int i=0;i<(processors-1);i++) { 
311                         int temp = processIDS[i];
312                         wait(&temp);
313                 }
314         
315                 //get data created by processes
316                 for (int i=0;i<(processors-1);i++) { 
317                         ifstream in;
318                         string s = outputDir + toString(processIDS[i]) + ".weightedcommand.results.temp";
319                         m->openInputFile(s, in);
320                         
321                         double tempScore;
322                         for (int i = lines[process]->start; i < (lines[process]->start + lines[process]->num); i++) { in >> tempScore; scores[i].push_back(tempScore); }
323                         in.close();
324                         remove(s.c_str());
325                 }
326                 
327                 return 0;
328 #endif          
329         }
330         catch(exception& e) {
331                 m->errorOut(e, "UnifracWeightedCommand", "createProcesses");
332                 exit(1);
333         }
334 }
335
336 /**************************************************************************************************/
337 int UnifracWeightedCommand::driver(Tree* t, Tree* randT, vector< vector<string> > namesOfGroupCombos, int start, int num, vector<double>& sums, vector< vector<double> >& scores) { 
338  try {
339         
340                 for (int h = start; h < (start+num); h++) {
341         cout << "doing " << h << endl;  
342                         if (m->control_pressed) { return 0; }
343                 
344                         //initialize weighted score
345                         string groupA = namesOfGroupCombos[h][0]; 
346                         string groupB = namesOfGroupCombos[h][1];
347                         
348                         //copy T[i]'s info.
349                         randT->getCopy(t);
350                          
351                         //create a random tree with same topology as T[i], but different labels
352                         randT->assembleRandomUnifracTree(groupA, groupB);
353                         
354                         if (m->control_pressed) { delete randT;  return 0;  }
355
356
357                         //get wscore of random tree
358                         EstOutput randomData = weighted->getValues(randT, groupA, groupB, sums);
359                         
360                         if (m->control_pressed) { delete randT;  return 0;  }
361                                                                                 
362                         //save scores
363                         scores[h].push_back(randomData[0]);
364                 }
365                 
366                 return 0;
367
368         }
369         catch(exception& e) {
370                 m->errorOut(e, "UnifracWeightedCommand", "driver");
371                 exit(1);
372         }
373 }
374 /***********************************************************/
375 void UnifracWeightedCommand::printWeightedFile() {
376         try {
377                 vector<double> data;
378                 vector<string> tags;
379                 tags.push_back("Score"); tags.push_back("RandFreq"); tags.push_back("RandCumul");
380                 
381                 for(int a = 0; a < numComp; a++) {
382                         output->initFile(groupComb[a], tags);
383                         //print each line
384                         for (map<float,float>::iterator it = validScores.begin(); it != validScores.end(); it++) { 
385                                 data.push_back(it->first);  data.push_back(rScoreFreq[a][it->first]); data.push_back(rCumul[a][it->first]); 
386                                 output->output(data);
387                                 data.clear();
388                         } 
389                         output->resetFile();
390                 }
391         }
392         catch(exception& e) {
393                 m->errorOut(e, "UnifracWeightedCommand", "printWeightedFile");
394                 exit(1);
395         }
396 }
397
398
399 /***********************************************************/
400 void UnifracWeightedCommand::printWSummaryFile() {
401         try {
402                 //column headers
403                 outSum << "Tree#" << '\t' << "Groups" << '\t' << "WScore" << '\t' << "WSig" <<  endl;
404                 m->mothurOut("Tree#\tGroups\tWScore\tWSig"); m->mothurOutEndLine(); 
405                 
406                 //format output
407                 outSum.setf(ios::fixed, ios::floatfield); outSum.setf(ios::showpoint);
408                 
409                 //print each line
410                 int count = 0;
411                 for (int i = 0; i < T.size(); i++) { 
412                         for (int j = 0; j < numComp; j++) {
413                                 if (random) {
414                                         if (WScoreSig[count] > (1/(float)iters)) {
415                                                 outSum << setprecision(6) << i+1 << '\t' << groupComb[j] << '\t' << utreeScores[count] << '\t' << setprecision(itersString.length()) << WScoreSig[count] << endl; 
416                                                 cout << setprecision(6) << i+1 << '\t' << groupComb[j] << '\t' << utreeScores[count] << '\t' << setprecision(itersString.length()) << WScoreSig[count] << endl; 
417                                                 m->mothurOutJustToLog(toString(i+1) +"\t" + groupComb[j] +"\t" + toString(utreeScores[count]) +"\t" +  toString(WScoreSig[count])); m->mothurOutEndLine();  
418                                         }else{
419                                                 outSum << setprecision(6) << i+1 << '\t' << groupComb[j] << '\t' << utreeScores[count] << '\t' << setprecision(itersString.length()) << "<" << (1/float(iters)) << endl; 
420                                                 cout << setprecision(6) << i+1 << '\t' << groupComb[j] << '\t' << utreeScores[count] << '\t' << setprecision(itersString.length()) << "<" << (1/float(iters)) << endl; 
421                                                 m->mothurOutJustToLog(toString(i+1) +"\t" + groupComb[j] +"\t" + toString(utreeScores[count]) +"\t<" +  toString((1/float(iters)))); m->mothurOutEndLine();  
422                                         }
423                                 }else{
424                                         outSum << setprecision(6) << i+1 << '\t' << groupComb[j] << '\t' << utreeScores[count] << '\t' << "0.00" << endl; 
425                                         cout << setprecision(6) << i+1 << '\t' << groupComb[j] << '\t' << utreeScores[count] << '\t' << "0.00" << endl; 
426                                         m->mothurOutJustToLog(toString(i+1) +"\t" + groupComb[j] +"\t" + toString(utreeScores[count]) +"\t0.00"); m->mothurOutEndLine(); 
427                                 }
428                                 count++;
429                         }
430                 }
431                 outSum.close();
432         }
433         catch(exception& e) {
434                 m->errorOut(e, "UnifracWeightedCommand", "printWSummaryFile");
435                 exit(1);
436         }
437 }
438 /***********************************************************/
439 void UnifracWeightedCommand::createPhylipFile() {
440         try {
441                 int count = 0;
442                 //for each tree
443                 for (int i = 0; i < T.size(); i++) { 
444                 
445                         string phylipFileName = outputDir + m->getSimpleName(globaldata->getTreeFile())  + toString(i+1) + ".weighted.dist";
446                         outputNames.push_back(phylipFileName);
447                         ofstream out;
448                         m->openOutputFile(phylipFileName, out);
449                         
450                         //output numSeqs
451                         out << globaldata->Groups.size() << endl;
452                         
453                         //make matrix with scores in it
454                         vector< vector<float> > dists;  dists.resize(globaldata->Groups.size());
455                         for (int i = 0; i < globaldata->Groups.size(); i++) {
456                                 dists[i].resize(globaldata->Groups.size(), 0.0);
457                         }
458                         
459                         //flip it so you can print it
460                         for (int r=0; r<globaldata->Groups.size(); r++) { 
461                                 for (int l = r+1; l < globaldata->Groups.size(); l++) {
462                                         dists[r][l] = utreeScores[count];
463                                         dists[l][r] = utreeScores[count];
464                                         count++;
465                                 }
466                         }
467
468                         //output to file
469                         for (int r=0; r<globaldata->Groups.size(); r++) { 
470                                 //output name
471                                 string name = globaldata->Groups[r];
472                                 if (name.length() < 10) { //pad with spaces to make compatible
473                                         while (name.length() < 10) {  name += " ";  }
474                                 }
475                                 out << name << '\t';
476                                 
477                                 //output distances
478                                 for (int l = 0; l < r; l++) {   out  << dists[r][l] << '\t';  }
479                                 out << endl;
480                         }
481                         out.close();
482                 }
483         }
484         catch(exception& e) {
485                 m->errorOut(e, "UnifracWeightedCommand", "createPhylipFile");
486                 exit(1);
487         }
488 }
489 /***********************************************************/
490 int UnifracWeightedCommand::findIndex(float score, int index) {
491         try{
492                 for (int i = 0; i < rScores[index].size(); i++) {
493                         if (rScores[index][i] >= score) {       return i;       }
494                 }
495                 return rScores[index].size();
496         }
497         catch(exception& e) {
498                 m->errorOut(e, "UnifracWeightedCommand", "findIndex");
499                 exit(1);
500         }
501 }
502
503 /***********************************************************/
504
505 void UnifracWeightedCommand::calculateFreqsCumuls() {
506         try {
507                 //clear out old tree values
508                 rScoreFreq.clear();
509                 rScoreFreq.resize(numComp);
510                 rCumul.clear();
511                 rCumul.resize(numComp);
512                 validScores.clear();
513         
514                 //calculate frequency
515                 for (int f = 0; f < numComp; f++) {
516                         for (int i = 0; i < rScores[f].size(); i++) { //looks like 0,0,1,1,1,2,4,7...  you want to make a map that say rScoreFreq[0] = 2, rScoreFreq[1] = 3...
517                                 validScores[rScores[f][i]] = rScores[f][i];
518                                 map<float,float>::iterator it = rScoreFreq[f].find(rScores[f][i]);
519                                 if (it != rScoreFreq[f].end()) {
520                                         rScoreFreq[f][rScores[f][i]]++;
521                                 }else{
522                                         rScoreFreq[f][rScores[f][i]] = 1;
523                                 }
524                         }
525                 }
526                 
527                 //calculate rcumul
528                 for(int a = 0; a < numComp; a++) {
529                         float rcumul = 1.0000;
530                         //this loop fills the cumulative maps and put 0.0000 in the score freq map to make it easier to print.
531                         for (map<float,float>::iterator it = validScores.begin(); it != validScores.end(); it++) {
532                                 //make rscoreFreq map and rCumul
533                                 map<float,float>::iterator it2 = rScoreFreq[a].find(it->first);
534                                 rCumul[a][it->first] = rcumul;
535                                 //get percentage of random trees with that info
536                                 if (it2 != rScoreFreq[a].end()) {  rScoreFreq[a][it->first] /= iters; rcumul-= it2->second;  }
537                                 else { rScoreFreq[a][it->first] = 0.0000; } //no random trees with that score
538                         }
539                 }
540
541         }
542         catch(exception& e) {
543                 m->errorOut(e, "UnifracWeightedCommand", "calculateFreqsCums");
544                 exit(1);
545         }
546 }
547
548 /***********************************************************/
549
550
551
552
553