Learn R Programming

Chicago (version 1.0.3)

setExperiment: Set Experiment

Description

Creates a template CHiCAGO experiment object. This should be the first function called.

Usage

setExperiment(designDir = "", settings = list(), settingsFile = NULL, def.settings=defaultSettings())

Arguments

designDir
The location of the design directory, e.g "~/resources/path". (Should not end with a slash.)
settings
A named list containing settings to apply. Setting names(settings)[1] is set to (settings)[[1]], and so on. This overrides anything specified in settingsFile, or in def.settings.
settingsFile
The location of a file containing settings. Each row should contain the name of a setting, followed by whitespace, followed by the value of that setting. Overrides anything specified in def.settings.
def.settings
These are the default settings.

Value

An object of class chicagoData.

Details

For a list of settings, see defaultSettings.

See Also

defaultSettings

Examples

Run this code
  designDir <- file.path(system.file("extdata", package="Chicago"), "unitTestDesign")

  cd <- setExperiment(designDir)

Run the code above in your browser using DataLab