diff --git a/CHANGELOG.md b/CHANGELOG.md index d2797457d..a4adf8bdb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - [PR #1386](https://github.com/nf-core/rnaseq/pull/1386) - Bump pipeline version to 3.16.0dev - [PR #1388](https://github.com/nf-core/rnaseq/pull/1388) - Adding Kraken2/Bracken on unaligned reads as an additional quality control step to detect sample contamination - [PR #1389](https://github.com/nf-core/rnaseq/pull/1389) - Update animated subway map +- [PR #1393](https://github.com/nf-core/rnaseq/pull/1393) - Use quay.io for bedtools/genomecov to solve issue with nf-core download ### Parameters diff --git a/modules.json b/modules.json index 4c9ba76f1..c351786e2 100644 --- a/modules.json +++ b/modules.json @@ -13,7 +13,8 @@ "bedtools/genomecov": { "branch": "master", "git_sha": "06c8865e36741e05ad32ef70ab3fac127486af48", - "installed_by": ["modules"] + "installed_by": ["modules"], + "patch": "modules/nf-core/bedtools/genomecov/bedtools-genomecov.diff" }, "bracken/bracken": { "branch": "master", diff --git a/modules/nf-core/bedtools/genomecov/bedtools-genomecov.diff b/modules/nf-core/bedtools/genomecov/bedtools-genomecov.diff new file mode 100644 index 000000000..53d7e34df --- /dev/null +++ b/modules/nf-core/bedtools/genomecov/bedtools-genomecov.diff @@ -0,0 +1,37 @@ +Changes in module 'nf-core/bedtools/genomecov' +Changes in 'bedtools/genomecov/main.nf': +--- modules/nf-core/bedtools/genomecov/main.nf ++++ modules/nf-core/bedtools/genomecov/main.nf +@@ -4,8 +4,8 @@ + + conda "${moduleDir}/environment.yml" + container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ? +- 'oras://community.wave.seqera.io/library/bedtools_coreutils:ba273c06a3909a15': +- 'community.wave.seqera.io/library/bedtools_coreutils:a623c13f66d5262b' }" ++ 'https://community-cr-prod.seqera.io/docker/registry/v2/blobs/sha256/63/6397750e9730a3fbcc5b4c43f14bd141c64c723fd7dad80e47921a68a7c3cd21/data': ++ 'nf-core/bedtools_coreutils:a623c13f66d5262b' }" + + input: + tuple val(meta), path(intervals), val(scale) + +'modules/nf-core/bedtools/genomecov/meta.yml' is unchanged +'modules/nf-core/bedtools/genomecov/environment.yml' is unchanged +'modules/nf-core/bedtools/genomecov/tests/main.nf.test.snap' is unchanged +'modules/nf-core/bedtools/genomecov/tests/nextflow.config' is unchanged +Changes in 'bedtools/genomecov/tests/main.nf.test': +--- modules/nf-core/bedtools/genomecov/tests/main.nf.test ++++ modules/nf-core/bedtools/genomecov/tests/main.nf.test +@@ -3,11 +3,6 @@ + script "../main.nf" + process "BEDTOOLS_GENOMECOV" + config "./nextflow.config" +- +- tag "modules" +- tag "modules_nfcore" +- tag "bedtools" +- tag "bedtools/genomecov" + + test("sarscov2 - no scale") { + when { + +************************************************************ diff --git a/modules/nf-core/bedtools/genomecov/main.nf b/modules/nf-core/bedtools/genomecov/main.nf index 8403c5303..91869ec23 100644 --- a/modules/nf-core/bedtools/genomecov/main.nf +++ b/modules/nf-core/bedtools/genomecov/main.nf @@ -4,8 +4,8 @@ process BEDTOOLS_GENOMECOV { conda "${moduleDir}/environment.yml" container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ? - 'oras://community.wave.seqera.io/library/bedtools_coreutils:ba273c06a3909a15': - 'community.wave.seqera.io/library/bedtools_coreutils:a623c13f66d5262b' }" + 'https://community-cr-prod.seqera.io/docker/registry/v2/blobs/sha256/63/6397750e9730a3fbcc5b4c43f14bd141c64c723fd7dad80e47921a68a7c3cd21/data': + 'nf-core/bedtools_coreutils:a623c13f66d5262b' }" input: tuple val(meta), path(intervals), val(scale)