File tree Expand file tree Collapse file tree 4 files changed +17
-4
lines changed Expand file tree Collapse file tree 4 files changed +17
-4
lines changed Original file line number Diff line number Diff line change 33The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ )
44and 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
Original file line number Diff line number Diff 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 {
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ if (!params.skip_bbsplit && !params.bbsplit_index && params.bbsplit_fasta_list)
4545def prepareToolIndices = []
4646if (! params. skip_bbsplit) { prepareToolIndices << ' bbsplit' }
4747if (! 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
5151def rseqc_modules = params. rseqc_modules ? params. rseqc_modules. split(' ,' ). collect{ it. trim(). toLowerCase() } : []
You can’t perform that action at this time.
0 commit comments