Merge branch 'uf_wrong_CW-7384' into 'dev'

Use -ub for cDNA [CW-7384]

Closes CW-7384

See merge request epi2melabs/workflows/wf-transcriptomes!341
This commit is contained in:
Neil Horner 2026-07-08 11:41:38 +00:00
commit d3d2a15efd
2 changed files with 6 additions and 1 deletions

View File

@ -5,6 +5,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
### Fixed
- Incorrect strand assignment when mapping cDNA reads is fixed by using minimap2 `-ub` instead of `-uf`.
## [v2.0.1]
This patch release of `wf-transcriptomes` handles an additional quantification failure edge case that was not observed before release, fixes issues encountered by users during joint discovery when providing many samples, and makes some improvements to the volcano plot in the output report.

View File

@ -256,7 +256,7 @@ workflow {
def ingress_args = [
"minimap2_memory": ["31GB", "62GB"],
"minimap2_opts": params.direct_rna ? "-ax splice -uf -k14" : "-ax splice -uf",
"minimap2_opts": params.direct_rna ? "-ax splice -uf -k14" : "-ax splice -ub",
"alignment_threads": 12,
"output_xam_fmt": "bam",
"sample": params.sample,