Skip to content

mschubert/ebits

Folders and files

NameName
Last commit message
Last commit date
Feb 8, 2023
Feb 14, 2018
Mar 10, 2018
Sep 13, 2022
Nov 3, 2023
Jan 9, 2017
Jan 16, 2018
Feb 12, 2025
Nov 6, 2024
Aug 25, 2022
Jan 7, 2023
Oct 23, 2017
Sep 8, 2023
Feb 17, 2022
Sep 29, 2017
Feb 8, 2023
Apr 11, 2014
Feb 18, 2022
Jan 20, 2025
Apr 25, 2017
Jun 16, 2014
Oct 23, 2017

Repository files navigation

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. If using only a few modules, you may want to install only the packages you need. Otherwise you can list/install all of them by typing:

./dependencies.sh # list all packages
make install-deps # install all packages (warning: there's a lot)

Setup

cd your_local_directory
git clone https://github.com/EBI-predocs/ebits.git
cd ebits && git submodule --init --recursive

Additionally, you need load the modules package and tell R where to find the ebits module. In order to do this, set your import.path in your ~/.Rprofile:

library(modules) # can also load manually
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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages