You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/hello_nextflow/01_hello_world.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -138,7 +138,7 @@ process sayHello {
138
138
}
139
139
```
140
140
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.
142
142
143
143
The `output` definition includes the `path` qualifier, which tells Nextflow this should be handled as a path (includes both directory paths and files).
144
144
Another common qualifier is `val`.
@@ -172,7 +172,7 @@ workflow {
172
172
}
173
173
```
174
174
175
-
This a very minimal **workflow** definition.
175
+
This is a very minimal **workflow** definition.
176
176
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)**.
177
177
178
178
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:
0 commit comments