Skip to content

Commit 6a222dc

Browse files
authored
Merge pull request #434 from nextflow-io/fix_it
fix single usage of implicit input in closure
2 parents b3d92d3 + a4c230b commit 6a222dc

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)