Download and Installation

Download

The latest stable release of dowser can be downloaded from CRAN or Bitbucket.

Installing Released Versions

The simplest method is to use Bioconductor’s install function, which will install Bioconductor dependencies:


install.packages("BiocManager")

BiocManager::install("dowser")

You can also install dowser via CRAN, but Bioconductor dependencies may not install:

install.packages("dowser")

Downloaded source builds from Bitbucket may be installed in the usual way:

install.packages("dowser_x.y.z.tar.gz", repos = NULL, type = "source")

If you have any trouble installing the package, it may be due to the Bioconductor dependencies. You can run the following command to see what other packages may be needed:

available.packages()["dowser", "Imports"]

Try checking error messages and installing any failed dependencies individually. You may need to upgrade to the latest version of R. If you have questions, you can email the Immcantation Group.

Building Development Versions

To build from the source code, first install the build dependencies:

install.packages(c("devtools", "roxygen2", "testthat", "knitr", "rmarkdown", "Rcpp"))

To install the latest development code via devtools:

library(devtools)
install_bitbucket("kleinstein/dowser@master")

Note, using install_bitbucket will not build the documentation. To generate the documentation, clone the repository and build as normal using devtools, roxygen and knitr:

library(devtools)
install_deps()
document()
build()
install()