Skip to content

Commit

Permalink
pushme
Browse files Browse the repository at this point in the history
  • Loading branch information
bpblanken committed Nov 28, 2024
1 parent 9067e4d commit cf242f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion v03_pipeline/lib/reference_datasets/dbnsfp.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def get_ht(path: str, reference_genome: ReferenceGenome) -> hl.Table:
ht = ht.rename(rename)
ht = key_by_locus_alleles(ht, reference_genome)
return ht.group_by(*ht.key).aggregate(
**{f: hl.agg.max(ht[f]) for f in ht.row_key},
**{f: hl.agg.max(ht[f]) for f in ht.row_value},
)


Expand Down

0 comments on commit cf242f1

Please sign in to comment.