pseudoIntronsPerGroup | R Documentation |
If an intron is of length < 'width' * 2, it will not be split into pseudo.
pseudoIntronsPerGroup(grl, width = 100)
grl |
a GrangesList of length 1 |
width |
numeric, default 100. The size of pseudo flanks. |
a GRangesList
tx <- GRangesList(GRanges("1", IRanges(c(1, 150, 1e5, 1e6)), "+"))
pseudoIntronsPerGroup(tx) # See intron 1 is not split
tx_2 <- rep(GRangesList(GRanges("1", IRanges(c(1, 150, 1e5, 1e6)), "+")), 2)
pseudoIntronsPerGroup(tx_2)
pseudoIntronsPerGroup(tx_2, 1e6)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.