From 6f345b8777df75fd82e2f5746b28bb570fb4df8f Mon Sep 17 00:00:00 2001 From: Yasin Kaya Date: Thu, 12 Dec 2024 14:50:21 +0100 Subject: [PATCH] Updated error message for min_contig_length validation --- nextflow.config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nextflow.config b/nextflow.config index 2d2b839..9cbc9e6 100644 --- a/nextflow.config +++ b/nextflow.config @@ -84,7 +84,7 @@ params { process { beforeScript = """ if [[ ${params.min_contig_length} -le 1000 ]]; then - echo "ERROR: The parameter 'min_contig_length' must be greater than 1 kbp (1000 base pairs). Provided value: ${params.min_contig_length}" >&2 + echo "ERROR: The parameter 'min_contig_length' must be greater than 5 kbp (5000 base pairs). Provided value: ${params.min_contig_length}" >&2 exit 1 fi """