ParseZenodo | R Documentation |
Download Data with Zenodo DOI.
ParseZenodo(
doi = NULL,
file.ext = c("rdata", "rds", "h5ad"),
doi.df = NULL,
out.folder = NULL,
timeout = 1000,
quiet = FALSE,
parallel = TRUE
)
doi |
A vector of Zenodo DOIs to download. Default: NULL. |
file.ext |
The valid file extension for download. When NULL, use all files. Default: c("rdata", "rds", "h5ad"). |
doi.df |
DOI dataframe for download. This is useful when something wrong happens in downloading
(e.g. MD5 verification failure, |
out.folder |
The output folder. Default: NULL (current working directory). |
timeout |
Maximum request time. Default: 1000. |
quiet |
Logical value, whether to show downloading progress. Default: FALSE (show). |
parallel |
Logical value, whether to download parallelly. Default: TRUE. When "libcurl" is available for |
When successful, NULL. When MD5 verification failure, a dataframe contains failure terms.
## Not run:
# need users to provide the output folder
multi.dois.parse <- ParseZenodo(
doi = c(
"1111", "10.5281/zenodo.7243603",
"10.5281/zenodo.7244441"
),
file.ext = c("rdata", "rds"),
out.folder = "/path/to/outfoder"
)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.