Skip to content

Commit

Permalink
fix function
Browse files Browse the repository at this point in the history
  • Loading branch information
wharvey31 committed May 30, 2024
1 parent a4ddbd2 commit 3a69e32
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pipelines/summarize_flagger_output/workflow/Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ def find_per_sample_flagger_summaries(wildcards):

def find_converted_pafs(wildcards):
if wildcards.subgroup == "all":
return expand(rules.liftover_coords.output.paf, sample=manifest_df.index)
return expand(rules.liftover_coords.output.new_bed, sample=manifest_df.index)
else:
return expand(
rules.liftover_coords.output.paf,
rules.liftover_coords.output.new_bed,
sample=[x for x in SUBGROUP_DICT[wildcards.subgroup]],
)

Expand Down

0 comments on commit 3a69e32

Please sign in to comment.