Skip to content

Commit

Permalink
Fixed a future warning by only using INT in BIM
Browse files Browse the repository at this point in the history
  • Loading branch information
lemieuxl committed Feb 14, 2024
1 parent ac1ae5e commit 6a7b0c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyplink/tests/test_pyplink.py
Expand Up @@ -372,7 +372,7 @@ def test_get_bim(self):
# Testing that changing a values in the BIM, doesn't change the value
# in the original BIM
bim.loc["rs4030300", "chrom"] = 2
bim.loc["rs2949420", "cm"] = 0.1
bim.loc["rs2949420", "cm"] = 100
comparison = ori_bim.loc[:, ["chrom", "pos", "cm", "a1", "a2"]] == bim
self.assertFalse(comparison.all().chrom)
self.assertFalse(comparison.all().cm)
Expand Down

0 comments on commit 6a7b0c4

Please sign in to comment.