Skip to content

Commit a4c230b

Browse files
committed
fix single usage of implicit input in closure
1 parent b3d92d3 commit a4c230b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/hello_nextflow/05_hello_operators.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -600,7 +600,7 @@ _After:_
600600

601601
```groovy title="hello-operators.nf" linenums="87"
602602
script:
603-
def gvcfs_line = all_gvcfs.collect { "-V ${it}" }.join(' ')
603+
def gvcfs_line = all_gvcfs.collect { gvcf -> "-V ${gvcf}" }.join(' ')
604604
"""
605605
gatk GenomicsDBImport \
606606
${gvcfs_line} \

0 commit comments

Comments
 (0)