Skip to content

Commit

Permalink
hotfix: Capture only first version in gene_fasttree
Browse files Browse the repository at this point in the history
  • Loading branch information
jvfe committed Aug 8, 2024
1 parent 9c16708 commit c44b00c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion subworkflows/local/phylo.nf
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ workflow PHYLOGENOMICS{
def is_nt = params.use_ppanggolin ? false : true
GENE_FASTTREE(chunked_alignments, is_nt)
GENE_FASTTREE.out.phylogeny.set { gene_trees }
ch_software_versions = ch_software_versions.mix(GENE_FASTTREE.out.versions.ifEmpty(null))
ch_software_versions = ch_software_versions.mix(GENE_FASTTREE.out.versions.first().ifEmpty(null))

CORE_FASTTREE(ch_core_alignment, is_nt)
CORE_FASTTREE.out.phylogeny.set { core_tree }
Expand Down

0 comments on commit c44b00c

Please sign in to comment.