unlistGrl: Safe unlist

Description Usage Arguments Value Examples

View source: R/grl_helpers.R

Description

Same as [AnnotationDbi::unlist2()], keeps names correctly. Two differences is that if grl have no names, it will not make integer names, but keep them as null. Also if the GRangesList has names , and also the GRanges groups, then the GRanges group names will be kept.

Usage

1
unlistGrl(grl)

Arguments

grl

a GRangesList

Value

a GRanges object

Examples

1
2
3
4
5
6
ORF <- GRanges(seqnames = "1",
               ranges = IRanges(start = c(1, 10, 20),
                                end = c(5, 15, 25)),
               strand = "+")
grl <- GRangesList(tx1_1 = ORF)
unlistGrl(grl)

ORFik documentation built on March 27, 2021, 6 p.m.