Skip to content

Commit

Permalink
fix including modules.config
Browse files Browse the repository at this point in the history
  • Loading branch information
mirpedrol committed Dec 13, 2024
1 parent 06980d4 commit 4cf8607
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions nf_core/pipeline-template/nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,6 @@ params {
includeConfig 'conf/base.config'
{%- else %}

{% if modules -%}
// Load modules.config for DSL2 module specific options
includeConfig 'conf/modules.config'
{%- endif %}

process {
// TODO nf-core: Check the defaults for all processes
cpus = { 1 * task.attempt }
Expand All @@ -94,6 +89,11 @@ process {
}
{%- endif %}

{% if modules -%}
// Load modules.config for DSL2 module specific options
includeConfig 'conf/modules.config'
{%- endif %}

profiles {
debug {
dumpHashes = true
Expand Down

0 comments on commit 4cf8607

Please sign in to comment.