Skip to content

Commit 26a8b38

Browse files
authored
Merge branch 'dev' into interface_to_kmer
2 parents a2ae1e5 + ca7467a commit 26a8b38

File tree

10 files changed

+131
-19
lines changed

10 files changed

+131
-19
lines changed

CHANGELOG.md

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,15 @@ 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.
13-
- [PR #1141](https://github.com/nf-core/rnaseq/pull/1141) - Important! Template update for nf-core/tools v2.11
14-
- [PR #1144](https://github.com/nf-core/rnaseq/pull/1144) - Interface to kmer size for pseudoaligners
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)
1519

1620
### Parameters
1721

@@ -23,9 +27,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2327
> **NB:** Parameter has been **added** if just the new parameter information is present.
2428
> **NB:** Parameter has been **removed** if new parameter information isn't present.
2529
26-
### Software dependencies
30+
### Enhancements & fixes
2731

28-
### Modules / Subworkflows
32+
- [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
33+
- [PR #1141](https://github.com/nf-core/rnaseq/pull/1141) - Important! Template update for nf-core/tools v2.11
34+
- [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))
35+
- [PR #1144](https://github.com/nf-core/rnaseq/pull/1144) - Interface to kmer size for pseudoaligners
2936

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

modules.json

Lines changed: 8 additions & 4 deletions
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

Lines changed: 32 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

modules/nf-core/fastp/main.nf

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

modules/nf-core/fastqc/fastqc.diff

Lines changed: 23 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

modules/nf-core/fastqc/main.nf

Lines changed: 2 additions & 2 deletions
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 23 additions & 0 deletions
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 23 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)