When I run the line nextflow run . --outdir core-hello-results -profile test,docker --validate_params false in Training > nf-core > part 3 > 3.5 I get the error:
Nextflow 25.10.4 is available - Please consider updating your version to it
N E X T F L O W ~ version 25.10.2
Launching `./main.nf` [suspicious_swartz] DSL2 - revision: b9e9b3b8de
Input/output options
input : /workspaces/training/hello-nf-core/core-hello/assets/greetings.csv
outdir : core-hello-results
Institutional config options
config_profile_name : Test profile
config_profile_description: Minimal test dataset to check pipeline function
Generic options
validate_params : false
trace_report_suffix : 2026-04-20_19-57-37
Core Nextflow options
runName : suspicious_swartz
containerEngine : docker
launchDir : /workspaces/training/hello-nf-core/core-hello
workDir : /workspaces/training/hello-nf-core/core-hello/work
projectDir : /workspaces/training/hello-nf-core/core-hello
userName : root
profile : test,docker
configFiles : /workspaces/training/hello-nf-core/core-hello/nextflow.config
!! Only displaying parameters that differ from the pipeline defaults !!
------------------------------------------------------
executor > local (6)
[b4/48c9a7] process > CORE_HELLO:HELLO:sayHello (3) [100%] 3 of 3 ✔
[d9/9b3979] process > CORE_HELLO:HELLO:convertToUpper (3) [100%] 3 of 3 ✔
[- ] process > CORE_HELLO:HELLO:CAT_CAT -
[- ] process > CORE_HELLO:HELLO:cowpy -
ERROR ~ Error executing process > 'CORE_HELLO:HELLO:CAT_CAT (test)'
Caused by:
WARNING: This module has been deprecated. Please use nf-core/modules/find/concatenate
Reason:
This module passes all input files as shell arguments, which can exceed the UNIX ARG_MAX
limit when concatenating large numbers of files. The find/concatenate module resolves this
by staging files into a directory and enumerating them with `find`, and also enforces
consistent input compression (all gzipped or all uncompressed). Also enables faster, parallel
decompression with pigz.
. Expression: false -- Check script 'modules/nf-core/cat/cat/main.nf' at line: 31
Source block:
def deprecation_message = """
WARNING: This module has been deprecated. Please use nf-core/modules/find/concatenate
Reason:
This module passes all input files as shell arguments, which can exceed the UNIX ARG_MAX
executor > local (6)
[b4/48c9a7] process > CORE_HELLO:HELLO:sayHello (3) [100%] 3 of 3 ✔
[d9/9b3979] process > CORE_HELLO:HELLO:convertToUpper (3) [100%] 3 of 3 ✔
[- ] process > CORE_HELLO:HELLO:CAT_CAT -
[- ] process > CORE_HELLO:HELLO:cowpy -
Execution cancelled -- Finishing pending tasks before exit
ERROR ~ Error executing process > 'CORE_HELLO:HELLO:CAT_CAT (test)'
Caused by:
WARNING: This module has been deprecated. Please use nf-core/modules/find/concatenate
Reason:
This module passes all input files as shell arguments, which can exceed the UNIX ARG_MAX
limit when concatenating large numbers of files. The find/concatenate module resolves this
by staging files into a directory and enumerating them with `find`, and also enforces
consistent input compression (all gzipped or all uncompressed). Also enables faster, parallel
decompression with pigz.
. Expression: false -- Check script 'modules/nf-core/cat/cat/main.nf' at line: 31
Source block:
def deprecation_message = """
WARNING: This module has been deprecated. Please use nf-core/modules/find/concatenate
Reason:
This module passes all input files as shell arguments, which can exceed the UNIX ARG_MAX
limit when concatenating large numbers of files. The find/concatenate module resolves this
by staging files into a directory and enumerating them with `find`, and also enforces
consistent input compression (all gzipped or all uncompressed). Also enables faster, parallel
executor > local (6)
[b4/48c9a7] process > CORE_HELLO:HELLO:sayHello (3) [100%] 3 of 3 ✔
[d9/9b3979] process > CORE_HELLO:HELLO:convertToUpper (3) [100%] 3 of 3 ✔
[- ] process > CORE_HELLO:HELLO:CAT_CAT -
[- ] process > CORE_HELLO:HELLO:cowpy -
Execution cancelled -- Finishing pending tasks before exit
-[core/hello] Pipeline completed with errors-
ERROR ~ Error executing process > 'CORE_HELLO:HELLO:CAT_CAT (test)'
Caused by:
WARNING: This module has been deprecated. Please use nf-core/modules/find/concatenate
Reason:
This module passes all input files as shell arguments, which can exceed the UNIX ARG_MAX
limit when concatenating large numbers of files. The find/concatenate module resolves this
by staging files into a directory and enumerating them with `find`, and also enforces
consistent input compression (all gzipped or all uncompressed). Also enables faster, parallel
decompression with pigz.
. Expression: false -- Check script 'modules/nf-core/cat/cat/main.nf' at line: 31
Source block:
def deprecation_message = """
WARNING: This module has been deprecated. Please use nf-core/modules/find/concatenate
Reason:
This module passes all input files as shell arguments, which can exceed the UNIX ARG_MAX
limit when concatenating large numbers of files. The find/concatenate module resolves this
by staging files into a directory and enumerating them with `find`, and also enforces
consistent input compression (all gzipped or all uncompressed). Also enables faster, parallel
decompression with pigz.
"""
assert false: deprecation_message
def file_list = files_in.collect { file -> file.toString() }
prefix = task.ext.prefix ?: "${meta.id}${getFileSuffix(file_list[0])}"
Container:
quay.io/biocontainers/pigz:2.8
Tip: you can try to figure out what's wrong by changing to the process work dir and showing the script file named `.command.sh`
-- Check '.nextflow.log' file for details
ERROR ~ Pipeline failed. Please refer to troubleshooting docs: https://nf-co.re/docs/usage/troubleshooting
-- Check '.nextflow.log' file for details