Skip to content

Commit 8e5e517

Browse files
committed
Prettier
1 parent 91b5e41 commit 8e5e517

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/hello_nextflow/04_hello_genomics.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ process GATK_HAPLOTYPECALLER {
310310
311311
output:
312312
path "${input_bam}.vcf" , emit: vcf
313-
path "${input_bam}.vcf.idx" , emit: idx
313+
path "${input_bam}.vcf.idx" , emit: idx
314314
315315
"""
316316
gatk HaplotypeCaller \
@@ -322,7 +322,7 @@ process GATK_HAPLOTYPECALLER {
322322
}
323323
```
324324

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.
326326

327327
This command takes quite a few more inputs, because GATK needs more information to perform the analysis compared to a simple indexing job.
328328
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?

docs/hello_nextflow/07_hello_modules.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ process GATK_HAPLOTYPECALLER {
293293
294294
output:
295295
path "${input_bam}.g.vcf" , emit: vcf
296-
path "${input_bam}.g.vcf.idx" , emit: idx
296+
path "${input_bam}.g.vcf.idx" , emit: idx
297297
298298
"""
299299
gatk HaplotypeCaller \

0 commit comments

Comments
 (0)