Skip to content

Commit

Permalink
fix: Change logic for getting result
Browse files Browse the repository at this point in the history
  • Loading branch information
jvfe committed Jul 16, 2023
1 parent 60b4664 commit 9d3864f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions subworkflows/local/recombination.nf
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ workflow RECOMBINATION {
)
}

verticall_result = VERTICALL_PAIRWISE.out.tsv.ifEmpty([])
gubbins_result = GUBBINS.out.stats.ifEmpty([])
gubbins_result = params.run_gubbins ? GUBBINS.out.stats : []
verticall_result = params.run_verticall ? VERTICALL_PAIRWISE.out.tsv : []

emit:
verticall_result
Expand Down

0 comments on commit 9d3864f

Please sign in to comment.