Skip to content

Commit

Permalink
Merge pull request #77 from clinical-genomics-uppsala/padraicc-patch-4
Browse files Browse the repository at this point in the history
fix: change config get
  • Loading branch information
padraicc authored Jun 26, 2024
2 parents aca2c26 + 5392c18 commit d0270c3
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions workflow/rules/common.smk
Original file line number Diff line number Diff line change
Expand Up @@ -294,9 +294,7 @@ def compile_output_list(wildcards):
for flowcell in set([u.flowcell for u in units.loc[(sample, unit_type)].dropna().itertuples()])
for barcode in set([u.barcode for u in units.loc[(sample, unit_type)].dropna().itertuples()])
for lane in set([u.lane for u in units.loc[(sample, unit_type)].dropna().itertuples()])
for str_panel in [
panel_list.split(".")[0] for panel_list in config.get("reference", {}).get("str_panels", "")
]
for str_panel in [panel_list.split(".")[0] for panel_list in config["reference"]["str_panels"]]
]
)

Expand Down

0 comments on commit d0270c3

Please sign in to comment.