Description Usage Arguments Details Note Author(s) See Also Examples
Displays a pan-genomic representation of a normalized arrayCGH.
1 2 3 4 5 |
arrayCGH |
an object of type |
data |
a data frame with two columns: 'x' and 'y', and optionally a column data\$chrLim giving the limits of each chromosome |
x |
a variable name from |
y |
a variable name from |
chrLim |
an optional variable name from |
col.var |
a variable name from |
clim |
a numeric vector of length 2: color range limits (used if |
cex |
a numerical value giving the amount by which plotting text
and symbols should be scaled relative to the default: see |
xlab |
a title for the x axis: see |
ylab |
a title for the y axis: see |
pch |
either an integer specifying a symbol or a single character
to be used as the default in plotting points: see |
... |
further arguments to be passed to |
if col.var
is a numeric variable, y
colors are
proportionnal to col.var
values; if it is a character variable
or a factor, one color is assigned to each different value of
col.var
. If col.var
is NULL, colors are proportionnal to
y
values.
People interested in tools for array-CGH analysis can visit our web-page: http://bioinfo.curie.fr.
Pierre Neuvial, manor@curie.fr.
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)
## default color code: log-ratios
## Not run:
genome.plot(edge.norm, chrLim="LimitChr")
## End(Not run)
## color code determined by a qualitative variable: ZoneGNL (DNA copy number code)
edge.norm$cloneValues$ZoneGNL <- as.factor(edge.norm$cloneValues$ZoneGNL)
## Not run:
genome.plot(edge.norm, col.var="ZoneGNL")
## End(Not run)
## comparing profiles with and without normalization
## aggregate data without normalization (flags)
gradient.nonorm <- norm(gradient, flag.list=NULL, var="LogRatio",
FUN=median, na.rm=TRUE)
gradient.nonorm <- sort(gradient.nonorm)
## Not run:
genome.plot(gradient.nonorm, pch=20, main="Genomic profile without
normalization", chrLim="LimitChr")
x11()
genome.plot(gradient.norm, pch=20, main="Genomic profile with
normalization", chrLim="LimitChr")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.