Description Usage Arguments Value Author(s) See Also Examples
This function display a static view of the genomic profile stored in an
object of class "rCGH"
.
1 2 3 4 |
object |
: An object of class |
showCopy |
: logical. To show the estimated copy numbers instead of the Log2Ratios.
default is |
symbol |
: character. A valid HUGO symbol (case insensitive). |
gain |
: numeric. A gain threshold value (in Log2(Ratio)) from where gained segments will be shown, in blue. |
loss |
: numeric. A loss threshold value (in Log2(Ratio)) from where lossed segments will be shown, in red. |
minLen |
: numeric. The mininal length for a segment, in Kb.
When |
pCol |
: string. The probe points color. DEfault is |
GLcol |
: vector. A vector of 2 colors: the gained and lost segments colors,
respectively. Default is |
Title |
: character string. A title for the density plot. If |
ylim |
: numeric. A vector of two values specifying a range for the y-axis.
If |
None.
Frederic Commo
plotDensity
, plotLOH
, multiplot
,
view
1 2 3 4 5 6 7 8 9 10 11 12 | filePath <- system.file("extdata", "Affy_cytoScan.cyhd.CN5.CNCHP.txt.bz2",
package = "rCGH")
cgh <- readAffyCytoScan(filePath, sampleName = "AffyScHD")
cgh <- adjustSignal(cgh, nCores=1)
cgh <- segmentCGH(cgh, nCores=1)
cgh <- EMnormalize(cgh)
# Static visalization using Log2Ratios
plotProfile(cgh, symbol = "erbb2")
# Static visalization using estimated copy numbers
plotProfile(cgh, showCopy = TRUE, symbol = "erbb2")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.