Localize a report.tgz file to a local directory
localize_report_tgz.RdThis function is used to pull down a report.tgz file from Bioconductor and save it locally. The file is saved with a name that is the md5sum of the file, and the file is saved to the `local_dir`.
Usage
localize_report_tgz(url, local_dir = tempdir())Examples
if (interactive()) {
local_report_tgz = localize_report_tgz(
"https://bioconductor.org/checkResults/3.14/bioc-LATEST/report.tgz"
)
print(local_report_tgz)
}