File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 }
Original file line number Diff line number Diff line change @@ -186,8 +186,8 @@ podman.registry = 'quay.io'
186186singularity. registry = ' quay.io'
187187charliecloud. 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
193193includeConfig ! params. igenomes_ignore ? ' conf/igenomes.config' : ' conf/igenomes_ignored.config'
You can’t perform that action at this time.
0 commit comments