]> git.donarmstrong.com Git - mothur.git/blob - clusterclassic.cpp
changes to dist.seqs and pairwise.seqs and cluster.classic no longer resizes
[mothur.git] / clusterclassic.cpp
1 /*
2  *  clusterclassic.cpp
3  *  Mothur
4  *
5  *  Created by westcott on 10/29/10.
6  *  Copyright 2010 Schloss Lab. All rights reserved.
7  *
8  */
9
10 #include "clusterclassic.h"
11 #include "progress.hpp"
12
13 /***********************************************************************/
14 ClusterClassic::ClusterClassic(float c, string f) : method(f), smallDist(1e6), nseqs(0) {
15         try {
16                 mapWanted = false;  //set to true by mgcluster to speed up overlap merge
17         
18                 //save so you can modify as it changes in average neighbor
19                 cutoff = c;
20                 aboveCutoff = cutoff + 10000.0;
21                 m = MothurOut::getInstance();
22                 globaldata = GlobalData::getInstance();
23         }
24         catch(exception& e) {
25                 m->errorOut(e, "ClusterClassic", "ClusterClassic");
26                 exit(1);
27         }
28 }
29 /***********************************************************************/
30 int ClusterClassic::readPhylipFile(string filename, NameAssignment* nameMap) {
31         try {
32                 double distance;
33                 int square;
34                 string name;
35                 vector<string> matrixNames;
36                 
37                 ifstream fileHandle;
38                 m->openInputFile(filename, fileHandle);
39                 
40                 fileHandle >> nseqs >> name;
41
42                 matrixNames.push_back(name);
43
44                 if(nameMap == NULL){
45                                 list = new ListVector(nseqs);
46                                 list->set(0, name);
47                 }
48                 else{
49                                 list = new ListVector(nameMap->getListVector());
50                                 if(nameMap->count(name)==0){        m->mothurOut("Error: Sequence '" + name + "' was not found in the names file, please correct"); m->mothurOutEndLine(); }
51                 }
52                 
53                 //initialize distance matrix to cutoff
54                 dMatrix.resize(nseqs);
55                 //colDist temp(0, 0, aboveCutoff);
56                 //rowSmallDists.resize(nseqs, temp);
57                 for (int i = 1; i < nseqs; i++) {                       
58                         dMatrix[i].resize(i, aboveCutoff);              
59                 }                                                                                               
60                                                                                                                 
61                 
62                 char d;
63                 while((d=fileHandle.get()) != EOF){
64
65                                 if(isalnum(d)){
66                                                 square = 1;
67                                                 fileHandle.putback(d);
68                                                 for(int i=0;i<nseqs;i++){
69                                                                 fileHandle >> distance;
70                                                 }
71                                                 break;
72                                 }
73                                 if(d == '\n'){
74                                                 square = 0;
75                                                 break;
76                                 }
77                 }
78
79                 Progress* reading;
80
81                 if(square == 0){
82
83                                 reading = new Progress("Reading matrix:     ", nseqs * (nseqs - 1) / 2);
84
85                                 int        index = 0;
86
87                                 for(int i=1;i<nseqs;i++){
88                                                 if (m->control_pressed) {  fileHandle.close();  delete reading; return 0; }
89                                                 
90                                                 fileHandle >> name;
91                                                 matrixNames.push_back(name);
92                 
93
94                                                 //there's A LOT of repeated code throughout this method...
95                                                 if(nameMap == NULL){
96                                                                 list->set(i, name);
97                                                 
98                                                                 for(int j=0;j<i;j++){
99                                                                 
100                                                                                 if (m->control_pressed) { delete reading; fileHandle.close(); return 0;  }
101                                                                                 
102                                                                                 fileHandle >> distance;
103                                                         
104                                                                                 if (distance == -1) { distance = 1000000; }
105                                                                                 else if (globaldata->sim) { distance = 1.0 - distance;  }  //user has entered a sim matrix that we need to convert.
106                                                                 
107                                                                                 //if(distance < cutoff){
108                                                                                         dMatrix[i][j] = distance;
109                                                                                         if (distance < smallDist) { smallDist = distance; }
110                                                                                         //if (rowSmallDists[i].dist > distance) {  rowSmallDists[i].dist = distance; rowSmallDists[i].col = j; rowSmallDists[i].row = i; }
111                                                                                         //if (rowSmallDists[j].dist > distance) {  rowSmallDists[j].dist = distance; rowSmallDists[j].col = i; rowSmallDists[j].row = j; }
112                                                                                 //}
113                                                                                 index++;
114                                                                                 reading->update(index);
115                                                                 }
116                                 
117                                                 }
118                                                 else{
119                                                                 if(nameMap->count(name)==0){        m->mothurOut("Error: Sequence '" + name + "' was not found in the names file, please correct"); m->mothurOutEndLine(); }
120                                 
121                                                                 for(int j=0;j<i;j++){
122                                                                                 fileHandle >> distance;
123                                                                                 
124                                                                                 if (m->control_pressed) { delete reading; fileHandle.close(); return 0;  }
125                                 
126                                                                                 if (distance == -1) { distance = 1000000; }
127                                                                                 else if (globaldata->sim) { distance = 1.0 - distance;  }  //user has entered a sim matrix that we need to convert.
128                                                                                 
129                                                                                 //if(distance < cutoff){
130                                                                                         if (distance < smallDist) { smallDist = distance; }
131                                                                                         
132                                                                                         int row = nameMap->get(matrixNames[i]);
133                                                                                         int col = nameMap->get(matrixNames[j]);
134                                                                                         
135                                                                                         if (row < col) {  dMatrix[col][row] = distance; }
136                                                                                         else { dMatrix[row][col] = distance; }
137                                                                                         
138                                                                                         //if (rowSmallDists[row].dist > distance) {  rowSmallDists[row].dist = distance; rowSmallDists[row].col = col; rowSmallDists[row].row = row; }
139                                                                                         //if (rowSmallDists[col].dist > distance) {  rowSmallDists[col].dist = distance; rowSmallDists[col].col = row; rowSmallDists[col].row = col; }
140                                                                                 //}
141                                                                                 index++;
142                                                                                 reading->update(index);
143                                                                 }
144                                                 }
145                                 }
146                 }
147                 else{
148
149                                 reading = new Progress("Reading matrix:     ", nseqs * nseqs);
150                 
151                                 int index = nseqs;
152
153                                 for(int i=1;i<nseqs;i++){
154                                                 fileHandle >> name;                
155                                                 matrixNames.push_back(name);
156                                                 
157                                                 if(nameMap == NULL){
158                                                                 list->set(i, name);
159                                                                 for(int j=0;j<nseqs;j++){
160                                                                                 fileHandle >> distance;
161                                                                                 
162                                                                                 if (m->control_pressed) {  fileHandle.close();  delete reading; return 0; }
163                                                                                 
164                                                                                 if (distance == -1) { distance = 1000000; }
165                                                                                 else if (globaldata->sim) { distance = 1.0 - distance;  }  //user has entered a sim matrix that we need to convert.
166                                                                                 
167                                                                                 if(j < i){
168                                                                                         if (distance < smallDist) { smallDist = distance; }
169                                                                                         
170                                                                                         dMatrix[i][j] = distance;
171                                                                                         //if (rowSmallDists[i].dist > distance) {  rowSmallDists[i].dist = distance; rowSmallDists[i].col = j; rowSmallDists[i].row = i; }
172                                                                                         //if (rowSmallDists[j].dist > distance) {  rowSmallDists[j].dist = distance; rowSmallDists[j].col = i; rowSmallDists[j].row = j; }
173                                                                                 }
174                                                                                 index++;
175                                                                                 reading->update(index);
176                                                                 }
177                                                 
178                                                 }
179                                                 else{
180                                                                 if(nameMap->count(name)==0){        m->mothurOut("Error: Sequence '" + name + "' was not found in the names file, please correct"); m->mothurOutEndLine(); }
181                                 
182                                                                 for(int j=0;j<nseqs;j++){
183                                                                                 fileHandle >> distance;
184                                                                                 
185                                                                                 if (m->control_pressed) {  fileHandle.close();  delete reading; return 0; }
186                                                                                 
187                                                                            if (distance == -1) { distance = 1000000; }
188                                                                                 else if (globaldata->sim) { distance = 1.0 - distance;  }  //user has entered a sim matrix that we need to convert.                                                        
189                                                                                 
190                                                                                 if(j < i){
191                                                                                         if (distance < smallDist) { smallDist = distance; }
192                                                                                         
193                                                                                         int row = nameMap->get(matrixNames[i]);
194                                                                                         int col = nameMap->get(matrixNames[j]);
195                                                                                         
196                                                                                         if (row < col) {  dMatrix[col][row] = distance; }
197                                                                                         else { dMatrix[row][col] = distance; }
198                                                                                         
199                                                                                         //if (rowSmallDists[row].dist > distance) {  rowSmallDists[row].dist = distance; rowSmallDists[row].col = col; rowSmallDists[row].row = row; }
200                                                                                         //if (rowSmallDists[col].dist > distance) {  rowSmallDists[col].dist = distance; rowSmallDists[col].col = row; rowSmallDists[col].row = col; }
201                                                                                 }
202                                                                                 index++;
203                                                                                 reading->update(index);
204                                                                 }
205                                                 }
206                                 }
207                 }
208                 
209                 if (m->control_pressed) {  fileHandle.close();  delete reading; return 0; }
210                 
211                 reading->finish();
212                 delete reading;
213
214                 list->setLabel("0");
215                 rabund = new RAbundVector(list->getRAbundVector());
216                 
217                 fileHandle.close();
218         }
219         catch(exception& e) {
220                 m->errorOut(e, "ClusterClassic", "readPhylipFile");
221                 exit(1);
222         }
223
224 }
225 /***********************************************************************/
226 //sets smallCol and smallRow, returns distance
227 double ClusterClassic::getSmallCell() {
228         try {
229                         
230                 smallDist = aboveCutoff;
231                 smallRow = 1;
232                 smallCol = 0;
233                 
234                 vector<colDist> mins;
235                 
236                 for(int i=1;i<nseqs;i++){
237                         for(int j=0;j<i;j++){ 
238                                 if (dMatrix[i][j] < smallDist) {
239                                         mins.clear();
240                                         colDist temp(i, j, dMatrix[i][j]);
241                                         mins.push_back(temp); 
242                                         smallDist = dMatrix[i][j];
243                                 }else if (dMatrix[i][j] == smallDist) {
244                                         colDist temp(i, j, dMatrix[i][j]);
245                                         mins.push_back(temp); 
246
247                                 }
248                         }
249                 }
250                 
251                 if (mins.size() > 0) {
252                         int zrand = 0;
253                         if (mins.size() > 1) {
254                                 //pick random number between 0 and mins.size()
255                                 zrand = (int)((float)(rand()) / (RAND_MAX / (mins.size()-1) + 1));
256                         }
257                         
258                         smallRow = mins[zrand].row;
259                         smallCol = mins[zrand].col;
260                 
261                 }
262         //cout << smallRow << '\t' << smallCol << '\t' << smallDist << endl;
263                 //eliminate smallCell
264                 if (smallRow < smallCol) { dMatrix[smallCol][smallRow] = aboveCutoff; }
265                 else { dMatrix[smallRow][smallCol] = aboveCutoff; }
266                 
267                 return smallDist;
268                 
269         }
270         catch(exception& e) {
271                 m->errorOut(e, "ClusterClassic", "getSmallCell");
272                 exit(1);
273         }
274 }
275 /***********************************************************************/
276 void ClusterClassic::clusterBins(){
277         try {
278         //      cout << smallCol << '\t' << smallRow << '\t' << smallDist << '\t' << rabund->get(smallRow) << '\t' << rabund->get(smallCol);
279
280                 rabund->set(smallRow, rabund->get(smallRow)+rabund->get(smallCol));     
281                 rabund->set(smallCol, 0);       
282                 /*for (int i = smallCol+1; i < rabund->size(); i++) {
283                         rabund->set((i-1), rabund->get(i));
284                 }
285                 rabund->resize((rabund->size()-1));*/
286                 rabund->setLabel(toString(smallDist));
287
288         //      cout << '\t' << rabund->get(smallRow) << '\t' << rabund->get(smallCol) << endl;
289         }
290         catch(exception& e) {
291                 m->errorOut(e, "ClusterClassic", "clusterBins");
292                 exit(1);
293         }
294 }
295 /***********************************************************************/
296 void ClusterClassic::clusterNames(){
297         try {
298         //      cout << smallCol << '\t' << smallRow << '\t' << smallDist << '\t' << list->get(smallRow) << '\t' << list->get(smallCol);
299                 if (mapWanted) {  updateMap();  }
300                 
301                 list->set(smallRow, list->get(smallRow)+','+list->get(smallCol));
302                 list->set(smallCol, "");        
303                 /*for (int i = smallCol+1; i < list->size(); i++) {
304                         list->set((i-1), list->get(i));
305                 }
306                 list->resize((list->size()-1));*/
307                 list->setLabel(toString(smallDist));
308         
309         //      cout << '\t' << list->get(smallRow) << '\t' << list->get(smallCol) << endl;
310     }
311         catch(exception& e) {
312                 m->errorOut(e, "ClusterClassic", "clusterNames");
313                 exit(1);
314         }
315 }
316 /***********************************************************************/
317 void ClusterClassic::update(double& cutOFF){
318         try {
319 //print();              
320                 getSmallCell();
321                 
322                 int r, c;
323                 r = smallRow; c = smallCol;
324                                 
325                 for(int i=0;i<nseqs;i++){
326                         if(i != r && i != c){
327                                 double distRow, distCol, newDist;
328                                 if (i > r) { distRow = dMatrix[i][r]; }
329                                 else { distRow =  dMatrix[r][i]; }
330
331                                 if (i > c) { distCol = dMatrix[i][c]; dMatrix[i][c] = aboveCutoff; } //like removeCell
332                                 else { distCol =  dMatrix[c][i]; dMatrix[c][i] = aboveCutoff; }
333                                 
334                                 if(method == "furthest"){
335                                         newDist = max(distRow, distCol);
336                                 }
337                                 else if (method == "average"){
338                                         int rowBin = rabund->get(r);
339                                         int colBin = rabund->get(c);
340                                         newDist = (colBin * distCol + rowBin * distRow) / (rowBin + colBin);
341                                 }
342                                 else if (method == "weighted"){
343                                         newDist = (distCol + distRow) / 2.0;
344                                 }
345                                 else if (method == "nearest"){
346                                         newDist = min(distRow, distCol);
347                                 }
348                                 //cout << "newDist = " << newDist << endl;      
349                                 if (i > r) { dMatrix[i][r] = newDist; }
350                                 else { dMatrix[r][i] = newDist; }
351                                 
352                         }
353                 }
354                         
355                 clusterBins();
356                 clusterNames();
357                 
358                 //resize each row
359                 /*for(int i=0;i<nseqs;i++){
360                         for(int j=c+1;j<dMatrix[i].size();j++){
361                                 dMatrix[i][j-1]=dMatrix[i][j];
362                         }
363                 }                       
364                 
365                 //resize each col
366                 for(int i=c+1;i<nseqs;i++){
367                         for(int j=0;j < dMatrix[i-1].size();j++){
368                                 dMatrix[i-1][j]=dMatrix[i][j];
369                         }
370                 }       
371                 
372                 nseqs--;
373                 dMatrix.pop_back();*/
374
375         }
376         catch(exception& e) {
377                 m->errorOut(e, "ClusterClassic", "update");
378                 exit(1);
379         }
380 }
381 /***********************************************************************/
382 void ClusterClassic::setMapWanted(bool f)  {  
383         try {
384                 mapWanted = f;
385                 
386                 //initialize map
387                 for (int i = 0; i < list->getNumBins(); i++) {
388                         
389                         //parse bin 
390                         string names = list->get(i);
391                         while (names.find_first_of(',') != -1) { 
392                                 //get name from bin
393                                 string name = names.substr(0,names.find_first_of(','));
394                                 //save name and bin number
395                                 seq2Bin[name] = i;
396                                 names = names.substr(names.find_first_of(',')+1, names.length());
397                         }
398                         
399                         //get last name
400                         seq2Bin[names] = i;
401                 }
402                 
403         }
404         catch(exception& e) {
405                 m->errorOut(e, "ClusterClassic", "setMapWanted");
406                 exit(1);
407         }
408 }
409 /***********************************************************************/
410 void ClusterClassic::updateMap() {
411 try {
412                 //update location of seqs in smallRow since they move to smallCol now
413                 string names = list->get(smallRow);
414                 while (names.find_first_of(',') != -1) { 
415                         //get name from bin
416                         string name = names.substr(0,names.find_first_of(','));
417                         //save name and bin number
418                         seq2Bin[name] = smallCol;
419                         names = names.substr(names.find_first_of(',')+1, names.length());
420                 }
421                         
422                 //get last name
423                 seq2Bin[names] = smallCol;
424                 
425         }
426         catch(exception& e) {
427                 m->errorOut(e, "ClusterClassic", "updateMap");
428                 exit(1);
429         }
430 }
431 /***********************************************************************/
432 void ClusterClassic::print() {
433 try {
434                 //update location of seqs in smallRow since they move to smallCol now
435                 for (int i = 0; i < dMatrix.size(); i++) {
436                         cout << "row = " << i << '\t';
437                         for (int j = 0; j < dMatrix[i].size(); j++) {
438                                 cout << dMatrix[i][j] << '\t';
439                         }
440                         cout << endl;
441                 }
442         }
443         catch(exception& e) {
444                 m->errorOut(e, "ClusterClassic", "updateMap");
445                 exit(1);
446         }
447 }
448 /***********************************************************************/
449