kpRect | R Documentation |
Plots rectangles at the specified genomic positions.
kpRect(karyoplot, data=NULL, chr=NULL, x0=NULL, x1=x0, y0=NULL, y1=NULL, ymax=NULL, ymin=NULL, r0=NULL, r1=NULL, data.panel=1, clipping=TRUE, ...)
karyoplot |
(a |
data |
(a |
chr |
(a charecter vector) A vector of chromosome names specifying the chromosomes of the data points. If |
x0 |
(a numeric vector) A numeric vector of x left positions (in base pairs). If |
x1 |
(a numeric vector) A numeric vector of x right positions (in base pairs). If |
y0 |
(a numeric vector) A numeric vector of y bottom positions. If |
y1 |
(a numeric vector) A numeric vector of y top positions. If |
ymax |
(numeric) The maximum value of |
ymin |
(numeric) The minimum value of |
r0 |
(numeric) r0 and r1 define the vertical range of the data panel to be used to draw this plot. They can be used to split the data panel in different vertical ranges (similar to tracks in a genome browser) to plot differents data. If NULL, they are set to the min and max of the data panel, it is, to use all the available space. (defaults to NULL) |
r1 |
(numeric) r0 and r1 define the vertical range of the data panel to be used to draw this plot. They can be used to split the data panel in different vertical ranges (similar to tracks in a genome browser) to plot differents data. If NULL, they are set to the min and max of the data panel, it is, to use all the available space. (defaults to NULL) |
data.panel |
(numeric) The identifier of the data panel where the data is to be plotted. The available data panels depend on the plot type selected in the call to |
clipping |
(boolean) Only used if zooming is active. If TRUE, the data representation will be not drawn out of the drawing area (i.e. in margins, etc) even if the data overflows the drawing area. If FALSE, the data representation may overflow into the margins of the plot. (defaults to TRUE) |
... |
The ellipsis operator can be used to specify any additional graphical parameters. Any additional parameter will be passed to the internal calls to the R base plotting functions. |
This is one of the functions from karyoploteR implementing the adaptation to the genome context
of basic plot functions
from R base graphics. Given a set of positions on the genome (chromosome, x0 and x1) and values
(y0 and y1) for each of them, it plots rectangles going from (x0, y0) to (x1, y1). Data can be
provided via a GRanges
object (data
), independent parameters for chr,
x0, x1, y0 and y1, or a combination of both.
A number of parameters can be used to define exactly where and how the rectangles are drawn.
In addition, via the ellipsis operator (...
), kpRect
accepts any parameter
valid for rect
(e.g. border
, col
, ...)
There's more information at the https://bernatgel.github.io/karyoploter_tutorial/karyoploteR tutorial.
Returns the original karyoplot object, unchanged.
plotKaryotype
, kpLines
, kpPoints
kpPlotRegions
set.seed(1000)
data.points <- sort(createRandomRegions(nregions=500, length.mean=2000000, mask=NA))
y <- runif(500, min=0, max=0.8)
mcols(data.points) <- data.frame(y0=y, y1=y+0.2)
kp <- plotKaryotype("hg19", plot.type=2, chromosomes=c("chr1", "chr2"))
kpDataBackground(kp, data.panel=1)
kpDataBackground(kp, data.panel=2)
kpRect(kp, data=data.points, col="black")
kpRect(kp, data=randomizeRegions(data.points, mask=NA), y0=0, y1=1, r0=0, r1=0.2, border=NA, col="lightblue", data.panel=2)
kpRect(kp, data=randomizeRegions(data.points, mask=NA), y0=0, y1=1, r0=0.3, r1=0.5, border=NA, col="lightgreen", data.panel=2)
kpRect(kp, data=randomizeRegions(data.points, mask=NA), y0=0, y1=1, r0=0.6, r1=0.8, border=NA, col="purple", data.panel=2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.