Skip to content

Commit 75a1656

Browse files
committed
Fixed the missing %outside% error
1 parent 9b3b8d3 commit 75a1656

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/visualisation.r

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ fortify_seqlmplot = function(segment, values, annotation, genome_information, ex
1818
df = merge(df, a)
1919

2020
# Add region information
21-
probe_det = data.frame(Probe = names(gi_expanded), Region = !(gi_expanded %outside% gi), Position = start(gi_expanded))
21+
probe_det = data.frame(Probe = names(gi_expanded), Region = gi_expanded %over% gi, Position = start(gi_expanded))
2222
df = merge(df, probe_det)
2323

2424
# Calculate the box that shows region

0 commit comments

Comments
 (0)