]> git.donarmstrong.com Git - mothur.git/blob - unifracunweightedcommand.cpp
fixed bug in read.tree
[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() {
14         try {
15                 globaldata = GlobalData::getInstance();
16                 
17                 T = globaldata->gTree;
18                 tmap = globaldata->gTreemap;
19                 sumFile = globaldata->getTreeFile() + ".uwsummary";
20                 openOutputFile(sumFile, outSum);
21
22                 setGroups(); //sets users groups to analyze
23                 convert(globaldata->getIters(), iters);  //how many random trees to generate
24                 unweighted = new Unweighted(tmap);
25
26         }
27         catch(exception& e) {
28                 cout << "Standard Error: " << e.what() << " has occurred in the UnifracUnweightedCommand class Function UnifracUnweightedCommand. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
29                 exit(1);
30         }
31         catch(...) {
32                 cout << "An unknown error has occurred in the UnifracUnweightedCommand class function UnifracUnweightedCommand. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
33                 exit(1);
34         }
35 }
36 /***********************************************************/
37 int UnifracUnweightedCommand::execute() {
38         try {
39         
40                 userData.resize(numComp,0);  //data[0] = unweightedscore 
41                 randomData.resize(numComp,0); //data[0] = unweightedscore
42                 //create new tree with same num nodes and leaves as users
43                 
44                 outSum << "Tree#" << '\t' << "Groups" << '\t'  <<  "UWScore" <<'\t' << "UWSig" <<  endl;
45                 cout << "Tree#" << '\t' << "Groups" << '\t'  <<  "UWScore" << '\t' << "UWSig" <<  endl;
46                 
47                 //get pscores for users trees
48                 for (int i = 0; i < T.size(); i++) {
49                         counter = 0;
50                         unweightedFile = globaldata->getTreeFile()  + toString(i+1) + ".unweighted";
51                         unweightedFileout = globaldata->getTreeFile() + "temp." + toString(i+1) + ".unweighted";
52                         
53                         outSum << i+1 << '\t';
54                         cout << i+1 << '\t';
55                         
56                         //get unweighted for users tree
57                         rscoreFreq.resize(numComp);  
58                         rCumul.resize(numComp);  
59                         utreeScores.resize(numComp);  
60                         UWScoreSig.resize(numComp); 
61
62                         userData = unweighted->getValues(T[i]);  //userData[0] = unweightedscore
63                         
64                         //output scores for each combination
65                         for(int k = 0; k < numComp; k++) {
66                                 //saves users score
67                                 utreeScores[k].push_back(userData[k]);
68
69                         }
70                         
71                         //get unweighted scores for random trees
72                         for (int j = 0; j < iters; j++) {
73                                 //we need a different getValues because when we swap the labels we only want to swap those in each parwise comparison
74                                 randomData = unweighted->getValues(T[i], "", "");
75                                 
76                                 for(int k = 0; k < numComp; k++) {      
77                                         //add trees unweighted score to map of scores
78                                         it2 = rscoreFreq[k].find(randomData[k]);
79                                         if (it2 != rscoreFreq[k].end()) {//already have that score
80                                                 rscoreFreq[k][randomData[k]]++;
81                                         }else{//first time we have seen this score
82                                                 rscoreFreq[k][randomData[k]] = 1;
83                                         }
84                                 
85                                         //add randoms score to validscores
86                                         validScores[randomData[k]] = randomData[k];
87                                 }
88                         }
89                 
90                 for(int a = 0; a < numComp; a++) {
91                         float rcumul = 1.0000;
92                         //this loop fills the cumulative maps and put 0.0000 in the score freq map to make it easier to print.
93                         for (it = validScores.begin(); it != validScores.end(); it++) { 
94                                 //make rscoreFreq map and rCumul
95                                 it2 = rscoreFreq[a].find(it->first);
96                                 rCumul[a][it->first] = rcumul;
97                                 //get percentage of random trees with that info
98                                 if (it2 != rscoreFreq[a].end()) {  rscoreFreq[a][it->first] /= iters; rcumul-= it2->second;  }
99                                 else { rscoreFreq[a][it->first] = 0.0000; } //no random trees with that score
100                         }
101                         UWScoreSig[a].push_back(rCumul[a][userData[a]]);
102                 }
103                 
104                 printUnweightedFile();
105                 printUWSummaryFile();
106                 
107                 rscoreFreq.clear(); 
108                 rCumul.clear();  
109                 validScores.clear(); 
110                 utreeScores.clear();  
111                 UWScoreSig.clear(); 
112         }
113                 //reset groups parameter
114                 globaldata->Groups.clear(); globaldata->setGroups("");
115                 outSum.close();
116                 
117                 return 0;
118                 
119         }
120         catch(exception& e) {
121                 cout << "Standard Error: " << e.what() << " has occurred in the UnifracUnweightedCommand class Function execute. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
122                 exit(1);
123         }
124         catch(...) {
125                 cout << "An unknown error has occurred in the UnifracUnweightedCommand class function execute. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
126                 exit(1);
127         }
128 }
129 /***********************************************************/
130 void UnifracUnweightedCommand::printUnweightedFile() {
131         try {
132                 vector<double> data;
133                 
134                 for(int a = 0; a < numComp; a++) {
135                         initFile(groupComb[a]);
136                         //print each line
137                         for (it = validScores.begin(); it != validScores.end(); it++) { 
138                                 data.push_back(it->first);  data.push_back(rscoreFreq[a][it->first]); data.push_back(rCumul[a][it->first]); 
139                                 output(data);
140                                 data.clear();
141                         } 
142                         resetFile();
143                 }
144                 
145                 out.close();
146                 inFile.close();
147                 remove(unweightedFileout.c_str());
148                 
149         }
150         catch(exception& e) {
151                 cout << "Standard Error: " << e.what() << " has occurred in the UnifracUnweightedCommand class Function printUnweightedFile. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
152                 exit(1);
153         }
154         catch(...) {
155                 cout << "An unknown error has occurred in the UnifracUnweightedCommand class function printUnweightedFile. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
156                 exit(1);
157         }
158 }
159
160 /***********************************************************/
161 void UnifracUnweightedCommand::printUWSummaryFile() {
162         try {
163                                 
164                 //format output
165                 outSum.setf(ios::fixed, ios::floatfield); outSum.setf(ios::showpoint);
166                         
167                 //print each line
168
169                 for(int a = 0; a < numComp; a++) {
170                         if (UWScoreSig[a][0] > (1/(float)iters)) {
171                                 outSum << setprecision(6) << groupComb[a] << '\t' << '\t' << utreeScores[a][0] << '\t' << setprecision(globaldata->getIters().length()) << UWScoreSig[a][0] << endl;
172                                 cout << setprecision(6)  << groupComb[a] << '\t' << '\t' << utreeScores[a][0] << '\t' << setprecision(globaldata->getIters().length()) << UWScoreSig[a][0] << endl; 
173                         }else {
174                                 outSum << setprecision(6) << groupComb[a] << '\t' << '\t' << utreeScores[a][0] << '\t' << setprecision(globaldata->getIters().length()) << "<" << (1/float(iters)) << endl;
175                                 cout << setprecision(6)  << groupComb[a] << '\t' << '\t' << utreeScores[a][0] << '\t' << setprecision(globaldata->getIters().length()) << "<" << (1/float(iters)) << endl; 
176                         }
177                 }
178                 
179         }
180         catch(exception& e) {
181                 cout << "Standard Error: " << e.what() << " has occurred in the UnifracUnweightedCommand class Function printUWSummaryFile. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
182                 exit(1);
183         }
184         catch(...) {
185                 cout << "An unknown error has occurred in the UnifracUnweightedCommand class function printUWSummaryFile. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
186                 exit(1);
187         }
188 }
189 /***********************************************************/
190
191 void UnifracUnweightedCommand::setGroups() {
192         try {
193                 string allGroups = "";
194                 numGroups = 0;
195                 //if the user has not entered specific groups to analyze then do them all
196                 if (globaldata->Groups.size() != 0) {
197                         if (globaldata->Groups[0] != "all") {
198                                 //check that groups are valid
199                                 for (int i = 0; i < globaldata->Groups.size(); i++) {
200                                         if (tmap->isValidGroup(globaldata->Groups[i]) != true) {
201                                                 cout << globaldata->Groups[i] << " is not a valid group, and will be disregarded." << endl;
202                                                 // erase the invalid group from globaldata->Groups
203                                                 globaldata->Groups.erase(globaldata->Groups.begin()+i);
204                                         }
205                                 }
206                         
207                                 //if the user only entered invalid groups
208                                 if (globaldata->Groups.size() == 0) { 
209                                         cout << "When using the groups parameter you must have at least 1 valid group. I will run the command using all the groups in your groupfile." << endl; 
210                                         for (int i = 0; i < tmap->namesOfGroups.size(); i++) {
211                                                 globaldata->Groups.push_back(tmap->namesOfGroups[i]);
212                                                 numGroups++;
213                                                 allGroups += tmap->namesOfGroups[i] + "-";
214                                         }
215                                         allGroups = allGroups.substr(0, allGroups.length()-1);
216                                 }else {
217                                         for (int i = 0; i < globaldata->Groups.size(); i++) {
218                                                 allGroups += globaldata->Groups[i] + "-";
219                                                 numGroups++;
220                                         }
221                                         allGroups = allGroups.substr(0, allGroups.length()-1);
222                                 }
223                         }else{//user has enter "all" and wants the default groups
224                                 globaldata->Groups.clear();
225                                 for (int i = 0; i < tmap->namesOfGroups.size(); i++) {
226                                         globaldata->Groups.push_back(tmap->namesOfGroups[i]);
227                                         numGroups++;
228                                         allGroups += tmap->namesOfGroups[i] + "-";
229                                 }
230                                 allGroups = allGroups.substr(0, allGroups.length()-1);
231                                 globaldata->setGroups("");
232                         }
233                 }else {
234                         for (int i = 0; i < tmap->namesOfGroups.size(); i++) {
235                                 allGroups += tmap->namesOfGroups[i] + "-";
236                         }
237                         allGroups = allGroups.substr(0, allGroups.length()-1);
238                         numGroups = 1;
239                 }
240                 
241                 //calculate number of comparsions
242                 numComp = 0;
243                 for (int r=0; r<numGroups; r++) { 
244                         for (int l = r+1; l < numGroups; l++) {
245                                 groupComb.push_back(globaldata->Groups[r]+ "-" + globaldata->Groups[l]);
246                                 numComp++;
247                         }
248                 }
249                 
250                 //ABC
251                 if (numComp != 1) {
252                         groupComb.push_back(allGroups);
253                         numComp++;
254                 }
255         }
256         catch(exception& e) {
257                 cout << "Standard Error: " << e.what() << " has occurred in the UnifracUnweightedCommand class Function setGroups. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
258                 exit(1);
259         }
260         catch(...) {
261                 cout << "An unknown error has occurred in the UnifracUnweightedCommand class function setGroups. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
262                 exit(1);
263         }               
264
265 }
266 /*****************************************************************/
267
268 void UnifracUnweightedCommand::initFile(string label){
269         try {
270                 if(counter != 0){
271                         openOutputFile(unweightedFileout, out);
272                         openInputFile(unweightedFile, inFile);
273
274                         string inputBuffer;
275                         getline(inFile, inputBuffer);
276                 
277                         out     <<  inputBuffer << '\t' << label + "RandFreq" << '\t' << label + "RandCumul" << endl;           
278                 }else{
279                         openOutputFile(unweightedFileout, out);
280                         out     << label + "Score" << '\t' << label + "RandFreq" << '\t' << label + "RandCumul" << endl;
281                 }
282
283                 out.setf(ios::fixed, ios::floatfield);
284                 out.setf(ios::showpoint);
285         }
286         catch(exception& e) {
287                 cout << "Standard Error: " << e.what() << " has occurred in the UnifracUnweightedCommand class Function initFile. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
288                 exit(1);
289         }
290         catch(...) {
291                 cout << "An unknown error has occurred in the UnifracUnweightedCommand class function initFile. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
292                 exit(1);
293         }
294 }
295
296 /***********************************************************************/
297
298 void UnifracUnweightedCommand::output(vector<double> data){
299         try {
300                 if(counter != 0){               
301                         string inputBuffer;
302                         getline(inFile, inputBuffer);
303 //                      out     <<  inputBuffer << setprecision(6) << '\t' << data[0] << setprecision(globaldata->getIters().length()) << '\t' << data[1] << '\t' << data[2] << endl;
304                 
305                         out << inputBuffer << '\t' << setprecision(6) << data[0] << setprecision(globaldata->getIters().length())  << '\t' << data[1] << '\t' << data[2] << endl;
306                 }
307                 else{
308                         out << setprecision(6) << data[0] << setprecision(globaldata->getIters().length())  << '\t' << data[1] << '\t' << data[2] << endl;
309                 }
310
311         }
312         catch(exception& e) {
313                 cout << "Standard Error: " << e.what() << " has occurred in the UnifracUnweightedCommand class Function output. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
314                 exit(1);
315         }
316         catch(...) {
317                 cout << "An unknown error has occurred in the UnifracUnweightedCommand class function output. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
318                 exit(1);
319         }
320 };
321
322 /***********************************************************************/
323
324 void UnifracUnweightedCommand::resetFile(){
325         try {
326                 if(counter != 0){
327                         out.close();
328                         inFile.close();
329                 }
330                 else{
331                         out.close();
332                 }
333                 counter = 1;
334                 
335                 remove(unweightedFile.c_str());
336                 rename(unweightedFileout.c_str(), unweightedFile.c_str());
337         }
338         catch(exception& e) {
339                 cout << "Standard Error: " << e.what() << " has occurred in the UnifracUnweightedCommand class Function resetFile. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
340                 exit(1);
341         }
342         catch(...) {
343                 cout << "An unknown error has occurred in the UnifracUnweightedCommand class function resetFile. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
344                 exit(1);
345         }       
346 }
347