Description Usage Arguments Details Value Author(s) References See Also Examples
A function for performing the Log2Ratio segmentation on an object of class
"rCGH"
. See the details
section below.
1 2 3 | ## S4 method for signature 'rCGH'
segmentCGH(object, Smooth=TRUE, UndoSD = NULL,
minLen = 10, nCores=NULL, verbose = TRUE)
|
object |
: An object of class |
Smooth |
: logical. Should the LRR be smoothed before being segmented.
See |
UndoSD |
: numeric. When not specified (default is |
minLen |
: numeric. The minimal length for a segment, in Kb. Shorter segments will be merged to the closest adjacent one. Default value is 10(Kb). |
nCores |
: numeric. The number of cores to use in order to speed up the computation.
When |
verbose |
: logical. if |
This function is a wrapper for the DNAcopy
, CNA
and segment
functions, which allows parallelization and
data-driven parameterization.
In addition to the usual DNAcopy
output, the segmentation table contains
the probes Log2Ratio standard deviation for each segment, as well as there
length, in Kb.
An object of class "rCGH"
Frederic Commo
1 2 3 4 5 6 7 | 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)
st <- getSegTable(cgh)
head(st)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.