Skip to content

Commit

Permalink
Revert "Bug fix for RR: don't let the softclip start position be less…
Browse files Browse the repository at this point in the history
… than 1"

this introduced a bug in reduce reads by de-activating it's hard clipping of the out of bounds soft-clips (specially in the MT).
DEV-322 #resolve #time 4m

This reverts commit 42acfd9.
  • Loading branch information
Mauricio Carneiro committed Dec 12, 2012
1 parent bcbeeb4 commit f5b22ba
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -397,9 +397,6 @@ public int getSoftStart() {
else if (op != CigarOperator.HARD_CLIP) else if (op != CigarOperator.HARD_CLIP)
break; break;
} }

if ( softStart < 1 )
softStart = 1;
} }
return softStart; return softStart;
} }
Expand Down

0 comments on commit f5b22ba

Please sign in to comment.