From bd2818cd9b2290b6aca3c45570e2ebb5b639dec7 Mon Sep 17 00:00:00 2001 From: Lukas Forer Date: Sat, 13 Jul 2024 12:59:36 +0200 Subject: [PATCH] Add `checkIfExists: true` --- test-data/workflow/symlinks/workflow.nf.test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-data/workflow/symlinks/workflow.nf.test b/test-data/workflow/symlinks/workflow.nf.test index bc12693b..1c2b97f3 100644 --- a/test-data/workflow/symlinks/workflow.nf.test +++ b/test-data/workflow/symlinks/workflow.nf.test @@ -11,7 +11,7 @@ nextflow_workflow { """ // define inputs of the workflow here. Example: input[0] = Channel.of( - file("${moduleDir}/test-file.txt") + file("${moduleDir}/test-file2.txt", checkIfExists: true) ) """ }