File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3030- [ #138 ] ( https://github.com/nf-core/rnavar/pull/138 ) - Proper usage of GVCF
3131- [ #142 ] ( https://github.com/nf-core/rnavar/pull/142 ) - Fix dbsnp channels
3232- [ #143 ] ( https://github.com/nf-core/rnavar/pull/143 ) - Use ` DROP_MISSING_CONTIGS ` by default in ` GATK4_BEDTOINTERVALLIST `
33- - [ #145 ] ( https://github.com/nf-core/rnavar/pull/145 ) - Updated ch_gtf channel emitted by main.nf
33+ - [ #145 ] ( https://github.com/nf-core/rnavar/pull/145 ) - Updated ch_gtf and ch_fasta_fai channels emitted by main.nf
3434
3535### Dependencies
3636
Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ workflow NFCORE_RNAVAR {
114114 ch_gtf = PREPARE_GENOME . out. gtf
115115 ch_dict = params. dict ? Channel . fromPath(params. dict). map{ it -> [ [id :' dict' ], it ] }. collect()
116116 : PREPARE_GENOME . out. dict
117- ch_fasta_fai = params. fasta_fai ? Channel . fromPath(params. fasta_fai). map{ it -> [ [ id : ' fai ' ], it ] } . collect()
117+ ch_fasta_fai = params. fasta_fai ? Channel . fromPath(params. fasta_fai)
118118 : PREPARE_GENOME . out. fasta_fai
119119 ch_exon_bed = params. exon_bed ? Channel . fromPath(params. exon_bed). map{ it -> [ [id :' exon_bed' ], it ] }. collect()
120120 : PREPARE_GENOME . out. exon_bed
You can’t perform that action at this time.
0 commit comments