X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=qualityscores.cpp;h=fca3d9f4c9cd17947116fbdb9a872bfce863fe47;hb=662c0b60d65f79f672ab199300b7ee4975233465;hp=4b315b1c397d3a42921b0071253065b26b4befe6;hpb=0fb6d165c8dc8dc7153a101513a05f457431d0bc;p=mothur.git diff --git a/qualityscores.cpp b/qualityscores.cpp index 4b315b1..fca3d9f 100644 --- a/qualityscores.cpp +++ b/qualityscores.cpp @@ -16,6 +16,7 @@ QualityScores::QualityScores(){ m = MothurOut::getInstance(); seqName = ""; seqLength = -1; + } catch(exception& e) { m->errorOut(e, "QualityScores", "QualityScores"); @@ -29,34 +30,36 @@ QualityScores::QualityScores(ifstream& qFile){ try { m = MothurOut::getInstance(); - + seqName = ""; - seqLength = -1; int score; - string line; - getline(qFile, line); - istringstream nameStream(line); - - nameStream >> seqName; - seqName = seqName.substr(1); - - getline(qFile, line); - istringstream qualStream(line); - - while(qualStream){ - qualStream >> score; + qFile >> seqName; + m->getline(qFile); + + if (seqName == "") { + m->mothurOut("Error reading quality file, name blank at position, " + toString(qFile.tellg())); + m->mothurOutEndLine(); + } + else{ + seqName = seqName.substr(1); + } + + string qScoreString = m->getline(qFile); + + istringstream qScoreStringStream(qScoreString); + while(!qScoreStringStream.eof()){ + qScoreStringStream >> score; qScores.push_back(score); } qScores.pop_back(); - - seqLength = qScores.size(); + seqLength = qScores.size(); } catch(exception& e) { m->errorOut(e, "QualityScores", "QualityScores"); exit(1); } - + } /**************************************************************************************************/ @@ -104,8 +107,10 @@ void QualityScores::trimQScores(int start, int end){ qScores = hold; } if(start == -1){ - hold = vector(qScores.begin(), qScores.begin()+end); //not sure if indexing is correct - qScores = hold; + if(qScores.size() > end){ + hold = vector(qScores.begin(), qScores.begin()+end); + qScores = hold; + } } seqLength = qScores.size(); @@ -153,9 +158,12 @@ bool QualityScores::stripQualThreshold(Sequence& sequence, double qThreshold){ } } + //every score passed + if (end == (seqLength-1)) { end = seqLength; } + sequence.setUnaligned(rawSequence.substr(0,end)); trimQScores(-1, end); - + return 1; } catch(exception& e) { @@ -193,9 +201,11 @@ bool QualityScores::stripQualRollingAverage(Sequence& sequence, double qThreshol if(end == -1){ end = seqLength; } + sequence.setUnaligned(rawSequence.substr(0,end)); trimQScores(-1, end); + return 1; } catch(exception& e) { @@ -213,24 +223,25 @@ bool QualityScores::stripQualWindowAverage(Sequence& sequence, int stepSize, int int seqLength = sequence.getNumBases(); if(seqName != sequence.getName()){ - m->mothurOut("sequence name mismatch btwn fasta: " + sequence.getName() + " and qual file: " + seqName); - m->mothurOutEndLine(); + m->mothurOut("sequence name mismatch between fasta: " + sequence.getName() + " and qual file: " + seqName); + m->mothurOutEndLine(); } int end = windowSize; int start = 0; - + if(seqLength < windowSize) { return 0; } + while(start < seqLength){ double windowSum = 0.0000; for(int i=start;i= seqLength){ end = seqLength - 1; } } - if(end == -1){ end = seqLength; } sequence.setUnaligned(rawSequence.substr(0,end)); @@ -287,7 +297,67 @@ bool QualityScores::cullQualAverage(Sequence& sequence, double qAverage){ return success; } catch(exception& e) { - m->errorOut(e, "TrimSeqsCommand", "cullQualAverage"); + m->errorOut(e, "QualityScores", "cullQualAverage"); + exit(1); + } +} + +/**************************************************************************************************/ + +void QualityScores::updateQScoreErrorMap(map >& qualErrorMap, string errorSeq, int start, int stop, int weight){ + try { + + int seqLength = errorSeq.size(); + + int qIndex = start - 1; + for(int i=0;i stop){ break; } + } + } + catch(exception& e) { + m->errorOut(e, "QualityScores", "updateQScoreErrorMap"); + exit(1); + } +} + +/**************************************************************************************************/ + +void QualityScores::updateForwardMap(vector >& forwardMap, int start, int stop, int weight){ + try { + + int index = 0; + for(int i=start-1;ierrorOut(e, "QualityScores", "updateForwardMap"); + exit(1); + } +} + +/**************************************************************************************************/ + +void QualityScores::updateReverseMap(vector >& reverseMap, int start, int stop, int weight){ + try { + + int index = 0; + for(int i=stop-1;i>=start;i--){ + reverseMap[index++][qScores[i]] += weight; + } + + } + catch(exception& e) { + m->errorOut(e, "QualityScores", "updateForwardMap"); exit(1); } }