Description Usage Arguments Details Value Author(s) See Also Examples
Intersection between two sets of genomic regions
1 | genomic_corr_pintersect(query, reference, ...)
|
query |
genomic region 1, a |
reference |
genomic region 2, a |
... |
pass to |
For each region in query, it calculates the percent that is covered by reference.
The returned value is percent which is how much query is covered by reference.
Be careful with the strand in your GRanges object!
A single correlation value.
Zuguang Gu <z.gu@dkfz.de>
1 2 3 | gr1 = GRanges(seqnames = "chr1", ranges = IRanges(c(1, 5), c(3, 8)))
gr2 = GRanges(seqnames = "chr1", ranges = IRanges(c(2, 6), c(4, 8)))
genomic_corr_pintersect(gr1, gr2)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.