Skip to content

Commit 434f0b7

Browse files
authored
Merge pull request #1434 from maxulysse/default_registry_no_exception
No exception for default registry
2 parents facaabd + 4316615 commit 434f0b7

File tree

12 files changed

+219
-33
lines changed

12 files changed

+219
-33
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ Special thanks to the following for their contributions to the release:
2121
- [PR #1424](https://github.com/nf-core/rnaseq/pull/1424) - Patch sortmerna to 4.3.7 for ARM compatibility
2222
- [PR #1425](https://github.com/nf-core/rnaseq/pull/1425) - Add profile for ARM compatibility
2323
- [PR #1432](https://github.com/nf-core/rnaseq/pull/1432) - Bump versions for 3.17.0 release
24+
- [PR #1434](https://github.com/nf-core/rnaseq/pull/1434) - Default registry is quay.io for all containers
2425

2526
## [[3.16.1](https://github.com/nf-core/rnaseq/releases/tag/3.16.1)] - 2024-10-16
2627

modules.json

+6-3
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@
2424
"cat/fastq": {
2525
"branch": "master",
2626
"git_sha": "a1abf90966a2a4016d3c3e41e228bfcbd4811ccc",
27-
"installed_by": ["fastq_qc_trim_filter_setstrandedness", "modules"]
27+
"installed_by": ["fastq_qc_trim_filter_setstrandedness", "modules"],
28+
"patch": "modules/nf-core/cat/fastq/cat-fastq.diff"
2829
},
2930
"custom/catadditionalfasta": {
3031
"branch": "master",
@@ -221,12 +222,14 @@
221222
"star/align": {
222223
"branch": "master",
223224
"git_sha": "a5ad53288c79fa52c5ae708c317e09ec2dd149ab",
224-
"installed_by": ["modules"]
225+
"installed_by": ["modules"],
226+
"patch": "modules/nf-core/star/align/star-align.diff"
225227
},
226228
"star/genomegenerate": {
227229
"branch": "master",
228230
"git_sha": "a5ad53288c79fa52c5ae708c317e09ec2dd149ab",
229-
"installed_by": ["modules"]
231+
"installed_by": ["modules"],
232+
"patch": "modules/nf-core/star/genomegenerate/star-genomegenerate.diff"
230233
},
231234
"stringtie/stringtie": {
232235
"branch": "master",

modules/nf-core/bedtools/genomecov/bedtools-genomecov.diff

+35
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

modules/nf-core/bedtools/genomecov/main.nf

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

modules/nf-core/cat/fastq/cat-fastq.diff

+35
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

modules/nf-core/cat/fastq/main.nf

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

modules/nf-core/sortmerna/main.nf

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

modules/nf-core/sortmerna/sortmerna.diff

+65-25
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

modules/nf-core/star/align/main.nf

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

modules/nf-core/star/align/star-align.diff

+38
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

modules/nf-core/star/genomegenerate/main.nf

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)