Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix "Markdups process marks aligner output as markdups output incorrectly" #105

Merged
merged 4 commits into from
Oct 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)

## [dev]

- [105](https://github.com/nf-core/oncoanalyser/pull/105) - Adjust MarkDups outputs to improve efficiency with k8s
- [98](https://github.com/nf-core/oncoanalyser/pull/98) - Fix typos in error messages for process and run mode check
- [96](https://github.com/nf-core/oncoanalyser/pull/96) - Added missing type field to an entry in the nextflow_schema.json
- [95](https://github.com/nf-core/oncoanalyser/pull/95) - Post-release bump
Expand Down
4 changes: 2 additions & 2 deletions modules/local/markdups/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ process MARKDUPS {
val has_umis

output:
tuple val(meta), path('*bam'), path('*bai'), emit: bam
path 'versions.yml' , emit: versions
tuple val(meta), path('*.markdups.bam'), path('*.markdups.bam.bai'), emit: bam
path 'versions.yml' , emit: versions
path '*.tsv'

when:
Expand Down
Loading