Skip to content

Commit 22ff499

Browse files
authored
Merge pull request #1039 from drpatelh/updates
Bump pipeline version to 3.12.0
2 parents ef8022e + 910a7fe commit 22ff499

File tree

4 files changed

+17
-4
lines changed

4 files changed

+17
-4
lines changed

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,20 @@
33
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
44
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
55

6-
## [Unpublished Version / DEV]
6+
## [[3.12.0](https://github.com/nf-core/rnaseq/releases/tag/3.12.0)] - 2023-06-02
7+
8+
### Credits
9+
10+
Special thanks to the following for their contributions to the release:
11+
12+
- [Adam Talbot](https://github.com/adamrtalbot)
13+
- [Esha Joshi](https://github.com/ejseqera)
14+
- [Ghepardo](https://github.com/Ghepardo)
15+
- [Matthias Zepper](https://github.com/MatthiasZepper)
16+
- [Maxime Garcia](https://github.com/maxulysse)
17+
- [Rob Syme](https://github.com/robsyme)
18+
19+
Thank you to everyone else that has contributed by reporting bugs, enhancements or in any other way, shape or form.
720

821
### Enhancements & fixes
922

lib/WorkflowRnaseq.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ class WorkflowRnaseq {
6868
skipAlignmentWarn(log)
6969
}
7070

71-
if (!params.skip_pseudo_alignment) {
71+
if (!params.skip_pseudo_alignment && params.pseudo_aligner) {
7272
if (!valid_params['pseudoaligners'].contains(params.pseudo_aligner)) {
7373
Nextflow.error("Invalid option: '${params.pseudo_aligner}'. Valid options for '--pseudo_aligner': ${valid_params['pseudoaligners'].join(', ')}.")
7474
} else {

nextflow.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ manifest {
302302
description = """RNA sequencing analysis pipeline for gene/isoform quantification and extensive quality control."""
303303
mainScript = 'main.nf'
304304
nextflowVersion = '!>=22.10.1'
305-
version = '3.12.0dev'
305+
version = '3.12.0'
306306
doi = 'https://doi.org/10.5281/zenodo.1400710'
307307
}
308308

workflows/rnaseq.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ if (!params.skip_bbsplit && !params.bbsplit_index && params.bbsplit_fasta_list)
4545
def prepareToolIndices = []
4646
if (!params.skip_bbsplit) { prepareToolIndices << 'bbsplit' }
4747
if (!params.skip_alignment) { prepareToolIndices << params.aligner }
48-
if (!params.skip_pseudo_alignment) { prepareToolIndices << params.pseudo_aligner }
48+
if (!params.skip_pseudo_alignment && params.pseudo_aligner) { prepareToolIndices << params.pseudo_aligner }
4949

5050
// Get RSeqC modules to run
5151
def rseqc_modules = params.rseqc_modules ? params.rseqc_modules.split(',').collect{ it.trim().toLowerCase() } : []

0 commit comments

Comments
 (0)