Skip to content

Commit 1323533

Browse files
authored
Merge pull request #1560 from nf-core/add_trimgalore_stats_fix
General modules update, include updating subworkflows for stats fixes
2 parents 1675473 + 9047700 commit 1323533

File tree

135 files changed

+2408
-2259
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

135 files changed

+2408
-2259
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
### Credits
99

10+
Special thanks to the following for their contributions to the release:
11+
12+
- [Alena Nikolaeva](https://github.com/AlenaNik)
13+
- [Anabella Trigila](https://github.com/atrigila)
14+
- [Angel Pizarro](https://github.com/delagoya)
15+
- [Ben Sherman](https://github.com/bentsherman)
16+
- [Dave Carlson](https://github.com/davidecarlson)
17+
- [Gabriel Lichtenstein](https://github.com/glichtenstein)
18+
- [Lorenzo Fontana](https://github.com/fntlnz)
19+
- [Matthias Hörtenhuber](https://github.com/mashehu)
20+
- [Milos Micik](https://github.com/milos7250)
21+
- [Maxime Garcia](https://github.com/maxulysse)
22+
1023
### Enhancements & fixes
1124

1225
- [PR #1480](https://github.com/nf-core/rnaseq/pull/1480) - Bump version after release 3.18.0
@@ -23,6 +36,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2336
- [PR #1553](https://github.com/nf-core/rnaseq/pull/1553) - Make jobs automatically resubmit for exit code 175
2437
- [PR #1556](https://github.com/nf-core/rnaseq/pull/1556) - Update index docs to remove references to 'indexing only mode'
2538
- [PR #1558](https://github.com/nf-core/rnaseq/pull/1558) - Remove patches and bump modules for ARM compat
39+
- [PR #1560](https://github.com/nf-core/rnaseq/pull/1560) - General modules update, include updating subworkflows for stats fixes
2640

2741
# 3.18.0 - 2024-12-19
2842

modules.json

Lines changed: 59 additions & 60 deletions
Large diffs are not rendered by default.

modules/local/star_align_igenomes/main.nf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ process STAR_ALIGN_IGENOMES {
3636
script:
3737
def args = task.ext.args ?: ''
3838
def prefix = task.ext.prefix ?: "${meta.id}"
39-
def reads1 = [], reads2 = []
39+
def reads1 = []
40+
def reads2 = []
4041
meta.single_end ? [reads].flatten().each{reads1 << it} : reads.eachWithIndex{ v, ix -> ( ix & 1 ? reads2 : reads1) << v }
4142
def ignore_gtf = star_ignore_sjdbgtf ? '' : "--sjdbGTFfile $gtf"
4243
def seq_platform = seq_platform ? "'PL:$seq_platform'" : ""

modules/nf-core/bbmap/bbsplit/environment.yml

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

modules/nf-core/bbmap/bbsplit/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/bbmap/bbsplit/meta.yml

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/bbmap/bbsplit/tests/main.nf.test.snap

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

modules/nf-core/bedtools/genomecov/environment.yml

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

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

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

Lines changed: 1 addition & 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)