Skip to content

Commit

Permalink
fixup! Format Python code with psf/black pull_request
Browse files Browse the repository at this point in the history
  • Loading branch information
PMBio authored and PMBio committed Oct 17, 2024
1 parent 1b626fc commit a260b8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deeprvat/deeprvat/associate.py
Original file line number Diff line number Diff line change
Expand Up @@ -1628,8 +1628,8 @@ def average_burdens(
adjusted_max = repeat_max - zero_effect_val
# Subtract off zero effect burden value (mode) and scale
this_burdens[:, :, r] = (
(this_burdens[:, :, r] - zero_effect_val) / adjusted_max
)
this_burdens[:, :, r] - zero_effect_val
) / adjusted_max

this_burdens = AGG_FCT[agg_fct](this_burdens, axis=2)

Expand Down

0 comments on commit a260b8b

Please sign in to comment.