Copies the example Makefile pipeline shipped with dnaEPICO to a user-specified directory for local execution or modification.
extractMake(destDir, overwrite = FALSE)Invisibly returns NULL.
tmp <- tempdir()
stopifnot(dir.exists(tmp))
# \donttest{
## Copy the dnaEPICO Makefile pipeline into a project directory
extractMake(
destDir = getwd(),
overwrite = FALSE
)
# }