Description Usage Arguments Value Author(s) See Also Examples
View source: R/population_ranges.R
Illustrates summarized CNV regions along a chromosome.
1 | plotRecurrentRegions(regs, genome, chr, pthresh = 0.05)
|
regs |
A |
genome |
Character. A valid UCSC genome assembly ID such as 'hg19' or 'bosTau6'. |
chr |
Character. A UCSC-style chromosome name such as 'chr1'. |
pthresh |
Numeric. Significance threshold for recurrence. Defaults to 0.05. |
None. Plots to a graphics device.
Ludwig Geistlinger
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | # read in example CNV calls
data.dir <- system.file("extdata", package="CNVRanger")
call.file <- file.path(data.dir, "Silva16_PONE_CNV_calls.csv")
calls <- read.csv(call.file, as.is=TRUE)
# store in a GRangesList
grl <- GenomicRanges::makeGRangesListFromDataFrame(calls,
split.field="NE_id", keep.extra.columns=TRUE)
# summarize CNV regions
cnvrs <- populationRanges(grl, density=0.1, est.recur=TRUE)
# plot
plotRecurrentRegions(cnvrs, genome="bosTau6", chr="chr1")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.