Note: This repository has been archived and consolidated into: https://github.com/pepkit/pep-pipelines/
Example simple and bioinformatic pipelines using PEPs and Snakemake.
Here, we're counting lines using wc
.
cd simple/pipelines
snakemake --cores 1
Here, we're aligning fastq files using bowtie2
.
Install:
- Bowtie2 aligner
- refgenie Python package (manages Bowtie2 index)
Configure:
- initialize refgenie config (
refgenie init -c path.yml
) - set
REFGENIE
environment variable to point to the initialized config - obtain
hg38/bowtie2_index
asset (eitherrefgenie build ...
orrefgenie pull ...
)
cd bioinformatic/pipelines
snakemake --cores 4