File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
30
30
- [ #138 ] ( https://github.com/nf-core/rnavar/pull/138 ) - Proper usage of GVCF
31
31
- [ #142 ] ( https://github.com/nf-core/rnavar/pull/142 ) - Fix dbsnp channels
32
32
- [ #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 and ch_fasta_fai channels emitted by main.nf
33
34
34
35
### Dependencies
35
36
Original file line number Diff line number Diff line change @@ -111,14 +111,13 @@ workflow NFCORE_RNAVAR {
111
111
112
112
ch_fasta = PREPARE_GENOME . out. fasta
113
113
ch_star_index = PREPARE_GENOME . out. star_index
114
+ ch_gtf = PREPARE_GENOME . out. gtf
114
115
ch_dict = params. dict ? Channel . fromPath(params. dict). map{ it -> [ [id :' dict' ], it ] }. collect()
115
116
: PREPARE_GENOME . out. dict
116
- 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)
117
118
: PREPARE_GENOME . out. fasta_fai
118
119
ch_exon_bed = params. exon_bed ? Channel . fromPath(params. exon_bed). map{ it -> [ [id :' exon_bed' ], it ] }. collect()
119
120
: PREPARE_GENOME . out. exon_bed
120
- ch_gtf = params. gtf ? Channel . fromPath(params. gtf). map{ it -> [ [id :' gtf' ], it ] }. collect()
121
- : PREPARE_GENOME . out. gtf
122
121
ch_dbsnp_tbi = params. dbsnp ? params. dbsnp_tbi ? Channel . fromPath(params. dbsnp_tbi). collect()
123
122
: PREPARE_GENOME . out. dbsnp_tbi : Channel . value([])
124
123
ch_known_indels_tbi = params. known_indels ? params. known_indels_tbi ? Channel . fromPath(params. known_indels_tbi). collect()
You can’t perform that action at this time.
0 commit comments