Description Usage Arguments Details Value See Also Examples
Plots a line joining the data points along the genome and fills the area below the line.
1 |
karyoplot |
(a |
data |
(a |
chr |
(a charecter vector) A vector of chromosome names specifying the chromosomes of the data points. If |
x |
(a numeric vector) A numeric vector with the positions (in base pairs) of the data points in the chromosomes. If |
y |
(a numeric vector) A numeric vector with the values of the data points. If |
base.y |
(numeric) The y value at wich the polygon will be closed. (defaults to 0) |
ymin |
(numeric) The minimum value of |
ymax |
(numeric) The maximum value of |
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 |
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) |
col |
(color) The fill color of the area. If NULL the color will be assigned automatically, either a lighter version of the color used for the outer line or gray if the line color is not defined. If NA no area will be drawn. (defaults to NULL) |
border |
(color) The color of the line enclosing the area. If NULL the color will be assigned automatically, either a darker version of the color used for the area or black if col=NA. If NA no border will be drawn. (Defaults to NULL) |
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 a karyoploteR low-level plotting functions. Given a set of positions
on the genome (chromosome and base) and a value (y) for each of them, it
plots a line joining them and shades the area below them. Data can be
provided via a GRanges
object (data
), independent parameters
for chr, x and y or a combination of both. A number of parameters can be used
to define exactly where and how the line and area are drawn. In addition,
via the ellipsis operator (...
), kpArea
accepts any parameter
valid for lines
and polygon
(e.g. lwd
, lty
, col
, density
...) The lines are drawn in a per
chromosome basis, so it is not possible to draw lines encompassing more than
one chromosome.
Returns the original karyoplot object, unchanged.
plotKaryotype
, kpLines
, kpText
, kpPlotRibbon
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
set.seed(1000)
data.points <- sort(createRandomRegions(nregions=500, mask=NA))
mcols(data.points) <- data.frame(y=runif(500, min=0, max=1))
kp <- plotKaryotype("hg19", plot.type=2, chromosomes=c("chr1", "chr2"))
kpDataBackground(kp, data.panel=1)
kpDataBackground(kp, data.panel=2)
kpArea(kp, data=data.points)
kpArea(kp, data=data.points, col="lightgray", border="red", lty=2, r0=0, r1=0.5)
kpArea(kp, data=data.points, border="red", data.panel=2, r0=0, r1=0.5)
kpArea(kp, data=data.points, border="blue", data.panel=2, r0=0, r1=0.5, base.y=1)
kpArea(kp, data=data.points, border="gold", data.panel=2, r0=0.5, r1=1, base.y=0.5)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.