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/basic_training/operators.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -170,7 +170,7 @@ z
170
170
171
171
!!! warning
172
172
173
-
The items in the resulting channel have the same order as in the respective original channels. However, there is no guarantee that the element of the second channel are appended after the elements of the first. Indeed, in the example above, the element `a` has been printed before `3`.
173
+
The items in the resulting channel have the same order as in the respective original channels. However, there is no guarantee that the elements of the second channel are appended after the elements of the first. Indeed, in the example above, the element `a` has been printed before `3`.
174
174
175
175
### `flatten()`
176
176
@@ -390,7 +390,7 @@ The `splitCsv` operator allows you to parse text items emitted by a channel, tha
390
390
391
391
It then splits them into records or groups them as a list of records with a specified length.
392
392
393
-
In the simplest case, just apply the `splitCsv` operator to a channel emitting a CSV formatted text files or text entries. For example, to view only the first and fourth columns:
393
+
In the simplest case, just apply the `splitCsv` operator to a channel emitting a CSV formatted text file or text entries. For example, to view only the first and fourth columns:
Copy file name to clipboardExpand all lines: docs/basic_training/processes.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
@@ -197,7 +197,7 @@ Your expected output will look something like this:
197
197
The current directory is /workspace/gitpod/nf-training/work/7a/4b050a6cdef4b6c1333ce29f7059a0
198
198
```
199
199
200
-
However, this using the single quotes (`'`) will block the usage of Nextflow variables in the command script.
200
+
However, using the single quotes (`'`) will block the usage of Nextflow variables in the command script.
201
201
202
202
Another alternative is to use a `shell` statement instead of `script` and use a different syntax for Nextflow variables, e.g., `!{..}`. This allows the use of both Nextflow and Bash variables in the same script.
203
203
@@ -540,7 +540,7 @@ workflow {
540
540
3 and a
541
541
```
542
542
543
-
As `ch2` is now a _value_ channel, it can be consumed multiple times and do not affect process termination.
543
+
As `ch2` is now a _value_ channel, it can be consumed multiple times and does not affect process termination.
544
544
545
545
!!! question "Exercise"
546
546
@@ -760,7 +760,7 @@ Some caveats on glob pattern behavior:
760
760
761
761
- Input files are not included in the list of possible matches
762
762
- Glob pattern matches both files and directory paths
763
-
- When a two stars pattern `**` is used to recourse across directories, only file paths are matched i.e., directories are not included in the result list.
763
+
- When a two asterisks pattern `**` is used to recourse across directories, only file paths are matched i.e., directories are not included in the result list.
764
764
765
765
!!! question "Exercise"
766
766
@@ -1141,7 +1141,7 @@ workflow {
1141
1141
}
1142
1142
```
1143
1143
1144
-
The above example will copy all blast script files created by the `BLASTSEQ` process into the directory path `results`.
1144
+
The above example will copy all BAM files created by the `FOO` process into the directory path `results`.
0 commit comments