Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
sergpolly authored Nov 23, 2023
1 parent e4f498c commit cd05f40
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/test_ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -1081,7 +1081,10 @@ def test_coverage():
d = """chromosome begin stop coverage
0 chr1 3 8 5"""
df = pd.read_csv(StringIO(d), sep=r"\s+")
pd.testing.assert_frame_equal(df, bioframe.coverage(df1, df2, cols1=cols1, cols2=cols2))
pd.testing.assert_frame_equal(
df,
bioframe.coverage(df1, df2, cols1=cols1, cols2=cols2)
)

### coverage of NA interval returns zero for coverage
df1 = pd.DataFrame(
Expand Down

0 comments on commit cd05f40

Please sign in to comment.