Description Usage Arguments Details Value See Also Examples
Read and validate the configuration associated with a microarray experiment.
1 | read.yaml.config(config, checkGroups = TRUE, getGroups = TRUE)
|
config |
Character string consisting of the path to the configuration
file generated using the |
checkGroups |
logical indicating whether the group file must exist when doing the validation. |
getGroups |
logical indicating whether the data in the group file must also be validated and returned in the configuration. |
Each configuration option is checked for incongruities, including whether or not it is missing, its type, and its value.
A list of the configuration options. If the configuration has been
fully validated including the group file, the class of the resulting
configuration becomes MadeConfig
.
write.yaml.config
to generate the configuration file
and read.group.file
to read and validate the group file.
1 2 3 4 5 6 7 | if(require(madeData))
{
config <- system.file("extdata", "config.yaml", package = "madeData")
read.yaml.config(config)
}
read.yaml.config(config, checkGroups = FALSE, getGroups = FALSE)
read.yaml.config("config.yaml")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.