Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add nf-prov #2455

Open
wants to merge 7 commits into
base: dev
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions nf_core/pipeline-template/nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,7 @@ singularity.registry = 'quay.io'
// Nextflow plugins
plugins {
id 'nf-validation' // Validation of pipeline parameters and creation of an input channel from a sample sheet
id 'nf-prov' // Provenance reports for pipeline runs
}

{% if igenomes -%}
Expand Down Expand Up @@ -233,6 +234,10 @@ dag {
enabled = true
file = "${params.outdir}/pipeline_info/pipeline_dag_${trace_timestamp}.html"
}
prov {
enabled = true
file = "${params.outdir}/pipeline_info/manifest_${trace_timestamp}.json"
maxulysse marked this conversation as resolved.
Show resolved Hide resolved
}

manifest {
name = '{{ name }}'
Expand Down
Loading