Skip to content

Commit 6078f2d

Browse files
committed
Fix #798
1 parent 70d2ad5 commit 6078f2d

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

subworkflows/local/prepare_genome.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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)

0 commit comments

Comments
 (0)