Export all the results from a DEprot.analyses object into a user-defined folder.
export.analyses(
DEprot.analyses.object,
output.folder = "./export",
contrast.subset = NULL,
verbose = TRUE
)
An object of class DEprot.analyses
.
Path (string) to the output directory. If the folder is not already existing it will be created. Default: "./export"
.
Numeric vector indicating the contrasts to use. Default: NULL
(all contrasts are exported).
Logical value to indicate whether progress messages should be printed. Default: TRUE
.
Nothing is returned, data are exported locally.
if (FALSE) { # \dontrun{
# Export data for all contrasts
DEprot::export.analyses(DEprot.analyses.object = DEprot::test.toolbox$diff.exp.limma,
output.folder = out_dir,
verbose = TRUE)
# Export data for only a subset of contrasts
DEprot::export.analyses(DEprot.analyses.object = dpo_analyses,
contrast.subset = c(1:3,6),
output.folder = out_dir,
verbose = TRUE)
} # }