Description Usage Arguments Value Examples
View source: R/normalization.R
Function that normalizes raw data.
1 2 3 | normalization(my.data = NULL, method = NULL, targetsinfo, inputDir,
loadFile = FALSE, normalizedFName = "normalized.Rda", outputDir,
exonSt = FALSE)
|
my.data |
Raw data to be normalized. |
method |
Method used for the normalization. |
targetsinfo |
Target information about raw data. |
inputDir |
Path of the normalized data file. |
loadFile |
If TRUE the normalized data is loaded. |
normalizedFName |
Name of the eset normalized file. By default "normalized.Rda" |
outputDir |
Path to store the raw data normalized. |
exonSt |
Default value FALSE. If TRUE the raw data is exon array. |
A data set called my.norm with the raw data normalized.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | ## Not run:
load("rawData.Rda")
rawData <- my.raw
normMethod <- "RMA"
my.targets <- read.AnnotatedDataFrame("./celfiles/targets.txt", header = TRUE, row.names = 1)
celFilesDir <-"./celfiles"
loadFile <- FALSE
normalized.eset.FileName <- "normalizedData.Rda"
outputDir <- "./ResultsDir"
exonStudy <- FALSE
eset_norm <- normalization(my.data = rawData, method = normMethod,
targetsinfo = my.targets, inputDir = celFilesDir, loadFile = loadFile ,
normalizedFName = normalized.eset.FileName, outputDir = outputDir,
exonSt = exonStudy)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.