]> git.donarmstrong.com Git - mothur.git/blob - unifracunweightedcommand.cpp
unifrac parallelization done, changed dist.seqs output=square to calc all distance...
[mothur.git] / unifracunweightedcommand.cpp
1 /*
2  *  unifracunweightedcommand.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 "unifracunweightedcommand.h"
11
12 /***********************************************************/
13 UnifracUnweightedCommand::UnifracUnweightedCommand(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.unweighted 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                         //if user selects distance = true and no groups it won't calc the pairwise
70                         if ((phylip) && (Groups.size() == 0)) {
71                                 groups = "all";
72                                 m->splitAtDash(groups, Groups);
73                                 globaldata->Groups = Groups;
74                         }
75                 
76                         if (abort == false) {
77                                 T = globaldata->gTree;
78                                 tmap = globaldata->gTreemap;
79                                 sumFile = outputDir + m->getSimpleName(globaldata->getTreeFile()) + ".uwsummary";
80                                 outputNames.push_back(sumFile);
81                                 m->openOutputFile(sumFile, outSum);
82                                 
83                                 util = new SharedUtil();
84                                 util->setGroups(globaldata->Groups, tmap->namesOfGroups, allGroups, numGroups, "unweighted");   //sets the groups the user wants to analyze
85                                 util->getCombos(groupComb, globaldata->Groups, numComp);
86                                 
87                                 if (numGroups == 1) { numComp++; groupComb.push_back(allGroups); }
88                                 
89                                 unweighted = new Unweighted(tmap);
90                                 
91                         }
92                         
93                 }
94                 
95         }
96         catch(exception& e) {
97                 m->errorOut(e, "UnifracUnweightedCommand", "UnifracUnweightedCommand");
98                 exit(1);
99         }
100 }
101
102 //**********************************************************************************************************************
103
104 void UnifracUnweightedCommand::help(){
105         try {
106                 m->mothurOut("The unifrac.unweighted command can only be executed after a successful read.tree command.\n");
107                 m->mothurOut("The unifrac.unweighted command parameters are groups, iters, distance and random.  No parameters are required.\n");
108                 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 1 valid group.\n");
109                 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");
110                 m->mothurOut("The distance parameter allows you to create a distance file from the results. The default is false.\n");
111                 m->mothurOut("The random parameter allows you to shut off the comparison to random trees. The default is false, meaning compare don't your trees with randomly generated trees.\n");
112                 m->mothurOut("The unifrac.unweighted command should be in the following format: unifrac.unweighted(groups=yourGroups, iters=yourIters).\n");
113                 m->mothurOut("Example unifrac.unweighted(groups=A-B-C, iters=500).\n");
114                 m->mothurOut("The default value for groups is all the groups in your groupfile, and iters is 1000.\n");
115                 m->mothurOut("The unifrac.unweighted command output two files: .unweighted and .uwsummary their descriptions are in the manual.\n");
116                 m->mothurOut("Note: No spaces between parameter labels (i.e. groups), '=' and parameters (i.e.yourGroups).\n\n");
117         }
118         catch(exception& e) {
119                 m->errorOut(e, "UnifracUnweightedCommand", "help");
120                 exit(1);
121         }
122 }
123
124
125 /***********************************************************/
126 int UnifracUnweightedCommand::execute() {
127         try {
128                 
129                 if (abort == true) { return 0; }
130                 
131                 int start = time(NULL);
132                 
133                 userData.resize(numComp,0);  //data[0] = unweightedscore 
134                 randomData.resize(numComp,0); //data[0] = unweightedscore
135                 //create new tree with same num nodes and leaves as users
136                 
137                 outSum << "Tree#" << '\t' << "Groups" << '\t'  <<  "UWScore" <<'\t' << "UWSig" <<  endl;
138                 m->mothurOut("Tree#\tGroups\tUWScore\tUWSig"); m->mothurOutEndLine();
139                 
140                 //get pscores for users trees
141                 for (int i = 0; i < T.size(); i++) {
142                         if (m->control_pressed) { 
143                                 outSum.close();
144                                 for (int i = 0; i < outputNames.size(); i++) {  remove(outputNames[i].c_str());  }
145                                 return 0; 
146                         }
147                         
148                         counter = 0;
149                         
150                         if (random)  {  
151                                 output = new ColumnFile(outputDir + m->getSimpleName(globaldata->getTreeFile())  + toString(i+1) + ".unweighted", itersString);
152                                 outputNames.push_back(outputDir + m->getSimpleName(globaldata->getTreeFile())  + toString(i+1) + ".unweighted");
153                         }
154                         
155                         
156                         //get unweighted for users tree
157                         rscoreFreq.resize(numComp);  
158                         rCumul.resize(numComp);  
159                         utreeScores.resize(numComp);  
160                         UWScoreSig.resize(numComp); 
161
162                         userData = unweighted->getValues(T[i], processors, outputDir);  //userData[0] = unweightedscore
163                 
164                         if (m->control_pressed) { if (random) { delete output;  } outSum.close();  for (int i = 0; i < outputNames.size(); i++) {       remove(outputNames[i].c_str());  }return 0; }
165                         
166                         //output scores for each combination
167                         for(int k = 0; k < numComp; k++) {
168                                 //saves users score
169                                 utreeScores[k].push_back(userData[k]);
170                                 
171                                 //add users score to validscores
172                                 validScores[userData[k]] = userData[k];
173                         }
174                 
175                         //get unweighted scores for random trees - if random is false iters = 0
176                         for (int j = 0; j < iters; j++) {
177                 
178                                 //we need a different getValues because when we swap the labels we only want to swap those in each pairwise comparison
179                                 randomData = unweighted->getValues(T[i], "", "", processors, outputDir);
180                                 
181                                 if (m->control_pressed) { if (random) { delete output;  } outSum.close(); for (int i = 0; i < outputNames.size(); i++) {        remove(outputNames[i].c_str());  } return 0; }
182                         
183                                 for(int k = 0; k < numComp; k++) {      
184                                         //add trees unweighted score to map of scores
185                                         map<float,float>::iterator it = rscoreFreq[k].find(randomData[k]);
186                                         if (it != rscoreFreq[k].end()) {//already have that score
187                                                 rscoreFreq[k][randomData[k]]++;
188                                         }else{//first time we have seen this score
189                                                 rscoreFreq[k][randomData[k]] = 1;
190                                         }
191                                 
192                                         //add randoms score to validscores
193                                         validScores[randomData[k]] = randomData[k];
194                                 }
195                                 
196                                 //report progress
197                                 m->mothurOut("Iter: " + toString(j+1)); m->mothurOutEndLine();  
198                         }
199         
200                         for(int a = 0; a < numComp; a++) {
201                                 float rcumul = 1.0000;
202                                 
203                                 if (random) {
204                                         //this loop fills the cumulative maps and put 0.0000 in the score freq map to make it easier to print.
205                                         for (map<float,float>::iterator it = validScores.begin(); it != validScores.end(); it++) { 
206                                                 //make rscoreFreq map and rCumul
207                                                 map<float,float>::iterator it2 = rscoreFreq[a].find(it->first);
208                                                 rCumul[a][it->first] = rcumul;
209                                                 //get percentage of random trees with that info
210                                                 if (it2 != rscoreFreq[a].end()) {  rscoreFreq[a][it->first] /= iters; rcumul-= it2->second;  }
211                                                 else { rscoreFreq[a][it->first] = 0.0000; } //no random trees with that score
212                                         }
213                                         UWScoreSig[a].push_back(rCumul[a][userData[a]]);
214                                 }else           {       UWScoreSig[a].push_back(0.0);                                           }
215         
216                         }
217                         
218                         if (m->control_pressed) { if (random) { delete output;  } outSum.close(); for (int i = 0; i < outputNames.size(); i++) {        remove(outputNames[i].c_str());  } return 0;  }
219                         
220                         //print output files
221                         printUWSummaryFile(i);
222                         if (random)  {  printUnweightedFile();  delete output;  }
223                         if (phylip) {   createPhylipFile(i);            }
224                         
225                         rscoreFreq.clear(); 
226                         rCumul.clear();  
227                         validScores.clear(); 
228                         utreeScores.clear();  
229                         UWScoreSig.clear(); 
230                 }
231                 
232
233                 outSum.close();
234                 
235                 if (m->control_pressed) { for (int i = 0; i < outputNames.size(); i++) {        remove(outputNames[i].c_str());  }      return 0; }
236                 
237                 m->mothurOut("It took " + toString(time(NULL) - start) + " secs to run unifrac.unweighted."); m->mothurOutEndLine();
238                 
239                 m->mothurOutEndLine();
240                 m->mothurOut("Output File Names: "); m->mothurOutEndLine();
241                 for (int i = 0; i < outputNames.size(); i++) {  m->mothurOut(outputNames[i]); m->mothurOutEndLine();    }
242                 m->mothurOutEndLine();
243                 
244                 return 0;
245                 
246         }
247         catch(exception& e) {
248                 m->errorOut(e, "UnifracUnweightedCommand", "execute");
249                 exit(1);
250         }
251 }
252 /***********************************************************/
253 void UnifracUnweightedCommand::printUnweightedFile() {
254         try {
255                 vector<double> data;
256                 vector<string> tags;
257                 
258                 tags.push_back("Score");
259                 tags.push_back("RandFreq"); tags.push_back("RandCumul");
260                         
261                 for(int a = 0; a < numComp; a++) {
262                         output->initFile(groupComb[a], tags);
263                         //print each line
264                         for (map<float,float>::iterator it = validScores.begin(); it != validScores.end(); it++) { 
265                                 data.push_back(it->first);  data.push_back(rscoreFreq[a][it->first]); data.push_back(rCumul[a][it->first]);                                             
266                                 output->output(data);
267                                 data.clear();
268                         } 
269                         output->resetFile();
270                 }
271         }
272         catch(exception& e) {
273                 m->errorOut(e, "UnifracUnweightedCommand", "printUnweightedFile");
274                 exit(1);
275         }
276 }
277
278 /***********************************************************/
279 void UnifracUnweightedCommand::printUWSummaryFile(int i) {
280         try {
281                                 
282                 //format output
283                 outSum.setf(ios::fixed, ios::floatfield); outSum.setf(ios::showpoint);
284                         
285                 //print each line
286
287                 for(int a = 0; a < numComp; a++) {
288                         outSum << i+1 << '\t';
289                         m->mothurOut(toString(i+1) + "\t");
290                         
291                         if (random) {
292                                 if (UWScoreSig[a][0] > (1/(float)iters)) {
293                                         outSum << setprecision(6) << groupComb[a]  << '\t' << utreeScores[a][0] << '\t' << setprecision(itersString.length()) << UWScoreSig[a][0] << endl;
294                                         cout << setprecision(6)  << groupComb[a]  << '\t' << utreeScores[a][0] << '\t' << setprecision(itersString.length()) << UWScoreSig[a][0] << endl; 
295                                         m->mothurOutJustToLog(groupComb[a]  + "\t" + toString(utreeScores[a][0])  + "\t" + toString(UWScoreSig[a][0])+ "\n"); 
296                                 }else {
297                                         outSum << setprecision(6) << groupComb[a]  << '\t' << utreeScores[a][0] << '\t' << setprecision(itersString.length()) << "<" << (1/float(iters)) << endl;
298                                         cout << setprecision(6)  << groupComb[a]  << '\t' << utreeScores[a][0] << '\t' << setprecision(itersString.length()) << "<" << (1/float(iters)) << endl; 
299                                         m->mothurOutJustToLog(groupComb[a]  + "\t" + toString(utreeScores[a][0])  + "\t<" + toString((1/float(iters))) + "\n"); 
300                                 }
301                         }else{
302                                 outSum << setprecision(6) << groupComb[a]  << '\t' << utreeScores[a][0] << '\t' << "0.00" << endl;
303                                 cout << setprecision(6)  << groupComb[a]  << '\t' << utreeScores[a][0] << '\t' << "0.00" << endl; 
304                                 m->mothurOutJustToLog(groupComb[a]  + "\t" + toString(utreeScores[a][0])  + "\t0.00\n");
305                         }
306                 }
307                 
308         }
309         catch(exception& e) {
310                 m->errorOut(e, "UnifracUnweightedCommand", "printUWSummaryFile");
311                 exit(1);
312         }
313 }
314 /***********************************************************/
315 void UnifracUnweightedCommand::createPhylipFile(int i) {
316         try {
317                 string phylipFileName = outputDir + m->getSimpleName(globaldata->getTreeFile())  + toString(i+1) + ".unweighted.dist";
318                 outputNames.push_back(phylipFileName);
319                 
320                 ofstream out;
321                 m->openOutputFile(phylipFileName, out);
322                         
323                 //output numSeqs
324                 out << globaldata->Groups.size() << endl;
325                         
326                 //make matrix with scores in it
327                 vector< vector<float> > dists;  dists.resize(globaldata->Groups.size());
328                 for (int i = 0; i < globaldata->Groups.size(); i++) {
329                         dists[i].resize(globaldata->Groups.size(), 0.0);
330                 }
331                 
332                 //flip it so you can print it
333                 int count = 0;
334                 for (int r=0; r<globaldata->Groups.size(); r++) { 
335                         for (int l = r+1; l < globaldata->Groups.size(); l++) {
336                                 dists[r][l] = utreeScores[count][0];
337                                 dists[l][r] = utreeScores[count][0];
338                                 count++;
339                         }
340                 }
341                 
342                 //output to file
343                 for (int r=0; r<globaldata->Groups.size(); r++) { 
344                         //output name
345                         string name = globaldata->Groups[r];
346                         if (name.length() < 10) { //pad with spaces to make compatible
347                                 while (name.length() < 10) {  name += " ";  }
348                         }
349                         out << name << '\t';
350                         
351                         //output distances
352                         for (int l = 0; l < r; l++) {   out  << dists[r][l] << '\t';  }
353                         out << endl;
354                 }
355                 out.close();
356         }
357         catch(exception& e) {
358                 m->errorOut(e, "UnifracUnweightedCommand", "createPhylipFile");
359                 exit(1);
360         }
361 }
362 /***********************************************************/
363
364
365