Skip to content

Commit

Permalink
[FIX] sam/bam with new extension modes
Browse files Browse the repository at this point in the history
  • Loading branch information
h-2 committed Aug 19, 2016
1 parent 51facff commit 770c963
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/lambda.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2038,6 +2038,9 @@ iterateMatchesFullSimd(TLocalHolder & lH)
appendValue(depSetV, source(bm.alignRow1));

_setFrames(bm, *it, lH);

bm._n_qId = it->qryId / qNumFrames(TGlobalHolder::blastProgram);
bm._n_sId = it->subjId / sNumFrames(TGlobalHolder::blastProgram);
}

// fill up last batch
Expand Down Expand Up @@ -2219,6 +2222,9 @@ iterateMatchesFullSerial(TLocalHolder & lH)
}

_setFrames(bm, m, lH);

bm._n_qId = it->qryId / qNumFrames(TGlobalHolder::blastProgram);
bm._n_sId = it->subjId / sNumFrames(TGlobalHolder::blastProgram);
}

_writeRecord(record, lH);
Expand Down

0 comments on commit 770c963

Please sign in to comment.