Skip to content

Commit

Permalink
fix: restore else statement
Browse files Browse the repository at this point in the history
  • Loading branch information
huzuner committed Oct 18, 2024
1 parent b92dbc9 commit b530bb4
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions workflow/rules/common.smk
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,19 @@ def get_final_output(wildcards):
calling_type=calling_type,
)
)
else:
final_output.extend(
expand(
"results/final-calls/{group}.{event}.{calling_type}.fdr-controlled.bcf",
group=(
variants_groups
if calling_type == "variants"
else fusions_groups
),
event=event,
calling_type=calling_type,
)
)
else:
final_output.extend(
expand(
Expand Down

0 comments on commit b530bb4

Please sign in to comment.