Copies the example Makefile pipeline shipped with dnaEPICO to a user-specified directory for local execution or modification.

extractMake(destDir, overwrite = FALSE)

Arguments

destDir

Character. Destination directory where the Makefile will be copied.

overwrite

Logical. Whether to overwrite an existing file. Default is FALSE.

Value

Invisibly returns NULL.

Examples

tmp <- tempdir()
stopifnot(dir.exists(tmp))

# \donttest{
## Copy the dnaEPICO Makefile pipeline into a project directory
extractMake(
  destDir = getwd(),
  overwrite = FALSE
)
# }