]> git.donarmstrong.com Git - mothur.git/blob - unifracunweightedcommand.cpp
7836eb682f19d444ae2ffb7f82fe538efdb7d933
[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                                 //we need a different getValues because when we swap the labels we only want to swap those in each pairwise comparison
178                                 randomData = unweighted->getValues(T[i], "", "");
179                                 
180                                 if (m->control_pressed) { 
181                                         if (random) { delete output;  }
182                                         outSum.close();
183                                         for (int i = 0; i < outputNames.size(); i++) {  remove(outputNames[i].c_str());  }
184                                         return 0; 
185                                 }
186                         
187                                 for(int k = 0; k < numComp; k++) {      
188                                         //add trees unweighted score to map of scores
189                                         map<float,float>::iterator it = rscoreFreq[k].find(randomData[k]);
190                                         if (it != rscoreFreq[k].end()) {//already have that score
191                                                 rscoreFreq[k][randomData[k]]++;
192                                         }else{//first time we have seen this score
193                                                 rscoreFreq[k][randomData[k]] = 1;
194                                         }
195                                 
196                                         //add randoms score to validscores
197                                         validScores[randomData[k]] = randomData[k];
198                                 }
199                         }
200         
201                         for(int a = 0; a < numComp; a++) {
202                                 float rcumul = 1.0000;
203                                 
204                                 if (random) {
205                                         //this loop fills the cumulative maps and put 0.0000 in the score freq map to make it easier to print.
206                                         for (map<float,float>::iterator it = validScores.begin(); it != validScores.end(); it++) { 
207                                                 //make rscoreFreq map and rCumul
208                                                 map<float,float>::iterator it2 = rscoreFreq[a].find(it->first);
209                                                 rCumul[a][it->first] = rcumul;
210                                                 //get percentage of random trees with that info
211                                                 if (it2 != rscoreFreq[a].end()) {  rscoreFreq[a][it->first] /= iters; rcumul-= it2->second;  }
212                                                 else { rscoreFreq[a][it->first] = 0.0000; } //no random trees with that score
213                                         }
214                                         UWScoreSig[a].push_back(rCumul[a][userData[a]]);
215                                 }else           {       UWScoreSig[a].push_back(0.0);                                           }
216         
217                         }
218                         
219                         
220                         if (m->control_pressed) { 
221                                 if (random) { delete output;  }
222                                 outSum.close();
223                                 for (int i = 0; i < outputNames.size(); i++) {  remove(outputNames[i].c_str());  }
224                                 return 0; 
225                         }
226                         
227                         //print output files
228                         printUWSummaryFile(i);
229                         if (random)  {  printUnweightedFile();  delete output;  }
230                         if (phylip) {   createPhylipFile(i);            }
231                         
232                         rscoreFreq.clear(); 
233                         rCumul.clear();  
234                         validScores.clear(); 
235                         utreeScores.clear();  
236                         UWScoreSig.clear(); 
237                 }
238                 
239
240                 outSum.close();
241                 
242                 if (m->control_pressed) { for (int i = 0; i < outputNames.size(); i++) {        remove(outputNames[i].c_str());  }      return 0; }
243                 
244                 m->mothurOut("It took " + toString(time(NULL) - start) + " secs to run unifrac.unweighted."); m->mothurOutEndLine();
245                 
246                 m->mothurOutEndLine();
247                 m->mothurOut("Output File Names: "); m->mothurOutEndLine();
248                 for (int i = 0; i < outputNames.size(); i++) {  m->mothurOut(outputNames[i]); m->mothurOutEndLine();    }
249                 m->mothurOutEndLine();
250                 
251                 return 0;
252                 
253         }
254         catch(exception& e) {
255                 m->errorOut(e, "UnifracUnweightedCommand", "execute");
256                 exit(1);
257         }
258 }
259 /***********************************************************/
260 void UnifracUnweightedCommand::printUnweightedFile() {
261         try {
262                 vector<double> data;
263                 vector<string> tags;
264                 
265                 tags.push_back("Score");
266                 tags.push_back("RandFreq"); tags.push_back("RandCumul");
267                         
268                 for(int a = 0; a < numComp; a++) {
269                         output->initFile(groupComb[a], tags);
270                         //print each line
271                         for (map<float,float>::iterator it = validScores.begin(); it != validScores.end(); it++) { 
272                                 data.push_back(it->first);  data.push_back(rscoreFreq[a][it->first]); data.push_back(rCumul[a][it->first]);                                             
273                                 output->output(data);
274                                 data.clear();
275                         } 
276                         output->resetFile();
277                 }
278         }
279         catch(exception& e) {
280                 m->errorOut(e, "UnifracUnweightedCommand", "printUnweightedFile");
281                 exit(1);
282         }
283 }
284
285 /***********************************************************/
286 void UnifracUnweightedCommand::printUWSummaryFile(int i) {
287         try {
288                                 
289                 //format output
290                 outSum.setf(ios::fixed, ios::floatfield); outSum.setf(ios::showpoint);
291                         
292                 //print each line
293
294                 for(int a = 0; a < numComp; a++) {
295                         outSum << i+1 << '\t';
296                         m->mothurOut(toString(i+1) + "\t");
297                         
298                         if (random) {
299                                 if (UWScoreSig[a][0] > (1/(float)iters)) {
300                                         outSum << setprecision(6) << groupComb[a]  << '\t' << utreeScores[a][0] << '\t' << setprecision(itersString.length()) << UWScoreSig[a][0] << endl;
301                                         cout << setprecision(6)  << groupComb[a]  << '\t' << utreeScores[a][0] << '\t' << setprecision(itersString.length()) << UWScoreSig[a][0] << endl; 
302                                         m->mothurOutJustToLog(groupComb[a]  + "\t" + toString(utreeScores[a][0])  + "\t" + toString(UWScoreSig[a][0])); m->mothurOutEndLine(); 
303                                 }else {
304                                         outSum << setprecision(6) << groupComb[a]  << '\t' << utreeScores[a][0] << '\t' << setprecision(itersString.length()) << "<" << (1/float(iters)) << endl;
305                                         cout << setprecision(6)  << groupComb[a]  << '\t' << utreeScores[a][0] << '\t' << setprecision(itersString.length()) << "<" << (1/float(iters)) << endl; 
306                                         m->mothurOutJustToLog(groupComb[a]  + "\t" + toString(utreeScores[a][0])  + "\t<" + toString((1/float(iters)))); m->mothurOutEndLine();
307                                 }
308                         }else{
309                                 outSum << setprecision(6) << groupComb[a]  << '\t' << utreeScores[a][0] << '\t' << "0.00" << endl;
310                                 cout << setprecision(6)  << groupComb[a]  << '\t' << utreeScores[a][0] << '\t' << "0.00" << endl; 
311                                 m->mothurOutJustToLog(groupComb[a]  + "\t" + toString(utreeScores[a][0])  + "\t0.00"); m->mothurOutEndLine();
312                         }
313                 }
314                 
315         }
316         catch(exception& e) {
317                 m->errorOut(e, "UnifracUnweightedCommand", "printUWSummaryFile");
318                 exit(1);
319         }
320 }
321 /***********************************************************/
322 void UnifracUnweightedCommand::createPhylipFile(int i) {
323         try {
324                 string phylipFileName = outputDir + m->getSimpleName(globaldata->getTreeFile())  + toString(i+1) + ".unweighted.dist";
325                 outputNames.push_back(phylipFileName);
326                 
327                 ofstream out;
328                 m->openOutputFile(phylipFileName, out);
329                         
330                 //output numSeqs
331                 out << globaldata->Groups.size() << endl;
332                         
333                 //make matrix with scores in it
334                 vector< vector<float> > dists;  dists.resize(globaldata->Groups.size());
335                 for (int i = 0; i < globaldata->Groups.size(); i++) {
336                         dists[i].resize(globaldata->Groups.size(), 0.0);
337                 }
338                 
339                 //flip it so you can print it
340                 int count = 0;
341                 for (int r=0; r<globaldata->Groups.size(); r++) { 
342                         for (int l = r+1; l < globaldata->Groups.size(); l++) {
343                                 dists[r][l] = utreeScores[count][0];
344                                 dists[l][r] = utreeScores[count][0];
345                                 count++;
346                         }
347                 }
348                 
349                 //output to file
350                 for (int r=0; r<globaldata->Groups.size(); r++) { 
351                         //output name
352                         string name = globaldata->Groups[r];
353                         if (name.length() < 10) { //pad with spaces to make compatible
354                                 while (name.length() < 10) {  name += " ";  }
355                         }
356                         out << name << '\t';
357                         
358                         //output distances
359                         for (int l = 0; l < r; l++) {   out  << dists[r][l] << '\t';  }
360                         out << endl;
361                 }
362                 out.close();
363         }
364         catch(exception& e) {
365                 m->errorOut(e, "UnifracUnweightedCommand", "createPhylipFile");
366                 exit(1);
367         }
368 }
369 /***********************************************************/
370
371
372