We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad18ae6 commit a19512cCopy full SHA for a19512c
tests/test_extras.py
@@ -51,7 +51,11 @@ def test_make_chromarms():
51
)
52
53
# test for passing Series or dict
54
- result = bioframe.make_chromarms(pd.Series({"chrX": 8}), mids, cols_mids=["chromosome", "loc"])
+ result = bioframe.make_chromarms(
55
+ pd.Series({"chrX": 8}),
56
+ mids,
57
+ cols_mids=["chromosome", "loc"]
58
+ )
59
pd.testing.assert_frame_equal(arms, result)
60
61
result = bioframe.make_chromarms(pd.Series({"chrX": 8}), pd.Series({"chrX": 4}))
0 commit comments