GithubHelp home page GithubHelp logo

nturaga / biocdockermanager Goto Github PK

View Code? Open in Web Editor NEW

This project forked from bioconductor/biocdockermanager

0.0 0.0 0.0 77 KB

Bioconductor package to manage docker images

Home Page: https://github.com/nturaga/BiocDockerManager

R 100.00%

biocdockermanager's Introduction

BiocDockerManager - An R Package to manage Bioconductor Docker Images

The BiocDockerManager package was designed to work analogous to BiocManager but for docker images. Use the BiocDockerManager package manage docker images provided by the Bioconductor project. The package provides convenient ways to install images, update images, confirm validity and find which Bioconductor based docker images are available.

Install

Preliminary Step 0: Install Docker Desktop on your local machine, and sign in https://docs.docker.com/get-docker/

Install the package BiocManager, then install BiocDockerManager in your R session

if (!require("BiocManager"))
    install.packages("BiocManager")
BiocManager::install("BiocDockerManager")

Example Workflow

We hope to provide functionality which is useful to R and Bioconductor Docker users in the form of an R package.

The typical workflow would look like the following:

First, you check the available() images. Then you install() a required image say bioconductor/bioconductor_docker:devel.

## 1. Check available images
BiocDockerManager::available()

## 2. Install a new image
BiocDockerManager::install(
	repository = "bioconductor/bioconductor_docker",
	tag = "devel"
)

Once some time has passed and if you are not sure if you image is up to date, you have to check if the image is valid().

Then, install() an update if the validity check returns that it is out of date. Check the version() of the latest image to make sure you understand the consequences of updating.

## 3. Check if image is valid
BiocDockerManager::valid(
	"bioconductor/bioconductor_docker",
	tag = "devel"
)

## 4. Download update to image
BiocDockerManager::install(
	"bioconductor/bioconductor_docker",
	tag = "devel"
)

## 5. Check version
BiocDockerManager::version(
	"bioconductor/bioconductor_docker",
	tag = "devel"
)

Help

Please read the package vignette for more help.

Acknowledgements

Martin Morgan (@mtmorgan) and Kayla Morell (@Kayla-Morrell).

biocdockermanager's People

Contributors

mtmorgan avatar nturaga avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.