Description Usage Arguments Details Value Examples
Returns overlapping named ranges for input ranges
1 | getRegionOL(gr, rngList)
|
gr |
(GRanges) query ranges |
rngList |
(list) keys are names, and values are GRanges, each range of which has a name (in 'name' column). Note: It is faster to provide a list of length 1 ; if the list is long, combining into a single GRanges object could prove slow. |
Given a set of query GRanges, and a subject list-of-GRanges,
updates the query with a column 'LOCUS_NAMES' containing the names of
ranges overlapped by the query. One application is to map structural
variants, such as CNVs, to genes in pathways of interest. In this
scenario gr
would contain the patient CNVs, and rngList
would be a list of GenomicRanges objects, one per cellular pathway.
(GRanges) query ranges with the added column 'LOCUS_NAMES'. Where a range overlaps with multiple loci, the names are reported as a comma-separated vector
1 2 | data(cnv_GR,pathway_GR)
x <- getRegionOL(cnv_GR,pathway_GR)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.