Skip to content

Commit

Permalink
refactor: improve code readability
Browse files Browse the repository at this point in the history
  • Loading branch information
d0choa authored Sep 24, 2024
1 parent 0ac7ce8 commit ffb3a8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gentropy/dataset/study_locus.py
Original file line number Diff line number Diff line change
Expand Up @@ -1021,7 +1021,7 @@ def qc_explained_by_SuSiE(self: StudyLocus) -> StudyLocus:
# credible set in SuSiE overlapping region
f.col("inSuSiE")
# credible set not based on SuSiE
& ~(f.col("finemappingMethod") == "SuSiE-inf")
& (f.col("finemappingMethod") != "SuSiE-inf")
# credible set not already flagged as unresolved LD
& ~f.array_contains(
f.col("qualityControls"),
Expand Down

0 comments on commit ffb3a8a

Please sign in to comment.