Skip to content

Commit ad6d3ee

Browse files
committed
Allow indels that partially overlap repeat regions
1 parent 62142c6 commit ad6d3ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

filter_blacklist_regions.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ annotate_maf <- function(maf, blacklist, rmsk) {
1313

1414
blacklist_overlap <- foverlaps(maf[, .(Chromosome, Start_Position, End_Position)],
1515
blacklist,
16-
type = "any",
16+
type = "within",
1717
mult = "first")
1818

1919
rmsk_overlap <- foverlaps(maf[, .(Chromosome, Start_Position, End_Position)],
2020
rmsk,
21-
type = "any",
21+
type = "within",
2222
mult = "first")
2323

2424
if (!('FILTER' %in% names(maf))) maf$FILTER = '.'

0 commit comments

Comments
 (0)