X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=qualityscores.cpp;h=566b44c6bad55402fae1374aab0212547befe7cc;hb=49d2b7459c5027557564b21e9487dadafbbbdc96;hp=fca3d9f4c9cd17947116fbdb9a872bfce863fe47;hpb=662c0b60d65f79f672ab199300b7ee4975233465;p=mothur.git diff --git a/qualityscores.cpp b/qualityscores.cpp index fca3d9f..566b44c 100644 --- a/qualityscores.cpp +++ b/qualityscores.cpp @@ -36,7 +36,7 @@ QualityScores::QualityScores(ifstream& qFile){ qFile >> seqName; m->getline(qFile); - + //cout << seqName << endl; if (seqName == "") { m->mothurOut("Error reading quality file, name blank at position, " + toString(qFile.tellg())); m->mothurOutEndLine(); @@ -46,14 +46,76 @@ QualityScores::QualityScores(ifstream& qFile){ } string qScoreString = m->getline(qFile); - + //cout << qScoreString << endl; + while(qFile.peek() != '>' && qFile.peek() != EOF){ + if (m->control_pressed) { break; } + string temp = m->getline(qFile); + //cout << temp << endl; + qScoreString += ' ' + temp; + } + //cout << "done reading " << endl; istringstream qScoreStringStream(qScoreString); + int count = 0; while(!qScoreStringStream.eof()){ - qScoreStringStream >> score; + if (m->control_pressed) { break; } + string temp; + qScoreStringStream >> temp; m->gobble(qScoreStringStream); + + //check temp to make sure its a number + if (!m->isContainingOnlyDigits(temp)) { m->mothurOut("[ERROR]: In sequence " + seqName + "'s quality scores, expected a number and got " + temp + ", setting score to 0."); m->mothurOutEndLine(); temp = "0"; } + convert(temp, score); + + //cout << count << '\t' << score << endl; qScores.push_back(score); + count++; } - qScores.pop_back(); + //qScores.pop_back(); + +// string scores = ""; +// +// while(!qFile.eof()){ +// +// qFile >> seqName; +// +// //get name +// if (seqName.length() != 0) { +// seqName = seqName.substr(1); +// while (!qFile.eof()) { +// char c = qFile.get(); +// //gobble junk on line +// if (c == 10 || c == 13){ break; } +// } +// m->gobble(qFile); +// } +// +// //get scores +// while(qFile){ +// char letter=qFile.get(); +// if((letter == '>')){ qFile.putback(letter); break; } +// else if (isprint(letter)) { scores += letter; } +// } +// m->gobble(qFile); +// +// break; +// } +// +// //convert scores string to qScores +// istringstream qScoreStringStream(scores); +// +// int score; +// while(!qScoreStringStream.eof()){ +// +// if (m->control_pressed) { break; } +// +// qScoreStringStream >> score; +// qScores.push_back(score); +// } +// +// qScores.pop_back(); + seqLength = qScores.size(); + //cout << "seqlength = " << seqLength << '\t' << count << endl; + } catch(exception& e) { m->errorOut(e, "QualityScores", "QualityScores"); @@ -102,6 +164,9 @@ void QualityScores::trimQScores(int start, int end){ try { vector hold; + + //cout << seqName << '\t' << start << '\t' << end << '\t' << qScores.size() << endl; + //for (int i = 0; i < qScores.size(); i++) { cout << qScores[i] << end; } if(end == -1){ hold = vector(qScores.begin()+start, qScores.end()); qScores = hold; @@ -194,7 +259,6 @@ bool QualityScores::stripQualRollingAverage(Sequence& sequence, double qThreshol if(rollingSum / (double)(i+1) < qThreshold){ end = i; -// cout << i+1 << '\t' << seqName << '\t' << rollingSum / (double)(i+1) << endl; break; } } @@ -229,35 +293,41 @@ bool QualityScores::stripQualWindowAverage(Sequence& sequence, int stepSize, int int end = windowSize; int start = 0; - + if(seqLength < windowSize) { return 0; } - while(start < seqLength){ + while((start+windowSize) < seqLength){ double windowSum = 0.0000; for(int i=start;i= seqLength){ end = seqLength - 1; } + + if(end >= seqLength){ end = seqLength; } + } - + if(end == -1){ end = seqLength; } + //failed first window + if (end < windowSize) { return 0; } + sequence.setUnaligned(rawSequence.substr(0,end)); trimQScores(-1, end); return 1; } catch(exception& e) { - m->errorOut(e, "QualityScores", "flipQScores"); + m->errorOut(e, "QualityScores", "stripQualWindowAverage"); exit(1); } @@ -310,15 +380,17 @@ void QualityScores::updateQScoreErrorMap(map >& qualErrorMap, int seqLength = errorSeq.size(); int qIndex = start - 1; + for(int i=0;i stop){ break; } } }