Skip to content

Commit 5a58a22

Browse files
authored
Update formatting of current process output syntax
Co-authored-by: Ben Sherman <bentshermann@gmail.com> Signed-off-by: Ben Sherman <bentshermann@gmail.com>
1 parent d0f2f5e commit 5a58a22

1 file changed

Lines changed: 10 additions & 2 deletions

File tree

adr/20260312-record-syntax-unification.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,11 @@ process FASTQC {
3434
process FASTQC {
3535
...
3636
output:
37-
record(id: sample.id, html: file('*.html'), zip: file('*.zip'))
37+
record(
38+
id: sample.id,
39+
html: file('*.html'),
40+
zip: file('*.zip')
41+
)
3842
}
3943
```
4044

@@ -68,7 +72,11 @@ process FASTQC {
6872
}
6973
7074
output:
71-
record(id: sample.id, html: file('*.html'), zip: file('*.zip'))
75+
record(
76+
id: sample.id,
77+
html: file('*.html'),
78+
zip: file('*.zip')
79+
)
7280
}
7381
```
7482

0 commit comments

Comments
 (0)