Skip to content

Commit 9bc5d85

Browse files
authored
Merge branch 'dev' into update_animate_map
2 parents 577c3ab + fadc4ea commit 9bc5d85

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

CHANGELOG.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
### Enhancements & fixes
99

10-
- [PR #1388](https://github.com/nf-core/rnaseq/pull/1351) - Adding Kraken2/Bracken on unaligned reads as an additional quality control step to detect sample contamination
11-
- [PR #1186](https://github.com/nf-core/rnaseq/pull/1186) - Bump pipeline version to 3.16.0dev
10+
- [PR #1376](https://github.com/nf-core/rnaseq/pull/1376) - Fix invalid named parameter syntax
11+
- [PR #1386](https://github.com/nf-core/rnaseq/pull/1386) - Bump pipeline version to 3.16.0dev
12+
- [PR #1388](https://github.com/nf-core/rnaseq/pull/1388) - Adding Kraken2/Bracken on unaligned reads as an additional quality control step to detect sample contamination
1213
- [PR #1389](https://github.com/nf-core/rnaseq/pull/1389) - Update animated subway map
1314

1415
### Parameters

workflows/rnaseq/main.nf

+1-1
Original file line numberDiff line numberDiff line change
@@ -597,7 +597,7 @@ workflow RNASEQ {
597597
ch_strand_comparison = BAM_RSEQC.out.inferexperiment_txt
598598
.map {
599599
meta, strand_log ->
600-
def rseqc_inferred_strand = getInferexperimentStrandedness(strand_log, stranded_threshold = params.stranded_threshold, unstranded_threshold = params.unstranded_threshold)
600+
def rseqc_inferred_strand = getInferexperimentStrandedness(strand_log, params.stranded_threshold, params.unstranded_threshold)
601601
rseqc_strandedness = rseqc_inferred_strand.inferred_strandedness
602602

603603
def status = 'fail'

0 commit comments

Comments
 (0)