Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Default registry to quay.io #3344

Merged
merged 21 commits into from
May 2, 2023
Merged
Show file tree
Hide file tree
Changes from 11 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
a189d60
Add default registry for Docker and Podman to quay.io
adamrtalbot Apr 27, 2023
3f4f0cb
Use full URI for all modules
adamrtalbot Apr 27, 2023
6c4a22a
Merge branch 'master' into default_registry_to_quay.io
adamrtalbot Apr 27, 2023
2736486
More docker.io added to container specs
adamrtalbot Apr 27, 2023
8be31cd
More docker.io
adamrtalbot Apr 27, 2023
4cae287
Correct docker container for VEP
adamrtalbot Apr 27, 2023
35a2c33
Artifacts named after specific run
adamrtalbot Apr 27, 2023
1211817
Update universc image name to use nfcore/universc instead of bioconta…
adamrtalbot Apr 27, 2023
ec9b21c
Revert snpeff docker container to nfcore/snpeff
adamrtalbot Apr 27, 2023
849571a
Update cellranger/count md5sum tests
adamrtalbot Apr 27, 2023
6563ada
Remove eido md5sum because it doesn't work on conda
adamrtalbot Apr 27, 2023
671679c
Fix eido version string
adamrtalbot Apr 28, 2023
aef394a
correct md5sums
adamrtalbot Apr 28, 2023
1a97395
Omit gatk4 conda tools that don't work
adamrtalbot Apr 28, 2023
303796e
Remove slashes from tags for uploading artifacts
adamrtalbot Apr 28, 2023
8a78e49
bb22faef28dfb0b3b106bd5cc320bf09
adamrtalbot Apr 28, 2023
80d16a9
Correct string parsing for artifact upload
adamrtalbot Apr 28, 2023
4bb8ccb
Remove singularity gatk4/determinegermlinecontigploidy test because i…
adamrtalbot Apr 28, 2023
f1bd184
Merge branch 'master' into default_registry_to_quay.io
adamrtalbot Apr 28, 2023
8b03a98
fix-meta-liniting
sateeshperi Apr 28, 2023
e7c0a09
Merge remote-tracking branch 'sateesh/fix/v2.8-meta-linting-errors' i…
adamrtalbot May 2, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pytest-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ jobs:
if: failure()
uses: actions/upload-artifact@v2
with:
name: logs-${{ matrix.profile }}
name: logs-${{ matrix.profile }}-${{ matrix.tags }}
path: |
/home/runner/pytest_workflow_*/*/.nextflow.log
/home/runner/pytest_workflow_*/*/log.out
Expand Down
2 changes: 1 addition & 1 deletion modules/nf-core/bases2fastq/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ process BASES2FASTQ {
tag "$meta.id"
label 'process_high'

container "elembio/bases2fastq:1.1.0"
container "docker.io/elembio/bases2fastq:1.1.0"

// 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/basicpy/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ process BASICPY {
exit 1, "Basicpy module does not support Conda. Please use Docker / Singularity instead."
}

container "yfukai/basicpy-docker-mcmicro:0.2.1"
container "docker.io/yfukai/basicpy-docker-mcmicro:0.2.1"

input:
tuple val(meta), path(image)
Expand Down
2 changes: 1 addition & 1 deletion modules/nf-core/bcl2fastq/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ process BCL2FASTQ {
tag {"$meta.lane" ? "$meta.id"+"."+"$meta.lane" : "$meta.id" }
label 'process_high'

container "nfcore/bcl2fastq:2.20.0.422"
container "docker.io/nfcore/bcl2fastq:2.20.0.422"

// 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/bclconvert/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ process BCLCONVERT {
tag {"$meta.lane" ? "$meta.id"+"."+"$meta.lane" : "$meta.id" }
label 'process_high'

container "nfcore/bclconvert:4.0.3"
container "docker.io/nfcore/bclconvert:4.0.3"

// 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/cat/fastq/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ process CAT_FASTQ {
conda "conda-forge::sed=4.7"
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://depot.galaxyproject.org/singularity/ubuntu:20.04' :
'ubuntu:20.04' }"
'docker.io/ubuntu:20.04' }"

