]> git.donarmstrong.com Git - mothur.git/blob - heatmap.cpp
fixed bug in heatmap
[mothur.git] / heatmap.cpp
1 /*
2  *  heatmap.cpp
3  *  Mothur
4  *
5  *  Created by Sarah Westcott on 3/25/09.
6  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
7  *
8  */
9
10 #include "heatmap.h"
11
12 //**********************************************************************************************************************
13 HeatMap::HeatMap(){
14         try {
15                 globaldata = GlobalData::getInstance();
16                 format = globaldata->getFormat();
17                 sorted = globaldata->getSorted();
18         }
19         catch(exception& e) {
20                 cout << "Standard Error: " << e.what() << " has occurred in the HeatMap class Function HeatMap. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
21                 exit(1);
22         }
23         catch(...) {
24                 cout << "An unknown error has occurred in the HeatMap class function HeatMap. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
25                 exit(1);
26         }
27 }
28
29 //**********************************************************************************************************************
30
31 void HeatMap::getPic(RAbundVector* rabund) {
32         try {
33                 //get users scaling method
34                 scaler = globaldata->getScale();
35                 
36                 float maxRelAbund = 0.0;                
37                 
38                 for(int i=0;i<rabund->size();i++){                              
39                         float relAbund = rabund->get(i) / (float)rabund->getNumSeqs();
40                         if(relAbund > maxRelAbund){     maxRelAbund = relAbund; }
41                 }
42                 
43                 scaler = globaldata->getScale();
44                 
45                 vector<string> scaleRelAbund(rabund->size(), "");
46                 
47                 for(int i=0;i<rabund->size();i++){
48                         float relAbund = rabund->get(i) / (float)rabund->getNumSeqs();
49                         
50                         if (rabund->get(i) != 0) { //don't want log value of 0.
51                                 if (scaler == "log10") {
52                                         scaleRelAbund[i] = toHex(int(255 * log10(relAbund) / log10(maxRelAbund))) + "0000";  
53                                 }else if (scaler == "log2") {
54                                         scaleRelAbund[i] = toHex(int(255 * log2(relAbund) / log2(maxRelAbund))) + "0000";  
55                                 }else if (scaler == "linear") {
56                                         scaleRelAbund[i] = toHex(int(255 * relAbund / maxRelAbund)) + "0000";  
57                                 }else {  //if user enters invalid scaler option.
58                                         scaleRelAbund[i] = toHex(int(255 * log10(relAbund / log10(maxRelAbund))))  + "0000"; 
59                                 } 
60                         }
61                         else { scaleRelAbund[i] = "FFFFFF";  }
62                 }
63                 
64                 
65                 string filenamesvg = getRootName(globaldata->inputFileName) + rabund->getLabel() + ".heatmap.svg";
66                 openOutputFile(filenamesvg, outsvg);
67                 
68                 //svg image
69                 outsvg << "<svg width=\"100%\" height=\"100%\" viewBox=\"0 0 " + toString(300) + " " + toString((rabund->getNumBins()*5 + 120))  + "\">\n";
70                 outsvg << "<g>\n";
71                 
72                 //white backround
73                 outsvg << "<rect fill=\"white\" stroke=\"white\" x=\"0\" y=\"0\" width=\"" + toString(300) + "\" height=\"" + toString((rabund->getNumBins()*5 + 120))  + "\"/>"; 
74                 outsvg << "<text fill=\"black\" class=\"seri\" x=\"" + toString((150) - 40) + "\" y=\"25\">Heatmap at distance " + rabund->getLabel() + "</text>\n";
75                                 
76                 //output legend and color labels
77                 string color;
78                 int x = 0;
79                 int y = 103 + (rabund->getNumBins()*5);
80                 printLegend(y, maxRelAbund);
81                 
82                 y = 70;
83                 for (int i = 0; i < scaleRelAbund.size(); i++) {
84                         
85                         outsvg << "<rect fill=\"#" + scaleRelAbund[i] + "\" stroke=\"#" + scaleRelAbund[i] + "\" x=\"" + toString(x) + "\" y=\"" + toString(y) + "\" width=\"300\" height=\"5\"/>\n";
86                         y += 5;
87                 }
88                 
89                 outsvg << "</g>\n</svg>\n";
90                 outsvg.close();
91                 
92                 
93         }
94         catch(exception& e) {
95                 cout << "Standard Error: " << e.what() << " has occurred in the HeatMap class Function getPic. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
96                 exit(1);
97         }
98         catch(...) {
99                 cout << "An unknown error has occurred in the HeatMap class function getPic. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
100                 exit(1);
101         }
102 }
103
104 //**********************************************************************************************************************
105
106 void HeatMap::getPic(vector<SharedRAbundVector*> lookup) {
107         try {
108                 
109                 //sort lookup so shared bins are on top
110                 if (sorted == "T") {  sortSharedVectors(lookup);  }
111                 
112                 vector<vector<string> > scaleRelAbund;
113                 vector<float> maxRelAbund(lookup.size(), 0.0);          
114                 float superMaxRelAbund = 0;
115                 
116                 for(int i = 0; i < lookup.size(); i++){
117                         for(int j=0; j<lookup[i]->size(); j++){
118                                 
119                                 float relAbund = lookup[i]->getAbundance(j) / (float)lookup[i]->getNumSeqs();
120                                 if(relAbund > maxRelAbund[i]){  maxRelAbund[i] = relAbund;      }
121                         }
122                         if(maxRelAbund[i] > superMaxRelAbund){  superMaxRelAbund = maxRelAbund[i];      }
123                 }
124                 
125                 scaler = globaldata->getScale();
126                 
127                 scaleRelAbund.resize(lookup.size());
128                 for(int i=0;i<lookup.size();i++){
129                         scaleRelAbund[i].assign(lookup[i]->size(), "");
130                         for(int j=0;j<lookup[i]->size();j++){
131                                 float relAbund = lookup[i]->getAbundance(j) / (float)lookup[i]->getNumSeqs();
132                                 
133                                 if (lookup[i]->getAbundance(j) != 0) { //don't want log value of 0.
134                                         if (scaler == "log10") {
135                                                 scaleRelAbund[i][j] = toHex(int(255 * log10(relAbund) / log10(maxRelAbund[i]))) + "0000";  
136                                         }else if (scaler == "log2") {
137                                                 scaleRelAbund[i][j] = toHex(int(255 * log2(relAbund) / log2(maxRelAbund[i]))) + "0000";  
138                                         }else if (scaler == "linear") {
139                                                 scaleRelAbund[i][j] = toHex(int(255 * relAbund / maxRelAbund[i])) + "0000";  
140                                         }else {  //if user enters invalid scaler option.
141                                                 scaleRelAbund[i][j] = toHex(int(255 * log10(relAbund / log10(maxRelAbund[i]))))  + "0000"; 
142                                         } 
143                                 }else { scaleRelAbund[i][j] = "FFFFFF";  }
144                                 
145                         }
146                 }
147                 
148                 string filenamesvg = getRootName(globaldata->inputFileName) + lookup[0]->getLabel() + ".heatmap.svg";
149                 openOutputFile(filenamesvg, outsvg);
150                 
151                 //svg image
152                 outsvg << "<svg width=\"100%\" height=\"100%\" viewBox=\"0 0 " + toString(lookup.size() * 300) + " " + toString((lookup[0]->getNumBins()*5 + 120))  + "\">\n";
153                 outsvg << "<g>\n";
154                 
155                 //white backround
156                 outsvg << "<rect fill=\"white\" stroke=\"white\" x=\"0\" y=\"0\" width=\"" + toString(lookup.size() * 300) + "\" height=\"" + toString((lookup[0]->getNumBins()*5 + 120))  + "\"/>"; 
157                 outsvg << "<text fill=\"black\" class=\"seri\" x=\"" + toString((lookup.size() * 150) - 40) + "\" y=\"25\">Heatmap at distance " + lookup[0]->getLabel() + "</text>\n";
158                 
159                 //column labels
160                 for (int h = 0; h < lookup.size(); h++) {
161                         outsvg << "<text fill=\"black\" class=\"seri\" x=\"" + toString(((300 * (h+1)) - 150) - ((int)lookup[h]->getGroup().length() / 2)) + "\" y=\"50\">" + lookup[h]->getGroup() + "</text>\n"; 
162                 }
163                 
164                 //output legend and color labels
165                 string color;
166                 int x = 0;
167                 int y = 103 + (lookup[0]->getNumBins()*5);
168                 printLegend(y, superMaxRelAbund);
169                 
170                 y = 70;
171                 for (int i = 0; i < scaleRelAbund[0].size(); i++) {
172                         for (int j = 0; j < scaleRelAbund.size(); j++) {
173                                 
174                                 outsvg << "<rect fill=\"#" + scaleRelAbund[j][i] + "\" stroke=\"#" + scaleRelAbund[j][i] + "\" x=\"" + toString(x) + "\" y=\"" + toString(y) + "\" width=\"300\" height=\"5\"/>\n";
175                                 x += 300;
176                         }
177                         x = 0;
178                         y += 5;
179                 }
180                 
181                 outsvg << "</g>\n</svg>\n";
182                 outsvg.close();
183                 
184         }
185         catch(exception& e) {
186                 cout << "Standard Error: " << e.what() << " has occurred in the HeatMap class Function getPic. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
187                 exit(1);
188         }
189         catch(...) {
190                 cout << "An unknown error has occurred in the HeatMap class function getPic. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
191                 exit(1);
192         }
193 }
194
195 //**********************************************************************************************************************
196 void HeatMap::sortSharedVectors(vector<SharedRAbundVector*>& lookup){
197         try {
198                 //copy lookup and then clear it to refill with sorted.
199                 //loop though lookup and determine if they are shared
200                 //if they are then insert in the front
201                 //if not push to back
202                 
203                 vector<SharedRAbundVector*> looktemp;
204                 map<int, int> place; //spot in lookup where you insert shared by, ie, 3 -> 2 if they are shared by 3 inset into location 2.
205                 map<int, int>::iterator it;
206                 int count;
207                 
208                 //create and initialize looktemp as a copy of lookup
209                 for (int i = 0; i < lookup.size(); i++) { 
210                         SharedRAbundVector* temp = new SharedRAbundVector(lookup[i]->getNumBins());
211                         temp->setLabel(lookup[i]->getLabel());
212                         temp->setGroup(lookup[i]->getGroup());
213                         //copy lookup i's info
214                         for (int j = 0; j < lookup[i]->size(); j++) {
215                                 temp->set(j, lookup[i]->getAbundance(j), lookup[i]->getGroup());
216                         }
217                         looktemp.push_back(temp);
218                 }
219                 
220                 //clear out lookup to create sorted lookup
221                 for (int j = 0; j < lookup.size(); j++) {
222                         delete lookup[j];
223                 }
224                 lookup.clear();
225                 
226                 //create and initialize lookup to empty vectors
227                 for (int i = 0; i < looktemp.size(); i++) { 
228                         SharedRAbundVector* temp = new SharedRAbundVector();
229                         temp->setLabel(looktemp[i]->getLabel());
230                         temp->setGroup(looktemp[i]->getGroup());
231                         lookup.push_back(temp); 
232                         
233                         //initialize place map
234                         place[i] = 0;
235                 }
236                 
237                 
238                 //for each bin
239                 for (int i = 0; i < looktemp[0]->size(); i++) {
240                         count = 0;
241                         bool updatePlace = false;
242                         //for each group
243                         for (int j = 0; j < looktemp.size(); j++) {
244                                 if (looktemp[j]->getAbundance(i) != 0) { count++; }
245                         }
246                         
247                         //fill lookup
248                         for (int j = 0; j < looktemp.size(); j++) {
249                                 //if they are not shared then push to back, if they are not insert in front
250                                 if (count < 2)  { lookup[j]->push_back(looktemp[j]->getAbundance(i), i, looktemp[j]->getGroup()); }
251                                 //they are shared by some
252                                 else {  lookup[j]->insert(looktemp[j]->getAbundance(i), place[count], looktemp[j]->getGroup());   updatePlace = true; }
253                         }
254                         
255                         if (updatePlace == true) {
256                                 //move place holders below where you entered up to "make space" for you entry
257                                 for (it = place.begin(); it!= place.end(); it++) {  
258                                         if (it->first < count) { it->second++; }
259                                 }
260                         }
261                 }
262                 
263                 //delete looktemp
264                 for (int j = 0; j < looktemp.size(); j++) {
265                         delete looktemp[j];
266                 }
267                 
268         }
269         catch(exception& e) {
270                 cout << "Standard Error: " << e.what() << " has occurred in the HeatMap class Function sortSharedVectors. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
271                 exit(1);
272         }
273         catch(...) {
274                 cout << "An unknown error has occurred in the HeatMap class function sortSharedVectors. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
275                 exit(1);
276         }
277         
278 }
279
280 //**********************************************************************************************************************
281
282 void HeatMap::printLegend(int y, float maxbin) {
283         try {
284                 
285                 //output legend and color labels
286                 //go through map and give each score a color value
287                 string color;
288                 int x = 10;
289                 
290                 //prints legend
291                 for (int i = 1; i < 255; i++) {
292                         color = toHex(int((float)(i)));
293                         outsvg << "<rect fill=\"#" + color + "0000\" stroke=\"#" + color + "0000\" x=\"" + toString(x) + "\" y=\"" + toString(y) + "\" width=\"1\" height=\"10\"/>\n";
294                         x += 1;
295                 }
296                 
297                 //prints legend labels
298                 x = 10;
299                 for (int i = 1; i<=5; i++) {
300                         float label;
301                         if(scaler== "log10")            {       label = maxbin * log10(51*i) / log10(255);      }
302                         else if(scaler== "log2")        {       label = maxbin * log2(51*i) / log2(255);        }
303                         else if(scaler== "linear")      {       label = maxbin * 51 * i / 255;                          }
304                         else                                            {       label = maxbin * log10(51*i) / log10(255);      }
305                         file://localhost/Users/westcott/Desktop/c.amazon.fn.0.19.rep.fasta
306                         label = int(label * 1000 + 0.5);
307                         label /= 1000.0;
308                         string text = toString(label, 3);
309                         
310                         outsvg << "<text fill=\"black\" class=\"seri\" x=\"" + toString(x) + "\" y=\"" + toString(y-3) + "\">" + text + "</text>\n";
311                         x += 60;
312                 }
313         }
314         
315         catch(exception& e) {
316                 cout << "Standard Error: " << e.what() << " has occurred in the HeatMap class Function printLegend. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
317                 exit(1);
318         }
319         catch(...) {
320                 cout << "An unknown error has occurred in the HeatMap class function printLegend. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
321                 exit(1);
322         }
323         
324 }
325
326
327
328