Learn R Programming

cellHTS (version 1.42.0)

settings: cellHTS2 HTML report settings

Description

Functions to control the output of writeReport through session-wide or call-specific settings.

Usage

setSettings(x)
getSettings()

Arguments

x
A named list of settings. See details for supported values.

Value

  • The current settings for getSettings. setSettings is called for its side effect of setting session-wide settings.

Details

The writeReport function produces a complete audit trail of the analysis in the form of an HTML report. The content of this report is highly customizable though session-wide and also though call-specific settings. The former are supposed to be set using the setSettings function by providing a named nested list of values. The latter can be set by passing a similiar list on to writeHTML as the optional settings argument. The current values for all available settings can be queried using the getSettings function.

Similar to the structure of the HTML report, the available settings are broken up into subsections, and the names of these subsection have to be matched by the names in the nestes list structure:

[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]

See Also

writeReport

Examples

Run this code
oset <- getSettings()
oset

setSettings(list(plateConfiguration=list(size=2),
list(plateList=list(intensities=list(include=FALSE)))))

getSettings()

setSettings(oset)

Run the code above in your browser using DataLab