Skip to content

Commit 199b91d

Browse files
authored
Merge pull request #414 from nextflow-io/minor_fix_hello_operators
Fix inputs in hello operators
2 parents 6d39e6b + 8ebf7fd commit 199b91d

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

docs/hello_nextflow/05_hello_operators.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,6 @@ Let's write a new process to define how that's going to work, based on the comma
411411
process GATK_GENOMICSDB {
412412
413413
container "community.wave.seqera.io/library/gatk4:4.5.0.0--730ee8817e436867"
414-
415414
publishDir 'results_genomics', mode: 'copy'
416415
417416
input:
@@ -736,8 +735,8 @@ _Before:_
736735

737736
```groovy title="hello-operators.nf" linenums="78"
738737
input:
739-
path all_gvcfs_ch
740-
path all_idxs_ch
738+
path all_gvcfs
739+
path all_idxs
741740
path interval_list
742741
val cohort_name
743742
```
@@ -746,8 +745,8 @@ _After:_
746745

747746
```groovy title="hello-operators.nf" linenums="78"
748747
input:
749-
path all_gvcfs_ch
750-
path all_idxs_ch
748+
path all_gvcfs
749+
path all_idxs
751750
path interval_list
752751
val cohort_name
753752
path ref_fasta

0 commit comments

Comments
 (0)