Skip to content

Commit

Permalink
correctly parse model object
Browse files Browse the repository at this point in the history
  • Loading branch information
MattWellie committed Jan 17, 2024
1 parent f462f6d commit beeaebf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reanalysis/query_panelapp.py
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ def main(panels: str | None, out_path: str, dataset: str | None = None):

# store the list of genes currently on the core panel
if twelve_months:
twelve_months = set(gene_dict['genes'])
twelve_months = set(gene_dict.genes)

# if participant panels were provided, add each of those to the gene data
panel_list = set()
Expand Down

0 comments on commit beeaebf

Please sign in to comment.