Nothing
`lumiExpresso` <-
function (lumiBatch, bg.correct = TRUE, bgcorrect.param = list(method='bgAdjust'), variance.stabilize = TRUE,
varianceStabilize.param = list(), normalize=TRUE, normalize.param = list(),
QC.evaluation = TRUE, QC.param = list(), verbose = TRUE)
{
if (verbose) {
if (bg.correct) {
bgMethod <- ifelse(is.null(bgcorrect.param$method), 'bgAdjust', bgcorrect.param$method)
if (!is(lumiBatch, 'LumiBatch')) {
bgMethod <- "none"
bgcorrect.param$method <- bgMethod
cat("Due to the input is not a LumiBatch object, no background adjustment will be performed.\n")
}
cat("Background Correction:", bgMethod, "\n")
}
if (variance.stabilize) {
vstMethod <- ifelse(is.null(varianceStabilize.param$method), 'vst', varianceStabilize.param$method)
if (is.null(se.exprs(lumiBatch)) && vstMethod == 'vst') {
vstMethod <- "log2"
varianceStabilize.param$method <- vstMethod
cat("Due to the lack of 'se.exprs' information, 'log2' transformation will be used.\n")
}
cat("Variance Stabilizing Transform method:", vstMethod, "\n")
}
if (normalize) {
normMethod <- ifelse(is.null(normalize.param$method), 'quantile', normalize.param$method)
normalize.param$method <- normMethod
cat("Normalization method:", normMethod, "\n")
}
cat('\n')
}
if (bg.correct) {
if (verbose) cat("\nBackground correction ...\n")
lumiBatch <- do.call(lumiB, c(alist(lumiBatch), bgcorrect.param))
if (verbose) cat("done.\n")
}
if (variance.stabilize) {
if (verbose) cat("\nVariance stabilizing ...\n")
lumiBatch <- do.call(lumiT, c(alist(lumiBatch), varianceStabilize.param))
if (verbose) cat("done.\n")
}
if (normalize) {
if (verbose) cat("\nNormalizing ...\n")
lumiBatch <- do.call(lumiN, c(alist(lumiBatch), normalize.param))
if (verbose) cat("done.\n")
}
if (QC.evaluation) {
if (verbose) cat("\nQuality control after preprocessing ...\n")
lumiBatch <- do.call(lumiQ, c(alist(lumiBatch), QC.param))
if (verbose) cat("done.\n")
}
return(lumiBatch)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.