Skip to content

Latest commit

 

History

History
46 lines (34 loc) · 1.63 KB

README.md

File metadata and controls

46 lines (34 loc) · 1.63 KB

Continuous Integration Status Codacy Badge Codacy Badge Coveralls Status Documentation Status MIT License

CUBI Toolkit

Tooling for connecting GitLab, pipelines, and SODAR at CUBI.

Getting Started

Prerequisites when using conda:

$ conda create -n cubi-tk python=3.7
$ conda activate cubi-tk

Clone CUBI-TK and install.

$ git clone git@github.com:bihealth/cubi-tk.git
$ cd cubi-tk
$ pip install -e .

Building the Manual

$ pip install -r requirements/develop.txt
$ cd docs_manual
$ make clean html
$ ls _build/html/index.html

Argument Completion

$ cat >>~/.bashrc <<"EOF"
eval "$(register-python-argcomplete cubi-tk)"
EOF