Skip to content

Commit

Permalink
Merge pull request #1466 from nf-core/factor_out_umi
Browse files Browse the repository at this point in the history
Factor out umi handling
  • Loading branch information
pinin4fjords authored Dec 12, 2024
2 parents 631f0e3 + 8377720 commit 4749877
Show file tree
Hide file tree
Showing 10 changed files with 632 additions and 147 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ Special thanks to the following for their contributions to the release:
- [PR #1461](https://github.com/nf-core/rnaseq/pull/1461) - Add FASTQ linting during preprocessing
- [PR #1463](https://github.com/nf-core/rnaseq/pull/1463) - Move channel operations outside of the onComplete() block
- [PR #1467](https://github.com/nf-core/rnaseq/pull/1467) - Add test suite for UMI handling functionality
- [PR #1466](https://github.com/nf-core/rnaseq/pull/1466) - Factor out UMI handling

### Software dependencies

Expand Down
13 changes: 9 additions & 4 deletions modules.json
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@
"samtools/sort": {
"branch": "master",
"git_sha": "b7800db9b069ed505db3f9d91b8c72faea9be17b",
"installed_by": ["bam_sort_stats_samtools"]
"installed_by": ["bam_dedup_umi", "bam_sort_stats_samtools"]
},
"samtools/stats": {
"branch": "master",
Expand Down Expand Up @@ -290,7 +290,7 @@
"umitools/prepareforrsem": {
"branch": "master",
"git_sha": "666652151335353eef2fcd58880bcef5bc2928e1",
"installed_by": ["modules"]
"installed_by": ["bam_dedup_umi", "modules"]
},
"untar": {
"branch": "master",
Expand All @@ -304,11 +304,16 @@
"bam_dedup_stats_samtools_umicollapse": {
"branch": "master",
"git_sha": "0b27602842d3d79fd0e8db79f4afa764967fc3d1",
"installed_by": ["subworkflows"]
"installed_by": ["bam_dedup_umi", "subworkflows"]
},
"bam_dedup_stats_samtools_umitools": {
"branch": "master",
"git_sha": "0b27602842d3d79fd0e8db79f4afa764967fc3d1",
"installed_by": ["bam_dedup_umi", "subworkflows"]
},
"bam_dedup_umi": {
"branch": "master",
"git_sha": "b5828f47c17c41ce3a4c70b863c99207e3f6d37c",
"installed_by": ["subworkflows"]
},
"bam_markduplicates_picard": {
Expand All @@ -324,7 +329,7 @@
"bam_sort_stats_samtools": {
"branch": "master",
"git_sha": "763d4b5c05ffda3ac1ac969dc67f7458cfb2eb1d",
"installed_by": ["fastq_align_hisat2"]
"installed_by": ["bam_dedup_umi", "fastq_align_hisat2"]
},
"bam_stats_samtools": {
"branch": "master",
Expand Down
132 changes: 132 additions & 0 deletions subworkflows/nf-core/bam_dedup_umi/main.nf

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

181 changes: 181 additions & 0 deletions subworkflows/nf-core/bam_dedup_umi/meta.yml

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

Loading

0 comments on commit 4749877

Please sign in to comment.