Skip to content

Commit f06f298

Browse files
Apply suggestions from code review
Co-authored-by: Harshil Patel <[email protected]>
1 parent fbb50ce commit f06f298

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
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-
## v3.14.0 - 2024-01-05
6+
## v3.14.0 - 2024-01-08
77

88
### Credits
99

conf/modules.config

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,6 @@ if (!params.skip_alignment) {
377377
path: { ( ['star_salmon','hisat2'].contains(params.aligner) &&
378378
( params.save_align_intermeds || ( !params.with_umi && params.skip_markduplicates ) )
379379
) || params.save_align_intermeds || params.skip_markduplicates ? "${params.outdir}/${params.aligner}" : params.outdir },
380-
path: { "${params.outdir}/${params.aligner}" },
381380
mode: params.publish_dir_mode,
382381
pattern: "*.{bai,csi}",
383382
saveAs: { ( ['star_salmon','hisat2'].contains(params.aligner) &&
@@ -662,7 +661,7 @@ if (!params.skip_alignment && params.aligner == 'star_salmon') {
662661
withName: 'NFCORE_RNASEQ:RNASEQ:BAM_SORT_STATS_SAMTOOLS:BAM_STATS_SAMTOOLS:.*' {
663662
ext.prefix = { "${meta.id}.transcriptome.sorted.bam" }
664663
publishDir = [
665-
path: { params.save_align_intermeds || params.save_umi_intermeds ? "${params.outdir}/${params.aligner}" : params.outdir },
664+
path: { params.save_align_intermeds || params.save_umi_intermeds ? "${params.outdir}/${params.aligner}/samtools_stats" : params.outdir },
666665
mode: params.publish_dir_mode,
667666
pattern: '*.{stats,flagstat,idxstats}',
668667
saveAs: { params.save_align_intermeds || params.save_umi_intermeds ? it : null }

workflows/rnaseq.nf

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,9 @@ workflow RNASEQ {
364364
.set { ch_strand_fastq }
365365

366366
// Return empty channel if ch_strand_fastq.auto_strand is empty so salmon index isn't created
367-
PREPARE_GENOME.out.fasta
367+
PREPARE_GENOME
368+
.out
369+
.fasta
368370
.combine(ch_strand_fastq.auto_strand)
369371
.map { it.first() }
370372
.first()

0 commit comments

Comments
 (0)