Installation

In most instances, you would not need to install GAMBLR.data as a stand-alone package. GAMBLR.data is included as dependency and will be auto-installed for you with installation of GAMBLR.open or GAMBLR from the GAMBLR-verse. However, if you do need to install this package separately, we recommend installing the package directly from GitHub (requires devtools dependency).

if (!require("devtools")) install.packages("devtools")

devtools::install_github(
    "morinlab/GAMBLR.data",
    repos = BiocManager::repositories()
)

After installation, you can list the bundled objects to confirm successful setup:

# Confirm successful setup
library(GAMBLR.data) # load package
ls("package:GAMBLR.data") # view all supplied objects
Back to top