as_ranges {plyranges} | R Documentation |
Coerce an Rle or RleList object to Ranges
as_ranges(.data)
.data |
This function is behind compute_coverage()
.
an IRanges()
object if the input is an
Rle()
object or a GRanges()
object for
an RleList()
object.
S4Vectors::Rle()
,IRanges::RleList()
x <- S4Vectors::Rle(10:1, 1:10) as_ranges(x) # must have names set y <- IRanges::RleList(chr1 = x) as_ranges(y)