From c72c3e5c3357f9fd9d2757101f47216a93e19c66 Mon Sep 17 00:00:00 2001 From: ejseqera Date: Sat, 16 Nov 2024 15:08:47 -0500 Subject: [PATCH] fix referenced path to getQuote solutions --- docs/hello_nextflow/03_hello_containers.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/hello_nextflow/03_hello_containers.md b/docs/hello_nextflow/03_hello_containers.md index 2e43fdb6..164f3b6e 100644 --- a/docs/hello_nextflow/03_hello_containers.md +++ b/docs/hello_nextflow/03_hello_containers.md @@ -439,7 +439,7 @@ For the `quote` container image, you can either use the one you built yourself i """ ``` -You can find a solution to this exercise in `containers/scripts/hello-containers-4.1.nf`. +You can find a solution to this exercise in `containers/solutions/hello-containers-4.1.nf`. ### 4.2. Modify your Nextflow pipeline to allow it to execute in `quote` and `sayHello` modes. @@ -462,7 +462,7 @@ workflow { You can use `new_ch = processName.out` to assign a name to the output channel of a process. -You can find a solution to this exercise in `containers/scripts/hello-containers-4.2.nf`. +You can find a solution to this exercise in `containers/solutions/hello-containers-4.2.nf`. ### Takeaway