Skip to content

Commit d9d3e56

Browse files
committed
Fixed REF for DEL SV.
1 parent f70d926 commit d9d3e56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/astrazeneca/vardict/modules/ToVarsBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -746,7 +746,7 @@ else if (deletionLength < instance().conf.SVMINLEN) {
746746
startPosition++;
747747
}
748748

749-
if (varallele.equals("<DEL>") && refallele.length() > 1) {
749+
if (varallele.equals("<DEL>") && refallele.length() >= 1) {
750750
refallele = ref.containsKey(startPosition) ? ref.get(startPosition).toString() : "";
751751
if (refCoverage.containsKey(startPosition - 1)) {
752752
totalPosCoverage = refCoverage.get(startPosition - 1);

0 commit comments

Comments
 (0)