version: Get version of bioconductor docker image

Description Usage Arguments Details Value Examples

View source: R/manager.R

Description

Get version of bioconductor docker image

Usage

1
version(repository = "bioconductor/bioconductor_docker", tag)

Arguments

repository

'character(1)', repository of the docker image.

tag

'character(1)', tag of the docker image.

Details

The version of the images provided by Bioconductor are unique. They are represented by 'x.y.z' where, the 'x.y' represent the version of Bioconductor and the '.z' represents the version of the Dockerfile used to build the Docker image. This is especially useful in terms of reproducibility and tracking changes when using the Docker images provided by Bioconductor.

Value

'character' vector representing the version number.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
do_it <- BiocDockerManager:::.is_docker_installed()

if (do_it) {
    BiocDockerManager::version(
        "bioconductor/bioconductor_docker",
        tag = "latest"
    )

    BiocDockerManager::version(
        "bioconductor/bioconductor_docker",
        tag = "devel"
    )
}

BiocDockerManager documentation built on March 21, 2021, 6 p.m.