multiMiR

multiMiR is an R package for querying the multiMiR collection of microRNA data. The package is available on Bioconductor and the development version is available on GitHub. More information about the multiMiR database and the validated and predicted miRNA-target interactions and miRNA-disease/drug associations is available on the multiMiR website.

# To install multiMiR from bioconductor:
source("https://bioconductor.org/biocLite.R")
biocLite()
biocLite("multiMiR")
# To install the developement version multiMiR: 
source("https://bioconductor.org/biocLite.R")
biocLite()
biocLite("BiocStyle")

# Now install devtools (for installing from GitHub repositories)
install.packages("devtools")
library(devtools)

# Now install the development version of the multiMiR package
devtools::install_github("KechrisLab/multiMiR")

# To install a public release, use the `ref=` option to select the tag of the
# release version 
# devtools::install_github("kechrislab/multimir", ref = "v2.0")