knitr::opts_chunk$set( collapse = TRUE, comment = "#>" )
BiocManager::install("Bioconductor/BiocAddins")
Bioconductor uses BiocManager to distribute packages and manage Bioconductor
versions. It is important for users to make use of BiocManager instead of
install.packages
in order to ensure proper package versioning.
The RStudio Addin makes it easy for users to obtain and install BiocManager
from CRAN.
useBiocManager()
After installation of BiocManager
, users may install a package via the
install
function:
BiocManager::install("Biobase")
Developers can run BiocCheck quite easily with the RStudio Addin from the dropdown menu. It essentially runs:
BiocCheck::BiocCheck()
We recommend using the following keyboard shortcut:
Ctrl / ⌘ (Mac) + shift + C
BiocAddins makes it easy to bump your package's version by running the
bumpVersion
function:
bumpVersion()
Note that this will increase the Z
version of the package by 1, a.k.a, the
patch version.
Developers who wish to install the development version of Bioconductor can
do so after installing BiocManager
:
BiocManager::install(version = "devel")
Developers must ensure that the correct version of R is being used.
For more information, please review the BiocManager
package vignette.
sessionInfo()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.