From a1e8d4bda81301e71cee646d718d29aed44d5296 Mon Sep 17 00:00:00 2001 From: mbarriosalmirall <165905225+mbarriosalmirall@users.noreply.github.com> Date: Wed, 3 Apr 2024 13:29:25 +0200 Subject: [PATCH] Create test --- test | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 test diff --git a/test b/test new file mode 100644 index 0000000..8d57b71 --- /dev/null +++ b/test @@ -0,0 +1,20 @@ +#!/usr/bin/env nextflow + +params.example_key = 'Hello' + +process sayHello { + input: + val x + + output: + stdout + + script: + """ + echo '${x} world!' + """ +} + +workflow { + Channel.of(params.example_key) | sayHello | view +}