Skip to content

Commit

Permalink
Small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jkgoodrich committed Nov 21, 2024
1 parent 3dee829 commit e2edee9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion gnomad_qc/analyses/compute_pext.py
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,9 @@ def main(args):
res.check_resource_existence()

for ht in [res.base_pext_ht.ht(), res.annotation_level_pext_ht.ht()]:
ht = ht.annotate(**{k: ht[k].expression_proportion for k in ht.tissues})
ht = ht.annotate(
**{k: ht[k].expression_proportion for k in hl.eval(ht.tissues)}
)
ht.export(res.pext_base_tsv)


Expand Down

0 comments on commit e2edee9

Please sign in to comment.