Skip to content

Commit

Permalink
build: Add containers back
Browse files Browse the repository at this point in the history
  • Loading branch information
edmundmiller committed Nov 30, 2023
1 parent 4c8a4cf commit 41c8a02
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
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_align--6c5b9c93546643d8"
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'nf-core/modules/bowtie/align/singularity:bowtie_align--9c6a06ebc094e52a' :
'nf-core/modules/bowtie/align:bowtie_align--adc5d68fc5834323' }"

input:
tuple val(meta), path(reads)
Expand Down
4 changes: 3 additions & 1 deletion modules/nf-core/bowtie/build/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ process BOWTIE_BUILD {
label 'process_high'

conda "${moduleDir}/environment.yml"
container "nf-core/modules/bowtie:bowtie_build--df26d88a69745299"
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'nf-core/modules/bowtie/build/singularity:bowtie_build--7d5920d114506960' :
'nf-core/modules/bowtie/build:bowtie_build--31571fd1e6192239' }"

input:
path fasta
Expand Down

0 comments on commit 41c8a02

Please sign in to comment.