Skip to contents

Example IRanges object.

Usage

data(IRanges)

Format

An object of class IRanges of length 3.

Value

IRanges.

Note

Updated 2023-04-26.

Examples

if (requireNamespace("IRanges", quietly = TRUE)) {
    data(IRanges)
    class(IRanges)
    is(IRanges, "IRanges")
    print(IRanges)
}
#> IRanges object with 3 ranges and 1 metadata column:
#>         start       end     width |     score
#>     <integer> <integer> <integer> | <integer>
#>   a         1         5         5 |         1
#>   b        10        14         5 |         2
#>   c        20        24         5 |         3