Skip to content

Commit e1eea98

Browse files
Add suggestions from Geraldine and Phil
- Remove mention of fair threading - Remove mention of multi-channel - Convert absolute to relative link
1 parent ce0d18f commit e1eea98

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/hello_nextflow/03_hello_workflow.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ In theory this should handle any arbitrary number of input files.
368368

369369
Some command-line tools require providing an argument (like `-input`) for each input file.
370370
In that case, we would have to do a little bit of extra work to compose the command.
371-
You can see an example of this in the [Nextflow for Genomics](../nf4_science/genomics/) training course.
371+
You can see an example of this in the [Nextflow for Genomics](../../nf4_science/genomics/) training course.
372372

373373
<!--[ADD LINK to note above] -->
374374

@@ -536,7 +536,7 @@ This time we have all three greetings in the final output file. Success! Remove
536536
!!! note
537537

538538
If you run this several times without `-resume`, you will see that the order of the greetings changes from one run to the next.
539-
This shows you that the order in which elements flow through process calls is not guaranteed to be consistent, unless you make use of fair threading (check the [fair](https://www.nextflow.io/docs/latest/reference/process.html#fair) directive).
539+
This shows you that the order in which elements flow through process calls is not guaranteed to be consistent.
540540

541541
### Takeaway
542542

@@ -793,7 +793,7 @@ But as the saying goes, why not both?
793793

794794
### 4.2. Report the output at the end of the workflow
795795

796-
Now that we have two outputs coming out of the `collectGreetings` process, the `collectGreetings.out` output multi-channel contains two channels:
796+
Now that we have two outputs coming out of the `collectGreetings` process, the `collectGreetings.out` output contains two channels:
797797

798798
- `collectGreetings.out.outfile` contains the final output file
799799
- `collectGreetings.out.count` contains the count of greetings

0 commit comments

Comments
 (0)