Use -ub for cDNA [CW-7384]
This commit is contained in:
parent
3040c2796c
commit
8f863575c0
@ -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.
|
||||
|
||||
2
main.nf
2
main.nf
@ -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,
|
||||
|
||||
Loading…
Reference in New Issue
Block a user