Skip to content

Commit

Permalink
Fix invalid GATK container (nf-core#3673)
Browse files Browse the repository at this point in the history
Fix GATK container which was invalid

Fixes nf-core#3668
  • Loading branch information
adamrtalbot authored and limrp committed Jul 28, 2023
1 parent 879be43 commit 674c31a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ process GATK4_DETERMINEGERMLINECONTIGPLOIDY {
label 'process_single'

//Conda is not supported at the moment: https://github.com/broadinstitute/gatk/issues/7811
container "quay.io/nf-core/gatk:4.4.0.0" //Biocontainers is missing a package
container "nf-core/gatk:4.4.0.0" //Biocontainers is missing a package

// Exit if running this module with -profile conda / -profile mamba
if (workflow.profile.tokenize(',').intersect(['conda', 'mamba']).size() >= 1) {
Expand Down
2 changes: 1 addition & 1 deletion modules/nf-core/gatk4/germlinecnvcaller/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ process GATK4_GERMLINECNVCALLER {
label 'process_single'

//Conda is not supported at the moment: https://github.com/broadinstitute/gatk/issues/7811
container "quay.io/nf-core/gatk:4.4.0.0" //Biocontainers is missing a package
container "nf-core/gatk:4.4.0.0" //Biocontainers is missing a package

// Exit if running this module with -profile conda / -profile mamba
if (workflow.profile.tokenize(',').intersect(['conda', 'mamba']).size() >= 1) {
Expand Down
2 changes: 1 addition & 1 deletion modules/nf-core/gatk4/postprocessgermlinecnvcalls/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ process GATK4_POSTPROCESSGERMLINECNVCALLS {
label 'process_single'

//Conda is not supported at the moment: https://github.com/broadinstitute/gatk/issues/7811
container "quay.io/nf-core/gatk:4.4.0.0" //Biocontainers is missing a package
container "nf-core/gatk:4.4.0.0" //Biocontainers is missing a package

// Exit if running this module with -profile conda / -profile mamba
if (workflow.profile.tokenize(',').intersect(['conda', 'mamba']).size() >= 1) {
Expand Down

0 comments on commit 674c31a

Please sign in to comment.