Description Usage Arguments Details Value Author(s) See Also Examples
Intersections between two sets of genomic regions
1 | genomic_corr_nintersect(query, reference, ...)
|
query |
genomic region 1, a |
reference |
genomic region 2, a |
... |
pass to |
It calculates number of regions in query
that overlap with reference
.
Please note this value is not equal to the number of intersections betweenn two sets of regions,
because one region in query
may overlap with more than one
regions in 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_nintersect(gr1, gr2)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.