File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99
1010- [[ #764 ] ( https://github.com/nf-core/rnaseq/issues/764 )] - Test fails when using GCP due to missing tools in the basic biocontainer
1111- [[ #791 ] ( https://github.com/nf-core/rnaseq/issues/791 )] - Add outputs for umitools dedup summary stats
12+ - [[ #798 ] ( https://github.com/nf-core/rnaseq/issues/798 )] - Decompress transcript fasta error
1213- Updated pipeline template to [ nf-core/tools 2.3.2] ( https://github.com/nf-core/tools/releases/tag/2.3.2 )
1314
1415### Parameters
Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ workflow PREPARE_GENOME {
106106 //
107107 if (params. transcript_fasta) {
108108 if (params. transcript_fasta. endsWith(' .gz' )) {
109- ch_transcript_fasta = GUNZIP_TRANSCRIPT_FASTA ( [:], params. transcript_fasta ). gunzip. map { it[1 ] }
109+ ch_transcript_fasta = GUNZIP_TRANSCRIPT_FASTA ( [ [ :], params. transcript_fasta ] ). gunzip. map { it[1 ] }
110110 ch_versions = ch_versions. mix(GUNZIP_TRANSCRIPT_FASTA . out. versions)
111111 } else {
112112 ch_transcript_fasta = file(params. transcript_fasta)
You can’t perform that action at this time.
0 commit comments