Skip to content
Snippets Groups Projects
Verified Commit 72fb6204 authored by Laurent Modolo's avatar Laurent Modolo
Browse files

emase: fix output variable

parent bbb9ee8d
No related branches found
No related tags found
No related merge requests found
...@@ -6,7 +6,7 @@ params.diploid_genome_out = "-x" ...@@ -6,7 +6,7 @@ params.diploid_genome_out = "-x"
process diploid_genome { process diploid_genome {
container = "${container_url}" container = "${container_url}"
label "big_mem_mono_cpus" label "big_mem_mono_cpus"
tag "$file_id" tag "${genome_a}-${genome_b}"
if (params.diploid_genome_out != "") { if (params.diploid_genome_out != "") {
publishDir "results/${params.diploid_genome_out}", mode: 'copy' publishDir "results/${params.diploid_genome_out}", mode: 'copy'
} }
...@@ -15,7 +15,7 @@ process diploid_genome { ...@@ -15,7 +15,7 @@ process diploid_genome {
tuple val(genome_a), path(fasta_a), val(genome_b), path(fasta_b) tuple val(genome_a), path(fasta_a), val(genome_b), path(fasta_b)
output: output:
tuple val(file_id), path(".fa"), emit: fasta tuple val("${genome_a}_${genome_b}"), path(".fa"), emit: fasta
script: script:
""" """
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment