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/hello_nextflow/04_hello_genomics.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -310,7 +310,7 @@ process GATK_HAPLOTYPECALLER {
310
310
311
311
output:
312
312
path "${input_bam}.vcf" , emit: vcf
313
-
path "${input_bam}.vcf.idx" , emit: idx
313
+
path "${input_bam}.vcf.idx" , emit: idx
314
314
315
315
"""
316
316
gatk HaplotypeCaller \
@@ -322,7 +322,7 @@ process GATK_HAPLOTYPECALLER {
322
322
}
323
323
```
324
324
325
-
You'll notice that we've introduced some new syntax here (`emit:`) to uniquely name each of our output channels, and the reasons for this will become clear soon.
325
+
You'll notice that we've introduced some new syntax here (`emit:`) to uniquely name each of our output channels, and the reasons for this will become clear soon.
326
326
327
327
This command takes quite a few more inputs, because GATK needs more information to perform the analysis compared to a simple indexing job.
328
328
But you'll note that there are even more inputs defined in the inputs block than are listed in the GATK command. Why is that?
0 commit comments