Skip to content

Commit a35789d

Browse files
pinin4fjordsclaude
andcommitted
Fix workflow description to match actual behavior
Corrected the Hello Nextflow workflow description: - sayHello writes greetings to files (doesn't add "world!") - convertToUpper operates on the greeting text - Added process names for clarity 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 43d222d commit a35789d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/hello_nf-core/02_rewrite_hello.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -285,12 +285,12 @@ A composable workflow must be called from a parent workflow—it cannot run on i
285285
If you haven't completed the [Hello Nextflow](../hello_nextflow/index.md) training, here's a quick overview of what this simple workflow does:
286286

287287
1. **Reads greetings** from a CSV file (e.g., "Hello", "Bonjour", "Holà")
288-
2. **Says hello** by adding "world!" to each greeting
289-
3. **Converts to uppercase** (e.g., "HELLO WORLD!")
290-
4. **Collects results** into a single file
291-
5. **Adds ASCII art** using cowpy to display the final output with a fun character
288+
2. **Writes each greeting** to its own output file (e.g., "Hello-output.txt")
289+
3. **Converts to uppercase** (e.g., "HELLO")
290+
4. **Collects all uppercase greetings** into a single batch file
291+
5. **Adds ASCII art** using cowpy to display the collected greetings with a fun character
292292

293-
The workflow uses four Nextflow processes organized into separate module files, takes an input CSV file of greetings, and produces a whimsical output file.
293+
The workflow uses four Nextflow processes (`sayHello`, `convertToUpper`, `collectGreetings`, and `cowpy`) organized into separate module files, takes an input CSV file of greetings, and produces a whimsical ASCII art output file.
294294

295295
We provide you with a clean, fully functional copy of the completed Hello Nextflow workflow in the directory `original-hello` along with its modules and the default CSV file it expects to use as input.
296296

0 commit comments

Comments
 (0)