From 8a714a4b90eac1a1209ec15c6930c301e6572175 Mon Sep 17 00:00:00 2001 From: Nikolai Date: Wed, 5 Feb 2025 16:11:04 +0100 Subject: [PATCH] Remove tip about shell block (#5743) Signed-off-by: Nikolai --- docs/process.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/docs/process.md b/docs/process.md index 871ecea093..fc8d1667db 100644 --- a/docs/process.md +++ b/docs/process.md @@ -78,10 +78,6 @@ process doOtherThings { In this example, `$MAX` is a Nextflow variable that must be defined elsewhere in the pipeline script. Nextflow replaces it with the actual value before executing the script. Meanwhile, `$DB` is a Bash variable that must exist in the execution environment, and Bash will replace it with the actual value during execution. -:::{tip} -Alternatively, you can use the {ref}`process-shell` block definition, which allows a script to contain both Bash and Nextflow variables without having to escape the first. -::: - ### Scripts *à la carte* The process script is interpreted by Nextflow as a Bash script by default, but you are not limited to Bash.