Copies the example Makefile pipeline shipped with dnaEPICO to a user-specified directory for local execution or modification.
extractMake(destDir, overwrite = FALSE)Character scalar containing the path to the copied Makefile.
tmp <- file.path(tempdir(), "dnaEPICO-make-example")
dir.create(tmp, recursive = TRUE, showWarnings = FALSE)
makefile_path <- extractMake(
destDir = tmp,
overwrite = TRUE
)
stopifnot(file.exists(makefile_path))