View source: R/norm_parameters.R
norm_parameters | R Documentation |
norm_parameters
function allows the user
to set the values of the parameters to compute the functions
epi_preprocess
.
norm_parameters(
illumina = list(bg.correct = TRUE, normalize = c("controls", "no"), reference = 1),
quantile = list(fixOutliers = TRUE, removeBadSamples = FALSE, badSampleCutoff = 10.5,
quantileNormalize = TRUE, stratified = TRUE, mergeManifest = FALSE, sex = NULL),
noob = list(offset = 15, dyeCorr = TRUE, dyeMethod = c("single", "reference")),
funnorm = list(nPCs = 2, sex = NULL, bgCorr = TRUE, dyeCorr = TRUE, keepCN = FALSE)
)
illumina , quantile , noob , funnorm |
preprocess method selected in the function epi_preprocess. |
bg.correct |
logical. If TRUE background
correction will be performed in |
normalize |
logical. If TRUE control
normalization will be performed in
|
reference |
numeric.
The reference array for control normalization in
|
fixOutliers |
logical. If TRUE low outlier
Meth and Unmeth signals will be fixed
in |
removeBadSamples |
logical. If TRUE bad samples will be removed. |
badSampleCutoff |
a numeric specifying
the cutoff to label samples
as 'bad' in |
quantileNormalize |
logical. If TRUE quantile
normalization will be performed in
|
stratified |
logical.
If TRUE quantile normalization will be performed
within region strata in |
mergeManifest |
logical. If TRUE the
information in the associated manifest
package will be merged into the output
object in |
offset |
a numeric specifying an offset for
the normexp background correction
in |
dyeCorr |
logial. Dye correction will
be done in |
dyeMethod |
specify the dye
bias correction to be done, single sample
approach or a reference array in |
nPCs |
numeric specifying
the number of principal components
from the control probes PCA in
|
sex |
an optional numeric vector
containing the sex of the samples in
|
bgCorr |
logical.
If TRUE NOOB background correction will be done prior
to functional normalization.
in |
keepCN |
logical. If TRUE copy number estimates
will be kept in |
Invoking epi_parameters()
with no
arguments returns a list with the
default values for each normalization parameter.
the function returns a list of all
set parameters for each normalization method used in
epi_peprocess
.
#Default set of parameters
norm_parameters()
#change p value for manova method
norm_parameters(illumina = list("bg.correct" = FALSE))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.