Skip to content

Small fix #528

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 28, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/hello_nextflow/01_hello_world.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ process sayHello {
}
```

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

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

This a very minimal **workflow** definition.
This is a very minimal **workflow** definition.
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.
Expand Down Expand Up @@ -479,7 +479,7 @@ In the process block, make the following code change:

_Before:_

```groovy title="hello-channels.nf" linenums="6"
```groovy title="hello-world.nf" linenums="6"
process sayHello {

publishDir 'results', mode: 'copy'
Expand All @@ -490,7 +490,7 @@ process sayHello {

_After:_

```groovy title="hello-channels.nf" linenums="6"
```groovy title="hello-world.nf" linenums="6"
process sayHello {

publishDir 'results', mode: 'copy'
Expand Down