Fixing merge conflicts related to the comment formatting in the BQSR.

This commit is contained in:
Ryan Poplin 2012-10-10 16:03:58 -04:00
commit 08b8ce6903
1 changed files with 1 additions and 1 deletions

View File

@ -230,7 +230,7 @@ public class BaseRecalibrator extends LocusWalker<Long, Long> implements TreeRed
final int offset = p.getOffset();
// This read has been marked to be skipped or base is low quality (we don't recalibrate low quality bases)
if (readHasBeenSkipped(read) || isLowQualityBase(p))
if (readHasBeenSkipped(read) || p.isInsertionAtBeginningOfRead() || isLowQualityBase(p) )
continue;
if (readNotSeen(read)) {