Skip to content

Commit

Permalink
Merge pull request #392 from genomic-medicine-sweden/markdupprefix
Browse files Browse the repository at this point in the history
Make cram prefix same as the default markduplicates prefix
  • Loading branch information
ramprasadn authored Jul 31, 2023
2 parents f4d5d57 + 7817473 commit a2ce37e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### `Fixed`

- Invalid GATK4 container which caused incorrect singularity downloads with nf-core download [nf-core/modules #3668](https://github.com/nf-core/modules/issues/3668)
- Make the default cram prefix same as markduplicates prefix [#392](https://github.com/nf-core/raredisease/pull/392)

## v1.1.1 - Abu (Patch) [2023-07-26]

Expand Down
5 changes: 3 additions & 2 deletions conf/modules/align.config
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,9 @@ process{
}

withName: '.*ALIGN:SAMTOOLS_VIEW' {
ext.args = { '--output-fmt cram --write-index' }
ext.when = params.save_mapped_as_cram
ext.args = { '--output-fmt cram --write-index' }
ext.prefix = { "${meta.id}_sorted_md" }
ext.when = params.save_mapped_as_cram
publishDir = [
path: { "${params.outdir}/alignment" },
mode: params.publish_dir_mode,
Expand Down

0 comments on commit a2ce37e

Please sign in to comment.