Skip to content

Commit

Permalink
fix: fix excluding events from the report
Browse files Browse the repository at this point in the history
  • Loading branch information
huzuner committed Oct 17, 2024
1 parent 1629c6d commit b92dbc9
Showing 1 changed file with 1 addition and 14 deletions.
15 changes: 1 addition & 14 deletions workflow/rules/common.smk
Original file line number Diff line number Diff line change
Expand Up @@ -150,20 +150,7 @@ def get_final_output(wildcards):
expand(
"results/datavzrd-report/{batch}.{event}.{calling_type}.fdr-controlled",
batch=get_report_batches(calling_type),
event=get_calling_events(calling_type),
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=get_calling_events(calling_type),
event=event,
calling_type=calling_type,
)
)
Expand Down

0 comments on commit b92dbc9

Please sign in to comment.