Description Usage Arguments Value Examples
positionSequence
generates sequences of integer values
along the range information of x
. This can be used for navigating
specific positions on a range information.
1 2 3 4 5 6 7 8 9 10 | positionSequence(x, order = FALSE, decreasing = FALSE)
## S4 method for signature 'Ranges'
positionSequence(x, order = FALSE, decreasing = FALSE)
## S4 method for signature 'RangesList'
positionSequence(x, order = FALSE, decreasing = FALSE)
## S4 method for signature 'Ranges'
as.integer(x)
|
x |
a |
order |
|
decreasing |
|
a integer
vector if x is a
GRanges
object and a
IntegerList
if x is a
GRangesList
1 2 3 4 5 6 7 8 9 | library(GenomicRanges)
# Returns an integer vector
gr <- GRanges("chr1:1-5:+")
positionSequence(gr)
gr2 <- GRanges("chr1:1-5:-")
positionSequence(gr)
# returns an IntegerList
grl <- GRangesList("1" = gr,"2" = gr,"3" = gr2) # must be named
positionSequence(grl)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.