## S3 method for class 'rCGH':
adjustSignal(object, Scale=TRUE, Cy=TRUE, GC=TRUE, Ref="cy3",
suppOutliers=TRUE, nCores=NULL, verbose=TRUE)
"rCGH "
TRUE
(default), Log2Ratios are standardized.TRUE
(default), cy3/cy5 bias is corrected using a local
regression (loessFit). For Agilent dual-color hybridization only.
Notice that, in case of Affymetrix files (cychp.txt or cnchp.txt), this
argument is automatically set to FALSE
, since this step is
managed when files are exported from ChAS or APT.TRUE
(default), the GC% bias is corrected using a
local regression (loessFit). For Agilent dual-color hybridization only.
Notice that, in case of Affymetrix files (cychp.txt or cnchp.txt), this
argument is automatically set to FALSE
, since this step is
managed when files are exported from ChAS or APT.TRUE
(default), outliers are removed using an
Expectation-Maximization algorithm (EM). See details
below.NULL
(default), half of the available cores are used. If a
value greater than the number of available cores is passed, this latter will
be used. See detectCores
.TRUE
(default), progress is printed."rCGH "
suppOutliers
is TRUE
(default), the Log2Ratios are splitted
with respect to chromosomes. The main regions within each chromosome are
identified using EM. Within each region r_i, x[r_i] values are redifined
according to the corresponding model parameters.
as: $$x[r_i] ~ N(mu_i, sigma_i)$$
Notice that this step may substantially increase the computation time.detectCores
, mclapply
filePath <- system.file("extdata", "Affy_cytoScan.cyhd.CN5.CNCHP.txt.bz2",
package = "rCGH")
cgh <- readAffyCytoScan(filePath, sampleName = "AffyScHD")
cgh <- adjustSignal(cgh, nCores=1)
getParam(cgh)
Run the code above in your browser using DataLab