X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=readphylip.cpp;h=f1554565bf9ac58a3e41afa6578742293bd0ea2c;hb=6e81846c8e5b2614f6b06643a9f558fb0e6669fa;hp=a1063e94d3d94f241f172bfe33a39ae54d5da7cb;hpb=02909d6cae9963ba00dc746969a370fa8ca934fc;p=mothur.git diff --git a/readphylip.cpp b/readphylip.cpp index a1063e9..f155456 100644 --- a/readphylip.cpp +++ b/readphylip.cpp @@ -20,7 +20,7 @@ ReadPhylipMatrix::ReadPhylipMatrix(string distFile){ /***********************************************************************/ -void ReadPhylipMatrix::read(NameAssignment* nameMap){ +int ReadPhylipMatrix::read(NameAssignment* nameMap){ try { float distance; @@ -38,7 +38,7 @@ void ReadPhylipMatrix::read(NameAssignment* nameMap){ } else{ list = new ListVector(nameMap->getListVector()); - if(nameMap->count(name)==0){ cout << "Error: Sequence '" << name << "' was not found in the names file, please correct" << endl; } + if(nameMap->count(name)==0){ m->mothurOut("Error: Sequence '" + name + "' was not found in the names file, please correct"); m->mothurOutEndLine(); } } char d; @@ -59,25 +59,33 @@ void ReadPhylipMatrix::read(NameAssignment* nameMap){ } Progress* reading; - + if(square == 0){ reading = new Progress("Reading matrix: ", nseqs * (nseqs - 1) / 2); int index = 0; - + for(int i=1;icontrol_pressed) { fileHandle.close(); delete reading; return 0; } + fileHandle >> name; matrixNames.push_back(name); + //there's A LOT of repeated code throughout this method... if(nameMap == NULL){ list->set(i, name); for(int j=0;jcontrol_pressed) { delete reading; fileHandle.close(); return 0; } + fileHandle >> distance; + if (distance == -1) { distance = 1000000; } + else if (globaldata->sim) { distance = 1.0 - distance; } //user has entered a sim matrix that we need to convert. if(distance < cutoff){ PCell value(i, j, distance); @@ -89,12 +97,15 @@ void ReadPhylipMatrix::read(NameAssignment* nameMap){ } else{ - if(nameMap->count(name)==0){ cout << "Error: Sequence '" << name << "' was not found in the names file, please correct" << endl; } + if(nameMap->count(name)==0){ m->mothurOut("Error: Sequence '" + name + "' was not found in the names file, please correct"); m->mothurOutEndLine(); } for(int j=0;j> distance; + + if (m->control_pressed) { delete reading; fileHandle.close(); return 0; } if (distance == -1) { distance = 1000000; } + else if (globaldata->sim) { distance = 1.0 - distance; } //user has entered a sim matrix that we need to convert. if(distance < cutoff){ PCell value(nameMap->get(matrixNames[i]), nameMap->get(matrixNames[j]), distance); @@ -115,13 +126,18 @@ void ReadPhylipMatrix::read(NameAssignment* nameMap){ for(int i=1;i> name; matrixNames.push_back(name); + + if(nameMap == NULL){ list->set(i, name); for(int j=0;j> distance; - + + if (m->control_pressed) { fileHandle.close(); delete reading; return 0; } + if (distance == -1) { distance = 1000000; } + else if (globaldata->sim) { distance = 1.0 - distance; } //user has entered a sim matrix that we need to convert. if(distance < cutoff && j < i){ PCell value(i, j, distance); @@ -133,14 +149,17 @@ void ReadPhylipMatrix::read(NameAssignment* nameMap){ } else{ - if(nameMap->count(name)==0){ cout << "Error: Sequence '" << name << "' was not found in the names file, please correct" << endl; } + if(nameMap->count(name)==0){ m->mothurOut("Error: Sequence '" + name + "' was not found in the names file, please correct"); m->mothurOutEndLine(); } for(int j=0;j> distance; - - if (distance == -1) { distance = 1000000; } + + if (m->control_pressed) { fileHandle.close(); delete reading; return 0; } + + if (distance == -1) { distance = 1000000; } + else if (globaldata->sim) { distance = 1.0 - distance; } //user has entered a sim matrix that we need to convert. - if(distance < cutoff && j < i){ + if(distance < cutoff && j < i){ PCell value(nameMap->get(matrixNames[i]), nameMap->get(matrixNames[j]), distance); D->addCell(value); } @@ -150,32 +169,33 @@ void ReadPhylipMatrix::read(NameAssignment* nameMap){ } } } + + if (m->control_pressed) { fileHandle.close(); delete reading; return 0; } + reading->finish(); delete reading; list->setLabel("0"); fileHandle.close(); - if(nameMap != NULL){ + /* if(nameMap != NULL){ for(int i=0;ierase(matrixNames[i]); } if(nameMap->size() > 0){ //should probably tell them what is missing if we missed something - cout << "missed something" << '\t' << nameMap->size() << endl; + m->mothurOut("missed something\t" + toString(nameMap->size())); m->mothurOutEndLine(); } - } + } */ + + return 1; } catch(exception& e) { - cout << "Standard Error: " << e.what() << " has occurred in the ReadPhylipMatrix class Function read. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n"; + m->errorOut(e, "ReadPhylipMatrix", "read"); exit(1); } - catch(...) { - cout << "An unknown error has occurred in the ReadPhylipMatrix class function read. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n"; - exit(1); - } -} + } /***********************************************************************/