Skip to content

Commit 62182ba

Browse files
committed
conf
1 parent d5d5e23 commit 62182ba

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

conf/base.config

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ process {
2323
// These labels are used and recognised by default in DSL2 files hosted on nf-core/modules.
2424
// If possible, it would be nice to keep the same label naming convention when
2525
// adding in your local modules too.
26-
// TODO nf-core: Customise requirements for specific processes.
27-
// See https://www.nextflow.io/docs/latest/config.html#config-process-selectors
2826
withLabel:error_ignore {
2927
errorStrategy = 'ignore'
3028
}

nextflow.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,8 +186,8 @@ podman.registry = 'quay.io'
186186
singularity.registry = 'quay.io'
187187
charliecloud.registry = 'quay.io'
188188

189-
// Load nf-core custom profiles from different Institutions
190-
includeConfig !System.getenv('NXF_OFFLINE') && params.custom_config_base ? "${params.custom_config_base}/nfcore_custom.config" : "/dev/null"
189+
// Load nf-core custom profiles from different institutions
190+
includeConfig params.custom_config_base && (!System.getenv('NXF_OFFLINE')|| !params.custom_config_base.startsWith('http')) ? "${params.custom_config_base}/nfcore_custom.config" : "/dev/null"
191191

192192
// Load igenomes.config if required
193193
includeConfig !params.igenomes_ignore ? 'conf/igenomes.config' : 'conf/igenomes_ignored.config'

0 commit comments

Comments
 (0)