Description Usage Arguments Value See Also Examples
View source: R/ranges_helpers.R
Will tile a GRangesList into single bp resolution, each group of the list will be splited by positions of 1. Returned values are sorted as the same groups as the original GRangesList, except they are in bp resolutions. This is not supported originally by GenomicRanges for GRangesList.
1 | tile1(grl, sort.on.return = TRUE, matchNaming = TRUE)
|
grl |
a |
sort.on.return |
logical (T), should the groups be sorted before return. |
matchNaming |
logical (T), should groups keep unlisted names and meta data.(This make the list very big, for > 100K groups) |
a GRangesList grouped by original group, tiled to 1
Other ExtendGenomicRanges:
asTX()
,
coveragePerTiling()
,
extendLeaders()
,
extendTrailers()
,
reduceKeepAttr()
,
txSeqsFromFa()
,
windowPerGroup()
1 2 3 4 5 6 7 8 9 10 | gr1 <- GRanges("1", ranges = IRanges(start = c(1, 10, 20),
end = c(5, 15, 25)),
strand = "+")
gr2 <- GRanges("1", ranges = IRanges(start = c(20, 30, 40),
end = c(25, 35, 45)),
strand = "+")
names(gr1) = rep("tx1_1", 3)
names(gr2) = rep("tx1_2", 3)
grl <- GRangesList(tx1_1 = gr1, tx1_2 = gr2)
tile1(grl)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.