Skip to content

Commit

Permalink
Merge pull request #105 from nf-core/bounlu-patch-3
Browse files Browse the repository at this point in the history
fix ch_dict
  • Loading branch information
maxulysse authored Oct 26, 2023
2 parents a7cfb14 + c2ba31c commit 2a4852e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workflows/rnavar.nf
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ workflow RNAVAR {
ch_genome_bed = params.exon_bed ? Channel.fromPath(params.exon_bed).map{ it -> [ [id:'exon_bed'], it ] }.collect()
: PREPARE_GENOME.out.exon_bed
ch_dict = params.dict ? Channel.fromPath(params.dict).map{ it -> [ [id:'dict'], it ] }.collect()
: ch_dict
: PREPARE_GENOME.out.dict
ch_fasta_fai = params.fasta_fai ? Channel.fromPath(params.fasta_fai).collect()
: PREPARE_GENOME.out.fasta_fai

Expand Down

0 comments on commit 2a4852e

Please sign in to comment.