Nextflow Examples

Common usage patterns for the py-gbcms Nextflow pipeline.

Basic Usage

Local with Docker

nextflow run nextflow/main.nf \
    --input samplesheet.csv \
    --variants variants.vcf \
    --fasta reference.fa \
    --outdir results \
    -profile docker

SLURM Cluster

nextflow run nextflow/main.nf \
    --input samplesheet.csv \
    --variants variants.vcf \
    --fasta reference.fa \
    --outdir results \
    -profile slurm

MAF Output

Strict Filtering

Enable all quality filters:

Resume Failed Run

Custom Resource Limits

Last updated