Skip to content

Commit

Permalink
Merge pull request #105 from mvanniekerkHartwig/fix-markdups-output
Browse files Browse the repository at this point in the history
Fix "Markdups process marks aligner output as markdups output incorrectly"
  • Loading branch information
scwatts authored Oct 30, 2024
2 parents b4ca6b3 + 52064e8 commit 2fcec6a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
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

0 comments on commit 2fcec6a

Please sign in to comment.