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