devtools (version 1.13.2)

install_bioc: Install a package from a Bioconductor repository

Description

This function requires svn to be installed on your system in order to be used.

Usage

install_bioc(repo, mirror = getOption("BioC_svn",
  "https://hedgehog.fhcrc.org/bioconductor"), ..., quiet = FALSE)

Arguments

repo

Repository address in the format [username:password@][release/]repo[#revision]. Valid values for the release are ‘devel’ (the default if none specified), ‘release’ or numeric release numbers (e.g. ‘3.3’).

mirror

The bioconductor SVN mirror to use

...

Other arguments passed on to install

quiet

if TRUE suppresses output from this function.

Details

It is vectorised so you can install multiple packages with a single command.

'

See Also

Other package installation: install_bitbucket, install_cran, install_github, install_git, install_svn, install_url, install_version, install, uninstall

Examples

Run this code
# NOT RUN {
install_bioc("SummarizedExperiment")
install_bioc("user@SummarizedExperiment")
install_bioc("user:password@release/SummarizedExperiment")
install_bioc("user:password@3.3/SummarizedExperiment")
install_bioc("user:password@3.3/SummarizedExperiment#117513")
# }

Run the code above in your browser using DataCamp Workspace