RleListList: List of RleList-objects

Description Usage Arguments Value Examples

Description

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().

Usage

1

Arguments

...

RleList-objects to be gathered into a list.

Value

RleListList

Examples

 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")

MalteThodberg/TeMPO documentation built on May 15, 2019, 11:48 a.m.