input:
tuple val(meta), path(reads, stageAs: "input*/*")
Expand Down
2 changes: 1 addition & 1 deletion modules/nf-core/cellpose/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ process CELLPOSE {
if (workflow.profile.tokenize(',').intersect(['conda', 'mamba']).size() >= 1) {
exit 1, "I did not manage to create a cellpose module in Conda that works in all OSes. Please use Docker / Singularity / Podman instead."}

container "biocontainers/cellpose:2.1.1_cv2"
container "docker.io/biocontainers/cellpose:2.1.1_cv2"
ewels marked this conversation as resolved.
Show resolved Hide resolved

input:
tuple val(meta), path(image)
Expand Down
2 changes: 1 addition & 1 deletion modules/nf-core/cellranger/count/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ process CELLRANGER_COUNT {
tag "$meta.gem"
label 'process_high'

container "nfcore/cellranger:7.1.0"
container "docker.io/nfcore/cellranger:7.1.0"

// 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/cellranger/mkfastq/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ process CELLRANGER_MKFASTQ {
tag "mkfastq"
label 'process_medium'

container "nfcore/cellrangermkfastq:7.1.0"
container "docker.io/nfcore/cellrangermkfastq:7.1.0"

// 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/cellranger/mkgtf/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ process CELLRANGER_MKGTF {
tag "$gtf"
label 'process_low'

container "nfcore/cellranger:7.1.0"
container "docker.io/nfcore/cellranger:7.1.0"

// 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/cellranger/mkref/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ process CELLRANGER_MKREF {
tag "$fasta"
label 'process_high'

container "nfcore/cellranger:7.1.0"
container "docker.io/nfcore/cellranger:7.1.0"

// 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/coreograph/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ process COREOGRAPH {
tag "$meta.id"
label 'process_single'

container "labsyspharm/unetcoreograph:2.2.9"
container "docker.io/labsyspharm/unetcoreograph:2.2.9"

input:
tuple val(meta), path(image)
Expand Down
2 changes: 1 addition & 1 deletion modules/nf-core/custom/tabulartogseacls/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ process CUSTOM_TABULARTOGSEACLS {
conda "conda-forge::coreutils=9.1"
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://depot.galaxyproject.org/singularity/ubuntu:20.04' :
'ubuntu:20.04' }"
'docker.io/ubuntu:20.04' }"

input:
tuple val(meta), path(samples)
Expand Down
2 changes: 1 addition & 1 deletion modules/nf-core/custom/tabulartogseagct/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ process CUSTOM_TABULARTOGSEAGCT {
conda "conda-forge::coreutils=9.1"
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://depot.galaxyproject.org/singularity/ubuntu:20.04' :
'ubuntu:20.04' }"
'docker.io/ubuntu:20.04' }"

