Copy bcf_reader extension source to a build directory
Source:R/vcf_duckdb.R
bcf_reader_copy_source.RdCopies the extension source files from the package to a specified directory for building. This is necessary because the installed package directory is typically read-only.
Examples
if (FALSE) { # \dontrun{
# Copy to temp directory
build_dir <- bcf_reader_copy_source(tempdir())
# Copy to a specific location
build_dir <- bcf_reader_copy_source("/tmp/bcf_reader_build")
} # }