get_file | R Documentation |
This function get files
get_file(url, export, limit = 3600)
url |
URL of the file to be downloaded |
export |
File path where the file should be saved |
limit |
Timeout limit (in seconds) |
The path to the file
git <- "https://github.com/"
org <- "taxonomicallyinformedannotation"
repo <- "tima-example-files"
branch <- "main"
file <- "example_metadata.tsv"
get_file(
url = paste(git, org, repo, "raw", branch, file, sep = "/"),
export = "data/source/example_metadata.tsv"
)
unlink("data", recursive = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.