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/reference/operator.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1058,7 +1058,7 @@ See also: [tap](#tap)
1058
1058
1059
1059
*Returns: queue channel*
1060
1060
1061
-
The `splitCsv` operator parses and splits [CSV-formatted](http://en.wikipedia.org/wiki/Comma-separated_values) text from a source channel into records, or groups of records with a given size.
1061
+
The `splitCsv` operator parses and splits [CSV](http://en.wikipedia.org/wiki/Comma-separated_values)files or text from a source channel into records.
1062
1062
1063
1063
For example:
1064
1064
@@ -1130,7 +1130,7 @@ Available options:
1130
1130
1131
1131
*Returns: queue channel*
1132
1132
1133
-
The `splitFasta` operator splits [FASTA-formatted](http://en.wikipedia.org/wiki/FASTA_format) text from a source channel into individual sequences.
1133
+
The `splitFasta` operator splits [FASTA](http://en.wikipedia.org/wiki/FASTA_format) files or text from a source channel into individual sequences.
1134
1134
1135
1135
The `by` option can be used to group sequences into chunks of a given size. The following example shows how to read a FASTA file and split it into chunks of 10 sequences each:
1136
1136
@@ -1202,7 +1202,7 @@ See also: [countFasta](#countfasta)
1202
1202
1203
1203
*Returns: queue channel*
1204
1204
1205
-
The `splitFastq` operator splits [FASTQ formatted](http://en.wikipedia.org/wiki/FASTQ_format) text from a source channel into individual sequences.
1205
+
The `splitFastq` operator splits [FASTQ](http://en.wikipedia.org/wiki/FASTQ_format) files or text from a source channel into individual sequences.
1206
1206
1207
1207
The `by` option can be used to group sequences into chunks of a given size. The following example shows how to read a FASTQ file and split it into chunks of 10 sequences each:
1208
1208
@@ -1285,7 +1285,7 @@ See also: [countFastq](#countfastq)
1285
1285
1286
1286
*Returns: queue channel*
1287
1287
1288
-
The `splitJson` operator splits [JSON formatted](https://en.wikipedia.org/wiki/JSON) text from a source channel into individual records.
1288
+
The `splitJson` operator splits [JSON](https://en.wikipedia.org/wiki/JSON) files or text from a source channel into individual records.
1289
1289
1290
1290
If the source item is a JSON array, each element of the array will be emitted:
0 commit comments