Skip to content

Commit

Permalink
fixup: appease python linter
Browse files Browse the repository at this point in the history
  • Loading branch information
rileyhgrant committed Feb 29, 2024
1 parent 6ab0ea2 commit 15cdf4c
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,12 @@ def prepare_variant_results():
variants = results.group_by(results.locus, results.alleles).aggregate()

# Select AC/AF numbers for the reference and alternate alleles
results = results.annotate(ac_case=results.ac_case[1], ac_ctrl=results.ac_control[1], an_case=results.ac_case[0], an_ctrl=results.ac_control[0])
results = results.annotate(
ac_case=results.ac_case[1],
ac_ctrl=results.ac_control[1],
an_case=results.ac_case[0],
an_ctrl=results.ac_control[0],
)

# TODO: I also should do some renaming and filtering here:
# the three sub-things I have coming in are lowercase, and end in -control
Expand Down

0 comments on commit 15cdf4c

Please sign in to comment.