Skip to content
Merged
Show file tree
Hide file tree
Changes from 17 commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
dfdc438
Pull in fix from https://github.com/nf-core/modules/pull/8577
pinin4fjords Jun 4, 2025
752bb76
Pull in stats fix from bam_dedup_umi
pinin4fjords Jun 4, 2025
2c6a0ae
Strip tags
pinin4fjords Jun 4, 2025
a98e0b6
Do a general modules update
pinin4fjords Jun 4, 2025
8bec774
Re-remove tags from test files
pinin4fjords Jun 4, 2025
2199a33
Update full test triggers
pinin4fjords Jun 4, 2025
b73cefc
Bump gunzip in snaps
pinin4fjords Jun 4, 2025
efa6fa1
Bump bbmap in snaps
pinin4fjords Jun 4, 2025
b3e4794
Update snaps
pinin4fjords Jun 4, 2025
829ae01
Fix prepare_genomes snap
pinin4fjords Jun 4, 2025
5102b94
Remove some umittools outputs from snaps that seem to differ between …
pinin4fjords Jun 4, 2025
314a739
Correct for new featurecounts summary ext
pinin4fjords Jun 4, 2025
b36560e
Revert "Correct for new featurecounts summary ext"
pinin4fjords Jun 4, 2025
3b2164a
Correct for new featurecounts summary ext
pinin4fjords Jun 4, 2025
eace2bd
Fix umi tests
pinin4fjords Jun 4, 2025
3b470b9
Local syntax fixes from https://github.com/nf-core/rnaseq/pull/1551
pinin4fjords Jun 4, 2025
bcbaeca
Exclude a umitools file from snapshots
pinin4fjords Jun 4, 2025
9b65fa9
Update CHANGELOG.md
pinin4fjords Jun 4, 2025
58ebcf2
Name GFFREAD outputs
pinin4fjords Jun 4, 2025
79f8169
Merge branch 'add_trimgalore_stats_fix' of https://github.com/nf-core…
pinin4fjords Jun 4, 2025
fb4377c
Update creds
pinin4fjords Jun 4, 2025
9047700
prettier
pinin4fjords Jun 4, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
119 changes: 59 additions & 60 deletions modules.json

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion modules/local/star_align_igenomes/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ process STAR_ALIGN_IGENOMES {
script:
def args = task.ext.args ?: ''
def prefix = task.ext.prefix ?: "${meta.id}"
def reads1 = [], reads2 = []
def reads1 = []
def reads2 = []
meta.single_end ? [reads].flatten().each{reads1 << it} : reads.eachWithIndex{ v, ix -> ( ix & 1 ? reads2 : reads1) << v }
def ignore_gtf = star_ignore_sjdbgtf ? '' : "--sjdbGTFfile $gtf"
def seq_platform = seq_platform ? "'PL:$seq_platform'" : ""
Expand Down
5 changes: 4 additions & 1 deletion modules/nf-core/bbmap/bbsplit/environment.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions modules/nf-core/bbmap/bbsplit/main.nf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions modules/nf-core/bbmap/bbsplit/meta.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 18 additions & 18 deletions modules/nf-core/bbmap/bbsplit/tests/main.nf.test.snap

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions modules/nf-core/bedtools/genomecov/environment.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion modules/nf-core/bedtools/genomecov/main.nf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions modules/nf-core/bedtools/genomecov/tests/main.nf.test

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions modules/nf-core/cat/fastq/environment.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

29 changes: 20 additions & 9 deletions modules/nf-core/cat/fastq/main.nf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

90 changes: 88 additions & 2 deletions modules/nf-core/cat/fastq/tests/main.nf.test

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading