Skip to content

Commit

Permalink
Fix additional minor errors in tutorial
Browse files Browse the repository at this point in the history
  • Loading branch information
fasterius committed Nov 23, 2022
1 parent 3a8d33f commit ed19bf9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pages/nextflow/nextflow-6-optimising-the-mrsa-workflow.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ curious of how this could be done.
```nextflow
// Channel definition
ch_genome_fasta = Channel
.fromPath( ftp://ftp.ensemblgenomes.org/pub/bacteria/release-37/fasta/bacteria_18_collection/staphylococcus_aureus_subsp_aureus_nctc_8325/dna/Staphylococcus_aureus_subsp_aureus_nctc_8325.ASM1342v1.dna_rm.toplevel.fa.gz )
.fromPath( "ftp://ftp.ensemblgenomes.org/pub/bacteria/release-37/fasta/bacteria_18_collection/staphylococcus_aureus_subsp_aureus_nctc_8325/dna/Staphylococcus_aureus_subsp_aureus_nctc_8325.ASM1342v1.dna_rm.toplevel.fa.gz" )
.map{ file -> tuple(file.getBaseName(), file) }
// INDEX_GENOME process definition
Expand All @@ -82,6 +82,7 @@ process INDEX_GENOME {
gunzip -c ${fasta} > tempfile
bowtie2-build tempfile ${fasta_name}
"""
}
```

</details>
Expand Down

0 comments on commit ed19bf9

Please sign in to comment.