Skip to content

Commit

Permalink
Qualify SAGE Docker image URL with 'quay.io/'
Browse files Browse the repository at this point in the history
  • Loading branch information
scwatts committed May 10, 2024
1 parent b7f6370 commit 50d77a2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion modules/local/sage/append/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ process SAGE_APPEND {
conda "${moduleDir}/environment.yml"
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://depot.galaxyproject.org/singularity/hmftools-sage:3.4.3--hdfd78af_0' :
'biocontainers/hmftools-sage:3.4.3--hdfd78af_0' }"
'quay.io/biocontainers/hmftools-sage:3.4.3--hdfd78af_0' }"

input:
tuple val(meta), path(vcf), path(bam), path(bai)
Expand Down
2 changes: 1 addition & 1 deletion modules/local/sage/germline/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ process SAGE_GERMLINE {
conda "${moduleDir}/environment.yml"
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://depot.galaxyproject.org/singularity/hmftools-sage:3.4.3--hdfd78af_0' :
'biocontainers/hmftools-sage:3.4.3--hdfd78af_0' }"
'quay.io/biocontainers/hmftools-sage:3.4.3--hdfd78af_0' }"

input:
tuple val(meta), path(tumor_bam), path(normal_bam), path(tumor_bai), path(normal_bai)
Expand Down
2 changes: 1 addition & 1 deletion modules/local/sage/somatic/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ process SAGE_SOMATIC {
conda "${moduleDir}/environment.yml"
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://depot.galaxyproject.org/singularity/hmftools-sage:3.4.3--hdfd78af_0' :
'biocontainers/hmftools-sage:3.4.3--hdfd78af_0' }"
'quay.io/biocontainers/hmftools-sage:3.4.3--hdfd78af_0' }"

input:
tuple val(meta), path(tumor_bam), path(normal_bam), path(tumor_bai), path(normal_bai)
Expand Down

0 comments on commit 50d77a2

Please sign in to comment.