Skip to content

Commit 1bf7c8f

Browse files
committed
match on '<NON_REF>'
see brentp/vcfanno#92
1 parent f2b23d6 commit 1bf7c8f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

interfaces/interfaces.go

+3
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,9 @@ func SameVariant(a, b IRefAlt) bool {
184184
}
185185
}
186186
}
187+
if a.Alt()[0] == "<NON_REF>" || b.Alt()[0] == "<NON_REF>" {
188+
return true
189+
}
187190
return false
188191
}
189192

0 commit comments

Comments
 (0)