Downloading, Cloning, & Loading Ozymandias GitHub Repository
Run the following at the command line:
(If specific directory required, change specified path after repository URL)
git clone https://github.com/RamsinghLab/ozymandias ~/Downloads/
cd ~/Downloads/ozymandias/
R
R code to load data to .GlobalEnv
Change Working Directory (optional)
setwd("~/Downloads/ozymandias/")
Load all .rda files from repository
dataSource <- list.files(path = "./data", pattern="*.rda")
sapply(dataSource, load, .GlobalEnv)
To source all R scripts from repository
fileSources <- list.files(path = "./R/", pattern="*.R")
sapply(fileSources, source, .GlobalEnv)