Download metabodecon Example Datasets
download_example_datasets.Rd
This function downloads example datasets that can be used to test the functionality of the metabodecon package. These datasets are not included in the package by default due to size constraints. The datasets are downloaded as a zip file.
Usage
download_example_datasets(
dst_dir = NULL,
extract = TRUE,
persistent = NULL,
overwrite = FALSE
)
Arguments
- dst_dir
The destination directory where the downloaded datasets will be stored. If NULL, the function will return the path to the cached zip file.
- extract
Logical. If TRUE, the downloaded zip file will be extracted.
- persistent
Logical. If TRUE, the downloaded datasets will be cached at
datadir_persistent()
to speed up future calls to download_example_datasets(). If FALSE, the datasets will be cached atdatadir_temp()
. If NULL, the function will check both paths for the cached datasets but will usedatadir_temp()
if the cached file does not yet exist.- overwrite
Logical. If TRUE, existing files with the same name in the destination directory will be overwritten.