Description Usage Arguments Author(s) Examples
Function for identifying consensus peak among two peaks sets sharing a minimum relative overlap.
1 |
query |
Object of class |
subject |
Object of class |
output |
By default |
Thomas Girke
1 2 3 4 5 6 | ## Sample Data Sets
grq <- GRanges(seqnames = Rle(c("chr1", "chr2", "chr1", "chr3"), c(1, 3, 2, 4)), ranges = IRanges(seq(1, 100, by=10), end = seq(30, 120, by=10)), strand = Rle(strand(c("-", "+", "-")), c(1, 7, 2)))
grs <- shift(grq[c(2,5,6)], 5)
## Run olRanges function
olRanges(query=grq, subject=grs, output="df")
olRanges(query=grq, subject=grs, output="gr")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.