Description Usage Arguments Details Value Examples
Generate the final microarray report.
1 | write.report(config, eset, results)
|
config |
Character string consisting of the path to the configuration
file generated using the |
eset |
Expression set object describing microarray experiment at the level of probes. |
results |
A summary of all the data in the expression set for each
group comparison generated using the |
Generates the microarray report summarizing the information in the experiment. The information in the report depends on the config and the packages available.
A character string consisting of the path to the microarray report.
1 2 3 4 5 6 7 8 | if(require(madeData))
{
dataPath <- system.file("extdata", package = "madeData")
config <- file.path(dataPath, "config.yaml")
eset <- readRDS(file.path(dataPath, "eset.rds"))
results <- readRDS(file.path(dataPath, "results.rds"))
write.report(config, eset, results)
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.