]> git.donarmstrong.com Git - mothur.git/blob - unifracunweightedcommand.cpp
changed format of output in unifrac and parsimony files
[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                 //get pscores for users trees
45                 for (int i = 0; i < T.size(); i++) {
46                         counter = 0;
47                         unweightedFile = globaldata->getTreeFile()  + toString(i+1) + ".unweighted";
48                         unweightedFileout = globaldata->getTreeFile() + "temp." + toString(i+1) + ".unweighted";
49                         
50                         //column headers
51                         outSum << "Tree# " << i+1 << endl;
52                         outSum << "Comb" << '\t'  <<  "UWScore" << '\t' << '\t' << "UWSig" <<  endl;
53                         cout << "Tree# " << i+1 << endl;
54                         cout << "Comb" << '\t'  <<  "UWScore" << '\t' << '\t' << "UWSig" <<  endl;
55
56
57                         //get unweighted for users tree
58                         rscoreFreq.resize(numComp);  
59                         rCumul.resize(numComp);  
60                         utreeScores.resize(numComp);  
61                         UWScoreSig.resize(numComp); 
62
63                         userData = unweighted->getValues(T[i]);  //userData[0] = unweightedscore
64                         
65                         //output scores for each combination
66                         for(int k = 0; k < numComp; k++) {
67                                 //saves users score
68                                 utreeScores[k].push_back(userData[k]);
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                 for(int a = 0; a < numComp; a++) {
169                         if (UWScoreSig[a][0] > (1/(float)iters)) {
170                                 outSum << setprecision(globaldata->getIters().length()) << groupComb[a] << '\t' << '\t' << utreeScores[a][0] << '\t' << UWScoreSig[a][0] << endl;
171                                 cout << setprecision(globaldata->getIters().length())  << groupComb[a] << '\t' << '\t' << utreeScores[a][0] << '\t' << UWScoreSig[a][0] << endl; 
172                         }else {
173                                 outSum << setprecision(globaldata->getIters().length()) << groupComb[a] << '\t' << '\t' << utreeScores[a][0] << '\t' << "<" << (1/float(iters)) << endl;
174                                 cout << setprecision(globaldata->getIters().length())  << groupComb[a] << '\t' << '\t' << utreeScores[a][0] << '\t' << "<" << (1/float(iters)) << endl; 
175                         }
176                 }
177                 
178         }
179         catch(exception& e) {
180                 cout << "Standard Error: " << e.what() << " has occurred in the UnifracUnweightedCommand class Function printUWSummaryFile. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
181                 exit(1);
182         }
183         catch(...) {
184                 cout << "An unknown error has occurred in the UnifracUnweightedCommand class function printUWSummaryFile. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
185                 exit(1);
186         }
187 }
188 /***********************************************************/
189
190 void UnifracUnweightedCommand::setGroups() {
191         try {
192                 string allGroups = "";
193                 numGroups = 0;
194                 //if the user has not entered specific groups to analyze then do them all
195                 if (globaldata->Groups.size() != 0) {
196                         if (globaldata->Groups[0] != "all") {
197                                 //check that groups are valid
198                                 for (int i = 0; i < globaldata->Groups.size(); i++) {
199                                         if (tmap->isValidGroup(globaldata->Groups[i]) != true) {
200                                                 cout << globaldata->Groups[i] << " is not a valid group, and will be disregarded." << endl;
201                                                 // erase the invalid group from globaldata->Groups
202                                                 globaldata->Groups.erase(globaldata->Groups.begin()+i);
203                                         }
204                                 }
205                         
206                                 //if the user only entered invalid groups
207                                 if (globaldata->Groups.size() == 0) { 
208                                         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; 
209                                         for (int i = 0; i < tmap->namesOfGroups.size(); i++) {
210                                                 globaldata->Groups.push_back(tmap->namesOfGroups[i]);
211                                                 numGroups++;
212                                                 allGroups += tmap->namesOfGroups[i] + "-";
213                                         }
214                                         allGroups = allGroups.substr(0, allGroups.length()-1);
215                                 }else {
216                                         for (int i = 0; i < globaldata->Groups.size(); i++) {
217                                                 allGroups += globaldata->Groups[i] + "-";
218                                                 numGroups++;
219                                         }
220                                         allGroups = allGroups.substr(0, allGroups.length()-1);
221                                 }
222                         }else{//user has enter "all" and wants the default groups
223                                 for (int i = 0; i < tmap->namesOfGroups.size(); i++) {
224                                         globaldata->Groups.push_back(tmap->namesOfGroups[i]);
225                                         numGroups++;
226                                         allGroups += tmap->namesOfGroups[i] + "-";
227                                 }
228                                 allGroups = allGroups.substr(0, allGroups.length()-1);
229                                 globaldata->setGroups("");
230                         }
231                 }else {
232                         for (int i = 0; i < tmap->namesOfGroups.size(); i++) {
233                                 allGroups += tmap->namesOfGroups[i] + "-";
234                         }
235                         allGroups = allGroups.substr(0, allGroups.length()-1);
236                         numGroups = 1;
237                 }
238                 
239                 //calculate number of comparsions
240                 numComp = 0;
241                 for (int r=0; r<numGroups; r++) { 
242                         for (int l = r+1; l < numGroups; l++) {
243                                 groupComb.push_back(globaldata->Groups[r]+ "-" + globaldata->Groups[l]);
244                                 numComp++;
245                         }
246                 }
247                 
248                 //ABC
249                 if (numComp != 1) {
250                         groupComb.push_back(allGroups);
251                         numComp++;
252                 }
253         }
254         catch(exception& e) {
255                 cout << "Standard Error: " << e.what() << " has occurred in the UnifracUnweightedCommand class Function setGroups. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
256                 exit(1);
257         }
258         catch(...) {
259                 cout << "An unknown error has occurred in the UnifracUnweightedCommand class function setGroups. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
260                 exit(1);
261         }               
262
263 }
264 /*****************************************************************/
265
266 void UnifracUnweightedCommand::initFile(string label){
267         try {
268                 if(counter != 0){
269                         openOutputFile(unweightedFileout, out);
270                         openInputFile(unweightedFile, inFile);
271
272                         string inputBuffer;
273                         getline(inFile, inputBuffer);
274                 
275                         out     <<  inputBuffer << '\t' << label + "Score" << '\t' << label + "RandFreq" << '\t' << label + "RandCumul" << endl;                
276                 }else{
277                         openOutputFile(unweightedFileout, out);
278                         out     << label + "Score" << '\t' << label + "RandFreq" << '\t' << label + "RandCumul" << endl;
279                 }
280
281                 out.setf(ios::fixed, ios::floatfield);
282                 out.setf(ios::showpoint);
283         }
284         catch(exception& e) {
285                 cout << "Standard Error: " << e.what() << " has occurred in the UnifracUnweightedCommand class Function initFile. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
286                 exit(1);
287         }
288         catch(...) {
289                 cout << "An unknown error has occurred in the UnifracUnweightedCommand class function initFile. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
290                 exit(1);
291         }
292 }
293
294 /***********************************************************************/
295
296 void UnifracUnweightedCommand::output(vector<double> data){
297         try {
298                 if(counter != 0){               
299                         string inputBuffer;
300                         getline(inFile, inputBuffer);
301                 
302                         out     <<  inputBuffer << setprecision(globaldata->getIters().length()) << '\t' << data[0] << '\t' << data[1] << '\t' << data[2] << endl;
303                 }
304                 else{
305                         out << setprecision(globaldata->getIters().length()) << data[0] << '\t' << data[1] << '\t' << data[2] << endl;
306                 }
307
308         }
309         catch(exception& e) {
310                 cout << "Standard Error: " << e.what() << " has occurred in the UnifracUnweightedCommand class Function output. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
311                 exit(1);
312         }
313         catch(...) {
314                 cout << "An unknown error has occurred in the UnifracUnweightedCommand class function output. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
315                 exit(1);
316         }
317 };
318
319 /***********************************************************************/
320
321 void UnifracUnweightedCommand::resetFile(){
322         try {
323                 if(counter != 0){
324                         out.close();
325                         inFile.close();
326                 }
327                 else{
328                         out.close();
329                 }
330                 counter = 1;
331                 
332                 remove(unweightedFile.c_str());
333                 rename(unweightedFileout.c_str(), unweightedFile.c_str());
334         }
335         catch(exception& e) {
336                 cout << "Standard Error: " << e.what() << " has occurred in the UnifracUnweightedCommand class Function resetFile. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
337                 exit(1);
338         }
339         catch(...) {
340                 cout << "An unknown error has occurred in the UnifracUnweightedCommand class function resetFile. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
341                 exit(1);
342         }       
343 }
344