Setup Instructions
Optional — for local installation after the workshop
NoteFor the workshop, just use the online version!
big-demo.shinyapps.io/bigapp-main
The instructions below are for installing BIGapp on your own computer, which you might want to do after the workshop for working with your own data.
Local Installation
Step 1: Install R
Download and install R (version 4.4.0 or higher) from CRAN.
Step 2: Install BIGapp
Open R and run these commands:
# Install required package managers
if (!require("BiocManager", quietly = TRUE))
install.packages("BiocManager")
install.packages("remotes")
# Install BIGapp (this may take 10-20 minutes)
BiocManager::install("Breeding-Insight/BIGapp", dependencies = TRUE)Step 3: Run BIGapp
library(BIGapp)
BIGapp::run_app()BIGapp will open in your web browser.
Troubleshooting
WarningInstallation errors?
Try installing in a fresh R session. If you still have issues:
- Note the exact error message
- Open an issue on GitHub
- Include your operating system and R version (
R.version.string)
WarningMac M1/M2/M3 users
You may need Xcode command line tools:
xcode-select --installRStudio (Optional)
RStudio provides a nicer interface for running R, but it’s not required for BIGapp.