Description Usage Arguments Value Examples
This function splits bi-directional ranges into + and - stranded ranges. It duplicates the ranges which are '*'.
1 | deconvolveBidirectionalPromoters(granges)
|
granges |
A stranded GRanges object |
GRanges with only '+' and '-' strands. GRanges with '*' strand have been duplicated and split into forward and reverse strands.
1 2 3 4 5 6 7 8 | data(ce11_all_REs)
library(GenomicRanges)
proms <- ce11_all_REs[grepl('prom', ce11_all_REs$regulatory_class)]
proms
table(strand(proms))
proms <- deconvolveBidirectionalPromoters(proms)
proms
table(strand(proms))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.