Skip to content

Commit

Permalink
Update raredisease.nf
Browse files Browse the repository at this point in the history
  • Loading branch information
ramprasadn authored Aug 27, 2024
1 parent 21becd6 commit ca688e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions workflows/raredisease.nf
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ workflow RAREDISEASE {
ch_genome_fasta = Channel.fromPath(params.fasta).map { it -> [[id:it[0].simpleName], it] }.collect()
ch_genome_fai = params.fai ? Channel.fromPath(params.fai).map {it -> [[id:it[0].simpleName], it]}.collect()
: Channel.empty()
ch_genome_dict_unprocessed = params.sequence_dictionary ? Channel.fromPath(params.sequence_dictionary).map {it -> [[id:it[0].simpleName], it]}.collect()
ch_genome_dictionary = params.sequence_dictionary ? Channel.fromPath(params.sequence_dictionary).map {it -> [[id:it[0].simpleName], it]}.collect()
: Channel.empty()
ch_gnomad_af_tab = params.gnomad_af ? Channel.fromPath(params.gnomad_af).map{ it -> [[id:it[0].simpleName], it] }.collect()
: Channel.value([[],[]])
Expand All @@ -212,7 +212,7 @@ workflow RAREDISEASE {
PREPARE_REFERENCES (
ch_genome_fasta,
ch_genome_fai,
ch_genome_dict_unprocessed,
ch_genome_dictionary,
ch_mt_fasta,
ch_gnomad_af_tab,
ch_dbsnp,
Expand Down

0 comments on commit ca688e5

Please sign in to comment.