Description Usage Arguments Details Note Author(s) See Also Examples
Displays an array image and a genomic representation of a normalized arrayCGH.
1 2 3 4 5 6 7 | ## S3 method for class 'arrayCGH'
report.plot(arrayCGH, x="PosOrder", y=c("LogRatioNorm",
"LogRatio"), chrLim=NULL, layout=TRUE, main=NULL, zlim=NULL, ...)
## Default S3 method:
report.plot(spot.data, clone.data, design, x="PosOrder",
y=c("LogRatioNorm", "LogRatio"), chrLim=NULL, layout=TRUE, main=NULL,
zlim=NULL, ...)
|
arrayCGH |
an object of type |
spot.data |
data.frame with spot-level information to be passed to arrayPlot. |
clone.data |
data.frame with clone-level information to be passed to genome.plot. |
design |
vector of length 4 with array design: number of blocks per column and per row, number of columns and rows per block. |
x |
a variable name from arrayCGH\$cloneValues giving the order position of the clones along the genome. |
y |
a vector of one or two variable names to be plotted on the
array and along the genome. The first one is taken from
|
chrLim |
an optional variable name from arrayCGH\$cloneValues giving the limits of each chromosome. |
layout |
if |
main |
title for the genomic profile. |
zlim |
numeric vector of length 2 to be passed to
|
... |
further arguments to be passed to |
This function successively calls arrayPlot
and genome.plot
.
People interested in tools for array-CGH analysis can visit our web-page: http://bioinfo.curie.fr.
Pierre Neuvial, manor@curie.fr.
genome.plot
, arrayPlot
, html.report
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | data(spatial)
### edge: local spatial bias
## aggregate arrayCGH without normalization for comparison with
## normalized array
edge.nonorm <- norm(edge, flag.list=NULL, FUN=median, na.rm=TRUE)
edge.nonorm <- sort(edge.nonorm, position.var="PosOrder")
layout(matrix(c(1,2,4,5,3,3,6,6), 4,2),width=c(1, 4), height=c(6,1,6,1))
report.plot(edge.nonorm, chrLim="LimitChr", layout=FALSE,
main="Pangenomic representation (before normalization)", zlim=c(-1,1),
ylim=c(-3,1))
report.plot(edge.norm, chrLim="LimitChr", layout=FALSE,
main="Pangenomic representation (after normalization)", zlim=c(-1,1),
ylim=c(-3,1))
### gradient: global array Trend
## aggregate arrayCGH without normalization for comparison with
## normalized array
gradient.nonorm <- norm(gradient, flag.list=NULL, FUN=median, na.rm=TRUE)
gradient.nonorm <- sort(gradient.nonorm)
layout(matrix(c(1,2,4,5,3,3,6,6), 4,2),width=c(1, 4), height=c(6,1,6,1))
report.plot(gradient.nonorm, chrLim="LimitChr", layout=FALSE,
main="Pangenomic representation (before normalization)", zlim=c(-2,2),
ylim=c(-3,2))
report.plot(gradient.norm, chrLim="LimitChr", layout=FALSE,
main="Pangenomic representation (after normalization)", zlim=c(-2,2),
ylim=c(-3,2))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.