BINARY_BASE_URL <- "https://bioconductor.org/packages/%s/container-binaries/%s"
#' @rdname install
#'
#' @title Discover binary packages for fast installation
#'
#' @description `install()` is deprecated in favor of
#' `BiocManager::install()`.
#'
#' @param pkgs `character()` packages to install from binary repository.
#'
#' @param ... additional arguments. `install()` passes additional
#' arguments to
#' `BiocManager::install()`. `print.repository_stats()` ignores
#' the additional arguments.
#'
#' @param version `character(1)` or `package_version` Bioconductor
#' version, e.g., "3.12".
#'
#' @param binary_base_url `character(1)` host and base path for binary
#' package 'CRAN-style' repository; not usually required by the
#' end-user.
#'
#' @export
install <-
function(
pkgs = character(), ...,
version = BiocManager::version(), binary_base_url = BINARY_BASE_URL
)
{
.Deprecated("BiocManager::install()")
stopifnot(
.is_character(pkgs),
.is_scalar_character(version) || is.package_version(version),
.is_scalar_character(binary_base_url)
)
if ("site_repository" %in% names(list(...))) {
stop("'site_repository=' cannot be used with AnVIL::install()")
}
site_repository <- repository(version, binary_base_url)
BiocManager::install(
pkgs = pkgs,
...,
site_repository = site_repository,
version = version
)
}
## is the docker container configured correctly?
.repository_container_version_test <-
function(bioconductor_version, container_version)
{
bioconductor_version <- package_version(bioconductor_version)
docker_version <- package_version(container_version)
(bioconductor_version$major == docker_version$major) &&
(bioconductor_version$minor == docker_version$minor)
}
## are we running on a docker container?
.repository_container_version <-
function()
{
container_version <- Sys.getenv("BIOCONDUCTOR_DOCKER_VERSION")
if (nzchar(container_version)) {
platform <- "bioconductor_docker"
} else {
platform <- Sys.getenv("TERRA_R_PLATFORM")
container_version <- Sys.getenv("TERRA_R_PLATFORM_BINARY_VERSION")
}
list(platform = platform, container_version = container_version)
}
#' @rdname install
#'
#' @aliases BINARY_BASE_URL
#'
#' @description `repository()` is deprecated in favor of
#' `BiocManager::containerRepository()`.
#'
#' @importFrom utils contrib.url
#'
#' @export
repository <-
function(
version = BiocManager::version(),
binary_base_url = BINARY_BASE_URL)
{
.Deprecated("BiocManager::containerRepository()")
stopifnot(
## 'version' validated in '.repository_container_version_test()'
.is_scalar_character(binary_base_url)
)
.repository(version, binary_base_url)
}
.repository <-
function(version, binary_base_url)
{
platform_docker <- .repository_container_version()
container_version <- platform_docker$container_version
platform <- platform_docker$platform
## are we running on a known container?
if (!nzchar(container_version))
return(character())
## do the versions of BiocManager::version() and the container match?
versions_match <- .repository_container_version_test(
version, container_version
)
if (!versions_match)
return(character())
## does the binary repository exist?
binary_repos0 <- sprintf(binary_base_url, version, platform)
packages <- paste0(contrib.url(binary_repos0), "/PACKAGES.gz")
url <- url(packages)
binary_repository <- tryCatch({
suppressWarnings(open(url, "rb"))
close(url)
binary_repos0
}, error = function(...) {
close(url)
character()
})
binary_repository
}
#' @rdname install
#'
#' @description `repositories()` is deprecated in favor of
#' `BiocManager::repositories()`.
#'
#' @export
repositories <-
function(
version = BiocManager::version(),
binary_base_url = BINARY_BASE_URL)
{
.Deprecated("BiocManager::repositories()")
stopifnot(
.is_scalar_character(version) || is.package_version(version),
.is_scalar_character(binary_base_url)
)
repositories <- BiocManager::repositories()
binary_repository <- repository(version, binary_base_url)
if (length(binary_repository))
repositories <- c(BiocBinaries = binary_repository, repositories)
repositories
}
#' @rdname install
#'
#' @aliases print.repository_stats
#'
#' @description `repository_stats():` summarize binary packages
#' compatible with the Bioconductor or Terra container in use.
#'
#' @return `repository_stats()` returns a list of class
#' `repository_stats` with the following fields:
#' \itemize{
#'
#' \item{container: }{character(1) container label, e.g.,
#' \code{bioconductor_docker}, or NA if not evaluated on a supported
#' container}
#'
#' \item{bioconductor_version: }{\code{package_version} the
#' Bioconductor version provided by the user.}
#'
#' \item{repository_exists: }{logical(1) TRUE if a binary repository
#' exists for the container and Bioconductor_Version version.}
#'
#' \item{bioconductor_binary_repository: }{character(1) repository
#' location, if available, or NA if the repository does not exist.}
#'
#' \item{n_software_packages: }{integer(1) number of software packages
#' in the Bioconductor source repository.}
#'
#' \item{n_binary_packages: }{integer(1) number of binary packages
#' available. When a binary repository exists, this number is likely
#' to be larger than the number of source software packages, because
#' it includes the binary version of the source software packages, as
#' well as the (possibly CRAN) dependencies of the binary packages}
#'
#' \item{n_binary_software_packages: }{integer(1) number of binary
#' packages derived from Bioconductor source packages. This number is
#' less than or equal to \code{n_software_packages}.}
#'
#' \item{missing_binaries: }{integer(1) the number of Bioconductor
#' source software packages that are not present in the binary
#' repository.}
#'
#' \item{out_of_date_binaries: }{integer(1) the number of Bioconductor
#' source software packages that are newer than their binary
#' counterpart. A newer source software package
#' might occur when the main Bioconductor build system has
#' updated a package after the most recent run of the binary
#' build system.}
#' }
#'
#' @importFrom utils available.packages
#'
#' @examples
#' stats <- repository_stats() # obtain statistics
#' stats # display a summary
#' stats$container # access an element for further computation
#'
#' @export
repository_stats <-
function(
version = BiocManager::version(),
binary_base_url = BINARY_BASE_URL)
{
platform_docker <- .repository_container_version()
container <- platform_docker$platform
bioc_repository <- suppressMessages({
BiocManager::repositories()[["BioCsoft"]]
})
binary_repository <- .repository(version, binary_base_url)
db_bioc <- available.packages(repos = bioc_repository)
if (length(binary_repository)) {
db_binary <- available.packages(repos = binary_repository)
packages <- paste0(contrib.url(binary_repository), "/PACKAGES")
response <- HEAD(packages)
last_modified <- headers(response)$`last-modified`
PACKAGES_mtime <-
format(strptime(
last_modified, "%a, %d %b %Y %H:%M", tz = "UTC"
), usetz = TRUE)
} else {
db_binary <- db_bioc[NULL,]
PACKAGES_mtime <- NA_character_
}
missing_binaries <- setdiff(rownames(db_bioc), rownames(db_binary))
found_binaries <- intersect(rownames(db_bioc), rownames(db_binary))
bioc_versions <- package_version(db_bioc[found_binaries, "Version"])
binary_versions <- package_version(db_binary[found_binaries, "Version"])
binary_out_of_date <- bioc_versions > binary_versions
n_out_of_date_binaries <- sum(binary_out_of_date)
out_of_date_binaries <- found_binaries[binary_out_of_date]
query_timestamp = format(
Sys.time(), "%Y-%m-%d %H:%M", tz = "UTC", usetz = TRUE
)
result <- list(
container = if (nzchar(container)) container else NA_character_,
bioconductor_version = version,
bioconductor_binary_repository =
if (length(binary_repository)) binary_repository else NA_character_,
PACKAGES_mtime = PACKAGES_mtime,
query_timestamp = query_timestamp,
repository_exists = length(binary_repository) > 0L,
n_software_packages = nrow(db_bioc),
n_binary_packages = nrow(db_binary),
n_binary_software_packages = length(found_binaries),
missing_binaries = missing_binaries,
out_of_date_binaries = out_of_date_binaries
)
class(result) <- c("repository_stats", class(result))
result
}
.repository_stats_package_format <-
function(x)
{
msg <- paste(sort(x), collapse = " ")
paste(strwrap(msg, indent = 2L, exdent = 2L), collaspe = "\n")
}
#' @describeIn install Print a summary of package
#' availability in binary repositories.
#'
#' @param x the object returned by `repository_stats()`.
#'
#' @export
print.repository_stats <-
function(x, ...)
{
bioconductor_binary_repository <- ifelse(
is.na(x$bioconductor_binary_repository),
paste(" ", x$bioconductor_binary_repository),
paste("\n ", x$bioconductor_binary_repository)
)
cat(
"Container: ", x$container, "\n",
"Bioconductor version: ", as.character(x$bioconductor_version), "\n",
"Bioconductor binary repos:", bioconductor_binary_repository, "\n",
"PACKAGES timestamp: ", x$PACKAGES_mtime, "\n",
"Query timestamp: ", x$query_timestamp, "\n",
"Bioconductor software packages: ", x$n_software_packages, "\n",
"Binary packages: ", x$n_binary_packages, "\n",
"Binary software packages: ", x$n_binary_software_packages, "\n",
"Missing binary software packages: ", length(x$missing_binaries), "\n",
if (x$repository_exists)
.repository_stats_package_format(x$missing_binaries),
"Out-of-date binary software packages: ",
length(x$out_of_date_binaries), "\n",
if (x$repository_exists)
.repository_stats_package_format(x$out_of_date_binaries),
sep = ""
)
}
#' @rdname install
#'
#' @description `add_libpaths()`: Add local library paths to
#' `.libPaths()`.
#'
#' @param paths `character()`: vector of directories to add to
#' `.libPaths()`. Paths that do not exist will be created.
#'
#' @return `add_libpaths()`: updated .libPaths(), invisibly.
#'
#' @examples
#' \dontrun{add_libpaths("/tmp/host-site-library")}
#'
#' @export
add_libpaths <-
function(paths)
{
stopifnot(is.character(paths))
## make sure all paths exist
exist <- vapply(paths, dir.exists, logical(1))
ok <- vapply(paths[!exist], dir.create, logical(1))
if (!all(ok))
stop(
"'add_libpaths()' failed to create directories:\n",
" '", paste(paths[!exist][!ok], collapse="'\n '"), "'"
)
.libPaths(c(paths, .libPaths()))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.