Create ArtifSet instance
setup_artifacts(
type = "bioc",
version = "3.17",
date,
hostnames = hostnames_by_release(version),
cache = BiocFileCache::BiocFileCache(),
destination = tempfile(),
verbose = TRUE,
extracted = NULL,
url = NULL
)
character(1) defaults to 'bioc' which implies 'software'; see Note.
character(1) defaults to "3.17"
character(1) "yyyy-mm-dd", not obligatory but can be used to retrieve earlier cache entry
character() vector of host names for which build artifacts are available
instance of `BiocFileCache::BiocFileCache()`
character(1) path to folder to use for artifacts
logical(1) if TRUE (default) will provide message about tar activity
defaults to NULL, if non-null a character(1) path to folder that holds `report` folder
character(1) passed to `get_report_tgz_cacheid`
Use bbsBuildArtifacts:::valid_types() to see valid values for `type`. The logic of managing artifacts from multiple dates is very cumbersome and may be unreliable, but the 'date of tarball production' will be reported for each ArtifSet.
if (interactive()) {
z = setup_artifacts(type="bioc", version="3.17")
z
}