https://github.com/epigen/open_pipelines
Pipelines for NGS data preprocessing by the Bock lab and friends
https://github.com/epigen/open_pipelines
atac-seq bioinformatics chip-seq looper ngs-pipeline pipeline pypiper rna-seq
Last synced: about 2 months ago
JSON representation
Pipelines for NGS data preprocessing by the Bock lab and friends
- Host: GitHub
- URL: https://github.com/epigen/open_pipelines
- Owner: epigen
- Created: 2016-05-06T08:28:41.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2022-08-29T14:12:00.000Z (almost 3 years ago)
- Last Synced: 2024-10-30T23:52:13.536Z (7 months ago)
- Topics: atac-seq, bioinformatics, chip-seq, looper, ngs-pipeline, pipeline, pypiper, rna-seq
- Language: Python
- Homepage:
- Size: 549 KB
- Stars: 20
- Watchers: 13
- Forks: 11
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
> :warning: **The repository is undergoing updating**: Currently, only Amplicon and ATAC-seq pipeline are PEP2.0 compatible!
# Pipelines
These are some of the NGS pipelines developed and used in the [Bock lab](http://medical-epigenomics.org) at [CeMM](http://cemm.at).
This repository contains pipelines for processing NGS data and associated scripts used by them (in the [/pipelines/tools](pipelines/tools) subdirectory).
Pipelines here are configured to work with [`looper`](http://looper.readthedocs.io) and use [`pypiper`](http://pypiper.readthedocs.io) (see the corresponding repositories). These pipelines work with metadata formatted as a [portable encapsulated project](http://pepkit.github.io).# Installation and usage
:warning: Before installing, make sure your pip installation is up to date!1. Install [`looper`](http://looper.readthedocs.io) and [`pypiper`](http://pypiper.readthedocs.io):
- `pip install "peppy>=0.30.2,<1.0.0" "looper>=1.2.0,<2.0.0" "piper>=0.12.1,<1.0.0"`
2. Clone this repository:
- `git clone [email protected]:epigen/open_pipelines.git`
3. Produce a configuration file for your project ([see here how to do it](http://looper.databio.org/en/latest/defining-a-project/)).
4. If your project has more than one protocol (data type), link each protocol to the respective pipeine in the following manner:```yaml
sample_modifiers:
imply:
- if:
protocol: "Amplicon"
then:
pipeline_interfaces: "${CODE}/open_pipelines/amplicon_simple.interface.yaml"
- if:
protocol: "ATAC-seq"
then:
pipeline_interfaces: "${CODE}/open_pipelines/atacseq.interface.yaml"
```
5. Run all jobs using looper:
- `looper run project/metadata/project_config.yaml`If you are just _using a pipeline_ in a project, and you are not _developing the pipeline_, you should treat this cloned repo as read-only, frozen code, which should reside in a shared project workspace. There should be only one clone for the project, to avoid running data under changing pipeline versions (you should not pull any pipeline updates unless you plan to re-run the whole thing).
## Test data for pipelines
Small example data for several pipeline types is available in the [microtest repository](https://github.com/epigen/microtest/)
# Pipeline documentation
See the dedicated pages detailing the steps and output of each of the pipelines:
- [ATAC-seq and DNAse-seq](pipelines/atacseq.md)
- [ChIP-seq and ChIPmentation](pipelines/chipseq.md)
- [HiC and HiChIP](pipelines/hic.md)
- [RNA-seq](pipelines/rnaseq.md)The remaining pipelines will get their dedicated documentation soon.
# Contributing
We appreciate and encourage contributions to existing pipelines or submitions of new ones.
Simply clone the repository, make your changes and create a pull request with the changes in the `dev` branch.