| exportResults {MEAL} | R Documentation |
Exports results to csv files. If more than one variable is present, subfolders with the name of the variable are created. For each variable, four files will be generated: probeResults.csv, dmrCateResults.csv, bumphunterResults.csv and blockFinderResults.csv
exportResults(
object,
dir = "./",
prefix = NULL,
fNames = c("chromosome", "start")
)
object |
|
dir |
Character with the path to export. |
prefix |
Character with a prefix to be added to all file names. |
fNames |
Names of the columns of |
Files are saved into the given folder.
if (require(minfiData)){
set <- ratioConvert(mapToGenome(MsetEx[1:10,]))
methyOneVar <- runPipeline(set, variable_names = "sex")
exportResults(methyOneVar)
}