Skip to content

Latest commit

 

History

History
55 lines (40 loc) · 1.37 KB

README.md

File metadata and controls

55 lines (40 loc) · 1.37 KB

ebits: bioinformatics-related R modules

Build Status

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.

Requirements

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)

Setup

cd your_local_directory
git clone https://github.com/EBI-predocs/ebits.git

Additionally, 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")

Usage

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