File tree 3 files changed +9
-3
lines changed
modules/local/star_align_igenomes
3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 3
3
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ )
4
4
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
5
5
6
+ ## [[ 3.13.1] ( https://github.com/nf-core/rnaseq/releases/tag/3.13.1 )] - 2023-11-17
7
+
8
+ ### Enhancements and fixes
9
+
10
+ - [[ PR #1121 ] ( https://github.com/nf-core/rnaseq/pull/1121 ) - Changes for 3.13.1 patch release incl. igenomes star fix
11
+
6
12
## [[ 3.13.0] ( https://github.com/nf-core/rnaseq/releases/tag/3.13.0 )] - 2023-11-17
7
13
8
14
### Credits
Original file line number Diff line number Diff line change @@ -9,8 +9,8 @@ process STAR_ALIGN_IGENOMES {
9
9
10
10
input:
11
11
tuple val(meta), path(reads)
12
- path index
13
- path gtf
12
+ tuple val(meta2), path( index)
13
+ tuple val(meta3), path( gtf)
14
14
val star_ignore_sjdbgtf
15
15
val seq_platform
16
16
val seq_center
Original file line number Diff line number Diff line change @@ -317,7 +317,7 @@ manifest {
317
317
description = """ RNA sequencing analysis pipeline for gene/isoform quantification and extensive quality control."""
318
318
mainScript = ' main.nf'
319
319
nextflowVersion = ' !>=23.04.0'
320
- version = ' 3.13.0 '
320
+ version = ' 3.13.1 '
321
321
doi = ' https://doi.org/10.5281/zenodo.1400710'
322
322
}
323
323
You can’t perform that action at this time.
0 commit comments