Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Anders Jemt <jemten@users.noreply.github.com>
  • Loading branch information
ramprasadn and jemten authored Jan 22, 2024
1 parent 1b1d6a1 commit f1b75d4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion subworkflows/local/annotate_genome_snvs.nf
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ workflow ANNOTATE_GENOME_SNVS {
.set { ch_for_mix }

ch_for_mix.selvar.mix(ch_for_mix.cadd)
.map { meta, vcf -> return [meta, vcf, []]}
.map { meta, vcf -> return [meta, vcf, []] }
.set { ch_vep_in }


Expand Down
2 changes: 1 addition & 1 deletion subworkflows/local/annotate_mobile_elements.nf
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ workflow ANNOTATE_MOBILE_ELEMENTS {
ch_genome_dictionary
)
.vcf
.map { meta, vcf -> return [meta, vcf, []]}
.map { meta, vcf -> return [meta, vcf, []] }
.set { ch_vep_in }

ENSEMBLVEP_ME(
Expand Down
2 changes: 1 addition & 1 deletion subworkflows/local/annotate_mt_snvs.nf
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ workflow ANNOTATE_MT_SNVS {

ch_for_mix.merged.mix(ch_for_mix.cadd)
.tap { ch_haplogrep_in }
.map { meta, vcf -> return [meta, vcf, []]}
.map { meta, vcf -> return [meta, vcf, []] }
.set { ch_vep_in }


Expand Down

0 comments on commit f1b75d4

Please sign in to comment.