Skip to content

Commit

Permalink
refactor: Keep container directives for offline download
Browse files Browse the repository at this point in the history
  • Loading branch information
edmundmiller committed Aug 8, 2024
1 parent 7ead8da commit 4e91740
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion modules/nf-core/bowtie/align/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ process BOWTIE_ALIGN {
label 'process_high'

conda "${moduleDir}/environment.yml"
container "nf-core/modules/bowtie:bowtie-1.3.0_samtools-1.16.1--2c2a8138b83d6d1d"
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'nf-core/modules/bowtie:bowtie-1.3.0_samtools-1.16.1--2c2a8138b83d6d1d' :
'nf-core/modules/bowtie:bowtie-1.3.0_samtools-1.16.1--82705d624eee2198' }"

input:
tuple val(meta), path(reads)
Expand Down

0 comments on commit 4e91740

Please sign in to comment.