mschubert / ebits

R bioinformatics toolkit incubator

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

R bioinformatics toolkit incubator

License:Apache License 2.0


Languages

Language:R 96.8%Language:C 2.5%Language:Makefile 0.6%Language:Shell 0.1%