Skip to content

Commit ca7467a

Browse files
authored
Merge pull request #1149 from drpatelh/updates
Patch modules to fix #1103
2 parents c261e9c + b6a2d52 commit ca7467a

File tree

10 files changed

+129
-17
lines changed

10 files changed

+129
-17
lines changed

CHANGELOG.md

+11-4
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
### Credits
99

10-
### Enhancements & fixes
10+
Special thanks to the following for their contributions to the release:
1111

12-
- [PR #1135](https://github.com/nf-core/rnaseq/pull/1135) - Update [action-tower-launch](https://github.com/marketplace/actions/action-tower-launch) to v2 which supports more variable handling.
12+
- [Adam Talbot](https://github.com/adamrtalbot)
13+
- [Jonathan Manning](https://github.com/pinin4fjords)
14+
- [Mahesh Binzer-Panchal](https://github.com/mahesh-panchal)
15+
- [Matthias Zepper](https://github.com/MatthiasZepper)
16+
- [Maxime Garcia](https://github.com/maxulysse)
17+
- [Phil Ewels](https://github.com/ewels)
18+
- [Vlad Savelyev](https://github.com/vladsavelyev)
1319

14-
### Software dependencies
20+
### Enhancements & fixes
1521

16-
### Modules / Subworkflows
22+
- [PR #1135](https://github.com/nf-core/rnaseq/pull/1135) - Update [action-tower-launch](https://github.com/marketplace/actions/action-tower-launch) to v2 which supports more variable handling
23+
- [PR #1149](https://github.com/nf-core/rnaseq/pull/1149) - Fix and patch version commands for Fastp, FastQC and UMI-tools modules ([#1103](https://github.com/nf-core/rnaseq/issues/1103))
1724

1825
## [[3.13.2](https://github.com/nf-core/rnaseq/releases/tag/3.13.2)] - 2023-11-21
1926

modules.json

+8-4
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,14 @@
2828
"fastp": {
2929
"branch": "master",
3030
"git_sha": "d497a4868ace3302016ea8ed4b395072d5e833cd",
31-
"installed_by": ["fastq_fastqc_umitools_fastp", "modules"]
31+
"installed_by": ["fastq_fastqc_umitools_fastp", "modules"],
32+
"patch": "modules/nf-core/fastp/fastp.diff"
3233
},
3334
"fastqc": {
3435
"branch": "master",
3536
"git_sha": "102cc9b709a6da9f7cee2373563ab1464fca9c0a",
36-
"installed_by": ["fastq_fastqc_umitools_trimgalore", "fastq_fastqc_umitools_fastp"]
37+
"installed_by": ["fastq_fastqc_umitools_trimgalore", "fastq_fastqc_umitools_fastp"],
38+
"patch": "modules/nf-core/fastqc/fastqc.diff"
3739
},
3840
"fq/subsample": {
3941
"branch": "master",
@@ -222,12 +224,14 @@
222224
"umitools/dedup": {
223225
"branch": "master",
224226
"git_sha": "7297204bf49273300a3dbfa4b7a4027c8683f1bd",
225-
"installed_by": ["bam_dedup_stats_samtools_umitools"]
227+
"installed_by": ["bam_dedup_stats_samtools_umitools"],
228+
"patch": "modules/nf-core/umitools/dedup/umitools-dedup.diff"
226229
},
227230
"umitools/extract": {
228231
"branch": "master",
229232
"git_sha": "911696ea0b62df80e900ef244d7867d177971f73",
230-
"installed_by": ["fastq_fastqc_umitools_fastp", "fastq_fastqc_umitools_trimgalore"]
233+
"installed_by": ["fastq_fastqc_umitools_fastp", "fastq_fastqc_umitools_trimgalore"],
234+
"patch": "modules/nf-core/umitools/extract/umitools-extract.diff"
231235
},
232236
"untar": {
233237
"branch": "master",

modules/nf-core/fastp/fastp.diff

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

modules/nf-core/fastp/main.nf

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

modules/nf-core/fastqc/fastqc.diff

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

modules/nf-core/fastqc/main.nf

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

modules/nf-core/umitools/dedup/main.nf

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

modules/nf-core/umitools/dedup/umitools-dedup.diff

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

modules/nf-core/umitools/extract/main.nf

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

modules/nf-core/umitools/extract/umitools-extract.diff

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

0 commit comments

Comments
 (0)