Skip to content

Commit

Permalink
Minor tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
vdauwera committed Jan 21, 2025
1 parent ca6794d commit 781ac39
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 34 deletions.
17 changes: 8 additions & 9 deletions docs/hello_nextflow/01_hello_world.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,17 @@ Let's demonstrate this with a simple command that we run directly in the termina
echo 'Hello World!'
```

### 0.2. Now make it write the text output to a file

```bash
echo 'Hello World!' > output.txt
```console title="Output"
Hello World!
```

### 0.3. Verify that the output file is there using the `ls` command
### 0.2. Now make it write the text output to a file

```bash
ls
echo 'Hello World!' > output.txt
```

### 0.4. Show the file contents
### 0.3. Show the file contents

```bash
cat output.txt
Expand Down Expand Up @@ -157,8 +155,9 @@ workflow {
```

This a very minimal **workflow** definition.
In a real-world pipeline, the workflow typically contains multiple calls to **processes** connected by **channels**.
You'll learn how to add more processes and connect them by channels in Part 3 of this course.
In a real-world pipeline, the workflow typically contains multiple calls to **processes** connected by **channels**, and the processes expect one or more variable **input(s)**.

You'll learn how to add variable inputs later in this training module; and you'll learn how to add more processes and connect them by channels in Part 3 of this course.

### Takeaway

Expand Down
4 changes: 3 additions & 1 deletion hello-nextflow/greetings.csv
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
Hello,Bonjour,Holà
Hello
Bonjour
Holà
24 changes: 0 additions & 24 deletions hello-nextflow/hello-world copy.nf

This file was deleted.

0 comments on commit 781ac39

Please sign in to comment.