This repository is meant as a collection of bioinformatics-related R code that simplify workflows and can be shared with other people.
For details, see the README.md files and API documentation in the respective
directories.
This collection of tools requires modules, install using using devtools:
# install.packages('devtools')
devtools::install_github('klmr/modules')The scripts also depend on a range of R packages. You can list/install all of them by typing:
./dependencies.sh # list all packages
make deps # install all packages (warning: there's a lot)cd your_local_directory
git clone https://github.com/EBI-predocs/ebits.gitAdditionally, you need to tell R where to find the ebits module.
In order to do this, set your import.path in your ~/.Rprofile:
options(import.path=c("/path/to/ebits",
"/path/to/other/module")Modules can be imported and used as described in the
modules documentation
mod = import('module') # imports the module
mod$func(x=5) # calls the module function