Description Usage Arguments Value Examples
The RleListList is simply a List where all elements are RleList. The most likely use case is a collection of genome-wide signals calculated using e.g. coverage() or imported using import.bw().
1 |
... |
RleList-objects to be gathered into a list. |
RleListList
1 2 3 4 5 6 7 8 9 10 | # Example coverage calculate
gr <- GRanges(seqnames = paste0("chr1", 1:10),
ranges = IRanges(1:10, width = 1))
cvg <- coverage(gr)
# Use constructor:
RleListList(cvg, cvg)
# Or simply coerce to a List
as(list(cvg, cvg), "List")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.