Skip to content

Commit c86aa4f

Browse files
authored
Small fixes to Hello World (#528)
Wrong file name in code example of point 4. Typo fix (This a -> This *is* a)
1 parent e868fc1 commit c86aa4f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/hello_nextflow/01_hello_world.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ process sayHello {
138138
}
139139
```
140140

141-
This a very minimal process definition that just contains an `output` definition and the `script` to execute.
141+
This is a very minimal process definition that just contains an `output` definition and the `script` to execute.
142142

143143
The `output` definition includes the `path` qualifier, which tells Nextflow this should be handled as a path (includes both directory paths and files).
144144
Another common qualifier is `val`.
@@ -172,7 +172,7 @@ workflow {
172172
}
173173
```
174174

175-
This a very minimal **workflow** definition.
175+
This is a very minimal **workflow** definition.
176176
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)**.
177177

178178
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.
@@ -479,7 +479,7 @@ In the process block, make the following code change:
479479

480480
_Before:_
481481

482-
```groovy title="hello-channels.nf" linenums="6"
482+
```groovy title="hello-world.nf" linenums="6"
483483
process sayHello {
484484
485485
publishDir 'results', mode: 'copy'
@@ -490,7 +490,7 @@ process sayHello {
490490

491491
_After:_
492492

493-
```groovy title="hello-channels.nf" linenums="6"
493+
```groovy title="hello-world.nf" linenums="6"
494494
process sayHello {
495495
496496
publishDir 'results', mode: 'copy'

0 commit comments

Comments
 (0)