input:
tuple val(meta), path(tabular)
Expand Down
2 changes: 1 addition & 1 deletion modules/nf-core/deepcell/mesmer/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ process DEEPCELL_MESMER {
tag "$meta.id"
label 'process_single'

container "vanvalenlab/deepcell-applications:0.4.1"
container "docker.io/vanvalenlab/deepcell-applications:0.4.1"

input:
tuple val(meta) , path(img)
Expand Down
2 changes: 1 addition & 1 deletion modules/nf-core/deepvariant/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ process DEEPVARIANT {
tag "$meta.id"
label 'process_medium'

container "google/deepvariant:1.4.0"
container "docker.io/google/deepvariant:1.4.0"

// Exit if running this module with -profile conda / -profile mamba
if (workflow.profile.tokenize(',').intersect(['conda', 'mamba']).size() >= 1) {
Expand Down
4 changes: 2 additions & 2 deletions modules/nf-core/eido/convert/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ process EIDO_CONVERT {
conda "conda-forge::eido=0.1.9"
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://containers.biocontainers.pro/s3/SingImgsRepo/eido/0.1.9_cv1/eido_0.1.9_cv1.sif' :
'biocontainers/eido:0.1.9_cv1' }"
'docker.io/biocontainers/eido:0.1.9_cv1' }"

input:
path samplesheet
Expand All @@ -32,7 +32,7 @@ process EIDO_CONVERT {

cat <<-END_VERSIONS > versions.yml
"${task.process}":
eido: \$(echo \$(eido --version 2>&1) | sed 's/^.*eido //;s/ .*//' ))
eido: \$(echo \$(eido --version 2>&1) | sed 's/^.*eido //;s/ .*//' )
END_VERSIONS
"""
}
2 changes: 1 addition & 1 deletion modules/nf-core/eido/validate/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ process EIDO_VALIDATE {
conda "conda-forge::eido=0.1.9"
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://containers.biocontainers.pro/s3/SingImgsRepo/eido/0.1.9_cv2/eido_0.1.9_cv2.sif' :
'biocontainers/eido:0.1.9_cv2' }"
'docker.io/biocontainers/eido:0.1.9_cv2' }"

input:
path samplesheet
Expand Down
2 changes: 1 addition & 1 deletion modules/nf-core/gatk4/applybqsrspark/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ process GATK4_APPLYBQSR_SPARK {
label 'process_low'

conda "bioconda::gatk4=4.3.0.0 conda-forge::openjdk=8.0.312"
container 'broadinstitute/gatk:4.4.0.0'
container 'docker.io/broadinstitute/gatk:4.4.0.0'

input:
tuple val(meta), path(input), path(input_index), path(bqsr_table), path(intervals)
Expand Down
2 changes: 1 addition & 1 deletion modules/nf-core/gatk4/baserecalibratorspark/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ process GATK4_BASERECALIBRATOR_SPARK {
label 'process_low'

conda "bioconda::gatk4=4.4.0.0 conda-forge::openjdk=8.0.312"
container 'broadinstitute/gatk:4.4.0.0'
container 'docker.io/broadinstitute/gatk:4.4.0.0'

input:
tuple val(meta), path(input), path(input_index), path(intervals)
Expand Down
2 changes: 1 addition & 1 deletion modules/nf-core/gatk4/cnnscorevariants/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ process GATK4_CNNSCOREVARIANTS {
label 'process_low'

//Conda is not supported at the moment: https://github.com/broadinstitute/gatk/issues/7811
container "broadinstitute/gatk:4.4.0.0" //Biocontainers is missing a package
container "docker.io/broadinstitute/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
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ process GATK4_DETERMINEGERMLINECONTIGPLOIDY {
label 'process_single'

//Conda is not supported at the moment: https://github.com/broadinstitute/gatk/issues/7811
container "broadinstitute/gatk:4.4.0.0" //Biocontainers is missing a package
container "docker.io/broadinstitute/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 "broadinstitute/gatk:4.4.0.0" //Biocontainers is missing a package
container "docker.io/broadinstitute/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/markduplicatesspark/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ process GATK4_MARKDUPLICATES_SPARK {
label 'process_high'

conda "bioconda::gatk4=4.3.0.0 conda-forge::openjdk=8.0.312"
container 'broadinstitute/gatk:4.4.0.0'
container 'docker.io/broadinstitute/gatk:4.4.0.0'

input:
tuple val(meta), path(bam)
Expand Down
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 "broadinstitute/gatk:4.4.0.0" //Biocontainers is missing a package
container "docker.io/broadinstitute/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/gnu/sort/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ process GNU_SORT {
conda "conda-forge::coreutils=9.1"
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://depot.galaxyproject.org/singularity/ubuntu:20.04' :
'ubuntu:20.04' }"
'docker.io/ubuntu:20.04' }"

input:
tuple val(meta), path(input)
Expand Down
2 changes: 1 addition & 1 deletion modules/nf-core/gunzip/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ process GUNZIP {
conda "conda-forge::sed=4.7"
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://depot.galaxyproject.org/singularity/ubuntu:20.04' :
'ubuntu:20.04' }"
'docker.io/ubuntu:20.04' }"

input:
tuple val(meta), path(archive)
Expand Down
2 changes: 1 addition & 1 deletion modules/nf-core/igv/js/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ process IGV_JS {
conda "conda-forge::sed=4.7"
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://depot.galaxyproject.org/singularity/ubuntu:20.04' :
'ubuntu:20.04' }"
'docker.io/ubuntu:20.04' }"

input:
tuple val(meta), path(alignment), path(index)
Expand Down
2 changes: 1 addition & 1 deletion modules/nf-core/ilastik/multicut/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ process ILASTIK_MULTICUT {
if (workflow.profile.tokenize(',').intersect(['conda', 'mamba']).size() >= 1) {
exit 1, "ILASTIK_MULTICUT module does not support Conda. Please use Docker / Singularity / Podman instead."
}
container "biocontainers/ilastik:1.4.0_cv1"
container "docker.io/biocontainers/ilastik:1.4.0_cv1"

input:
tuple val(meta), path(h5)
Expand Down
2 changes: 1 addition & 1 deletion modules/nf-core/ilastik/pixelclassification/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ process ILASTIK_PIXELCLASSIFICATION {
if (workflow.profile.tokenize(',').intersect(['conda', 'mamba']).size() >= 1) {
exit 1, "ILASTIK_PIXELCLASSIFICATION module does not support Conda. Please use Docker / Singularity / Podman instead."
}
container "biocontainers/ilastik:1.4.0_cv1"
container "docker.io/biocontainers/ilastik:1.4.0_cv1"

input:
tuple val(meta), path(input_img)
Expand Down
2 changes: 1 addition & 1 deletion modules/nf-core/mcquant/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ process MCQUANT {
label 'process_single'

// WARN: Version information not provided by tool on CLI. Please update version string below when bumping container versions.
container "labsyspharm/quantification:1.5.4"
container "docker.io/labsyspharm/quantification:1.5.4"

input:
tuple val(meta), path(image)
Expand Down
2 changes: 1 addition & 1 deletion modules/nf-core/md5sum/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ process MD5SUM {
conda "conda-forge::coreutils=9.1"
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://depot.galaxyproject.org/singularity/ubuntu:20.04' :
'ubuntu:20.04' }"
'docker.io/ubuntu:20.04' }"

input:
tuple val(meta), path(file)
Expand Down
2 changes: 1 addition & 1 deletion modules/nf-core/scimap/mcmicro/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ process SCIMAP_MCMICRO {
exit 1, "Scimap module does not support Conda. Please use Docker / Singularity / Podman instead."
}

container "labsyspharm/scimap:0.22.0"
container "docker.io/labsyspharm/scimap:0.22.0"

input:
tuple val(meta), path(cellbyfeature)
Expand Down
2 changes: 1 addition & 1 deletion modules/nf-core/sentieon/bwaindex/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ process SENTIEON_BWAINDEX {
exit 1, "Sentieon modules does not support Conda. Please use Docker / Singularity / Podman instead."
}

container 'nfcore/sentieon:202112.06'
container 'docker.io/nfcore/sentieon:202112.06'

input:
tuple val(meta), path(fasta)
Expand Down
2 changes: 1 addition & 1 deletion modules/nf-core/sentieon/bwamem/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ process SENTIEON_BWAMEM {
exit 1, "Sentieon modules does not support Conda. Please use Docker / Singularity / Podman instead."
}

container 'nfcore/sentieon:202112.06'
container 'docker.io/nfcore/sentieon:202112.06'

input:
tuple val(meta), path(reads)
Expand Down
2 changes: 1 addition & 1 deletion modules/nf-core/sentieon/dedup/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ process SENTIEON_DEDUP {
exit 1, "Sentieon modules does not support Conda. Please use Docker / Singularity / Podman instead."
}

container 'nfcore/sentieon:202112.06'
container 'docker.io/nfcore/sentieon:202112.06'

input:
tuple val(meta), path(bam), path(bai)
Expand Down
2 changes: 1 addition & 1 deletion modules/nf-core/sentieon/haplotyper/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ process SENTIEON_HAPLOTYPER {
exit 1, "Sentieon modules does not support Conda. Please use Docker / Singularity / Podman instead."
}

container 'nfcore/sentieon:202112.06'
container 'docker.io/nfcore/sentieon:202112.06'

input:
val(emit_mode)
Expand Down
2 changes: 1 addition & 1 deletion modules/nf-core/shasum/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ process SHASUM {
conda "conda-forge::coreutils=9.1"
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://depot.galaxyproject.org/singularity/ubuntu:20.04' :
'ubuntu:20.04' }"
'docker.io/ubuntu:20.04' }"

input:
tuple val(meta), path(file)
Expand Down
6 changes: 3 additions & 3 deletions modules/nf-core/universc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ process {

...
withName: CELLRANGER_MKGTF {
container = "nfcore/universc:1.2.5.1"
container = "docker.io/nfcore/universc:1.2.5.1"
}
withName: CELLRANGER_MKREF{
container = "nfcore/universc:1.2.5.1"
container = "docker.io/nfcore/universc:1.2.5.1"
}
...
}
Expand All @@ -66,7 +66,7 @@ and for singularity use the `--writeable` parameter.
These are set as default in universc/main.nf:

```
container "nfcore/universc:1.2.5.1"
container "docker.io/nfcore/universc:1.2.5.1"
if (workflow.containerEngine == 'docker'){
containerOptions = "--privileged"
}
Expand Down
2 changes: 1 addition & 1 deletion modules/nf-core/universc/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ process UNIVERSC {
if (workflow.profile.tokenize(',').intersect(['conda', 'mamba']).size() >= 1) {
exit 1, "UNIVERSC module does not support Conda. Please use Docker / Singularity / Podman instead."
}
container "nfcore/universc:1.2.5.1"
container "docker.io/nfcore/universc:1.2.5.1"
if (workflow.containerEngine == 'docker'){
containerOptions = "--privileged"
}
Expand Down
2 changes: 1 addition & 1 deletion modules/nf-core/untar/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ process UNTAR {
conda "conda-forge::sed=4.7 bioconda::grep=3.4 conda-forge::tar=1.34"
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://depot.galaxyproject.org/singularity/ubuntu:20.04' :
'ubuntu:20.04' }"
'docker.io/ubuntu:20.04' }"

input:
tuple val(meta), path(archive)
Expand Down
2 changes: 1 addition & 1 deletion modules/nf-core/untarfiles/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ process UNTARFILES {
conda "conda-forge::sed=4.7 bioconda::grep=3.4 conda-forge::tar=1.34"
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://depot.galaxyproject.org/singularity/ubuntu:20.04' :
'ubuntu:20.04' }"
'docker.io/ubuntu:20.04' }"

input:
tuple val(meta), path(archive)
Expand Down
Loading