Merge branch 'master' of ssh://gsa1/humgen/gsa-scr1/gsa-engineering/git/unstable

This commit is contained in:
Mark DePristo 2011-09-22 11:20:10 -04:00
commit 93dd1faa5f
1 changed files with 0 additions and 3 deletions

View File

@ -681,9 +681,6 @@ public class ReadUtils {
@Ensures({"result >= read.getUnclippedStart()", "result <= read.getUnclippedEnd() || readIsEntirelyInsertion(read)"})
public static int getRefCoordSoftUnclippedEnd(SAMRecord read) {
if ( read.getCigar().numCigarElements() == 1 && read.getCigar().getCigarElement(0).getOperator().equals(CigarOperator.INSERTION)) {
return read.getUnclippedEnd();
}
int stop = read.getUnclippedStart();
if (readIsEntirelyInsertion(read))