Skip to content

Commit

Permalink
fix channel queue to value
Browse files Browse the repository at this point in the history
  • Loading branch information
maxulysse committed Jul 25, 2023
1 parent 19bd890 commit fec9d72
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ workflow vcf_annotate_ensemblvep_snpeff_vep {

ENSEMBLVEP_DOWNLOAD(vep_cache_input)

vep_cache = ENSEMBLVEP_DOWNLOAD.out.cache.map{ meta, cache -> [cache] }
vep_cache = ENSEMBLVEP_DOWNLOAD.out.cache.map{ meta, cache -> [cache] }.first()

VCF_ANNOTATE_ENSEMBLVEP_SNPEFF (
input,
Expand Down Expand Up @@ -94,7 +94,7 @@ workflow vcf_annotate_ensemblvep_snpeff_both {

ENSEMBLVEP_DOWNLOAD(vep_cache_input)

vep_cache = ENSEMBLVEP_DOWNLOAD.out.cache.map{ meta, cache -> [cache] }
vep_cache = ENSEMBLVEP_DOWNLOAD.out.cache.map{ meta, cache -> [cache] }.first()

VCF_ANNOTATE_ENSEMBLVEP_SNPEFF (
input,
Expand Down Expand Up @@ -134,7 +134,7 @@ workflow vcf_annotate_ensemblvep_snpeff_large_chunks {

ENSEMBLVEP_DOWNLOAD(vep_cache_input)

vep_cache = ENSEMBLVEP_DOWNLOAD.out.cache.map{ meta, cache -> [cache] }
vep_cache = ENSEMBLVEP_DOWNLOAD.out.cache.map{ meta, cache -> [cache] }.first()

VCF_ANNOTATE_ENSEMBLVEP_SNPEFF (
input,
Expand Down Expand Up @@ -174,7 +174,7 @@ workflow vcf_annotate_ensemblvep_snpeff_no_scatter {

ENSEMBLVEP_DOWNLOAD(vep_cache_input)

vep_cache = ENSEMBLVEP_DOWNLOAD.out.cache.map{ meta, cache -> [cache] }
vep_cache = ENSEMBLVEP_DOWNLOAD.out.cache.map{ meta, cache -> [cache] }.first()

VCF_ANNOTATE_ENSEMBLVEP_SNPEFF (
input,
Expand Down

0 comments on commit fec9d72

Please sign in to comment.