chicagoPipeline(cd, outprefix = NULL, printMemory = FALSE)
chicagoData
object.NULL
, or a character string. If NULL
, diagnostic plots are outputted to the current plotting device. If a character string, then pdfs will be generated for a series of diagnostic plots, in files of form "[outprefix]_[plotname].pdf". For example, outprefix="experiment1"
leads to files experiment1_oeNorm.pdf, etc...TRUE
for memory diagnostics.chicagoData
.
intData(cd)
is updated by reference. Thus, intData(cd)
will be altered. See vignette for further information.- getPvals
It does not export the output. Use exportResults
for this.
exportResults
##Read in some raw data
filesDir <- file.path(system.file("extdata", package="Chicago"), "unitTestData")
file <- file.path(filesDir, dir(filesDir))[1]
print(file) ##we will read in this file
designDir <- file.path(system.file("extdata", package="Chicago"), "unitTestDesign")
##Add a setting specific to the unit test data! Do not use in practice!
if(!interactive()) {
settings <- list(brownianNoise.samples=1)
} else {
settings <- NULL
}
cd <- setExperiment(designDir=designDir, settings=settings)
cd <- readAndMerge(file, cd)
Run the code above in your browser using DataLab