X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=readphylip.cpp;h=1c529b26f15fdfa172c8a0f7ebcf20187e87b03b;hb=2bb9267aa4b4ecdf8488b06605cc9f3f36fa4332;hp=6d7d4d0d7e322fc006a9e5ade0dcddbe453eee44;hpb=74844a60d80c6dd06e3fb02ee9b928424f9019b0;p=mothur.git diff --git a/readphylip.cpp b/readphylip.cpp index 6d7d4d0..1c529b2 100644 --- a/readphylip.cpp +++ b/readphylip.cpp @@ -14,22 +14,35 @@ ReadPhylipMatrix::ReadPhylipMatrix(string distFile){ - successOpen = openInputFile(distFile, fileHandle); + successOpen = m->openInputFile(distFile, fileHandle); + sim=false; } +/***********************************************************************/ + +ReadPhylipMatrix::ReadPhylipMatrix(string distFile, bool s){ + + successOpen = m->openInputFile(distFile, fileHandle); + sim=s; +} + /***********************************************************************/ -void ReadPhylipMatrix::read(NameAssignment* nameMap){ +int ReadPhylipMatrix::read(NameAssignment* nameMap){ try { float distance; int square, nseqs; string name; vector matrixNames; - - fileHandle >> nseqs >> name; - + + string numTest; + fileHandle >> numTest >> name; + + if (!m->isContainingOnlyDigits(numTest)) { m->mothurOut("[ERROR]: expected a number and got " + numTest + ", quitting."); m->mothurOutEndLine(); exit(1); } + else { convert(numTest, nseqs); } + matrixNames.push_back(name); if(nameMap == NULL){ @@ -67,17 +80,25 @@ void ReadPhylipMatrix::read(NameAssignment* nameMap){ 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 (sim) { distance = 1.0 - distance; } //user has entered a sim matrix that we need to convert. if(distance < cutoff){ PCell value(i, j, distance); @@ -93,8 +114,11 @@ void ReadPhylipMatrix::read(NameAssignment* nameMap){ for(int j=0;j> distance; + + if (m->control_pressed) { delete reading; fileHandle.close(); return 0; } if (distance == -1) { distance = 1000000; } + else if (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 +139,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 (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); @@ -137,10 +166,13 @@ void ReadPhylipMatrix::read(NameAssignment* nameMap){ 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 (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,6 +182,9 @@ void ReadPhylipMatrix::read(NameAssignment* nameMap){ } } } + + if (m->control_pressed) { fileHandle.close(); delete reading; return 0; } + reading->finish(); delete reading; @@ -165,6 +200,8 @@ void ReadPhylipMatrix::read(NameAssignment* nameMap){ m->mothurOut("missed something\t" + toString(nameMap->size())); m->mothurOutEndLine(); } } */ + + return 1; } catch(exception& e) {