X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=makecontigscommand.h;h=2308b657acf7951be6373a527f44546b555a7d2f;hb=ce8794490ab1d83adcdb2b92e0302a1e43e17adf;hp=dc094a2b3e951218447927d9ceeb639d8b833f53;hpb=1f3d51cfdbe3e28c780501b7ed82d64fe27dba98;p=mothur.git diff --git a/makecontigscommand.h b/makecontigscommand.h index dc094a2..2308b65 100644 --- a/makecontigscommand.h +++ b/makecontigscommand.h @@ -168,7 +168,7 @@ static DWORD WINAPI MyContigsThreadFunction(LPVOID lpParam){ contigScores.push_back(scores1[ABaseMap[i]]); if (scores1[ABaseMap[i]] < scores2[BBaseMap[i]]) { contigScores[i] = scores2[BBaseMap[i]]; } }else if (((seq1[i] == '.') || (seq1[i] == '-')) && ((seq2[i] != '-') && (seq2[i] != '.'))) { //seq1 is a gap and seq2 is a base, choose seq2, unless quality score for base is below threshold. In that case eliminate base - if (scores2[BBaseMap[i]] >= pDataArray->threshold)) { + if (scores2[BBaseMap[i]] >= pDataArray->threshold) { contig += seq2[i]; contigScores.push_back(scores2[BBaseMap[i]]); }