Skip to content

Commit

Permalink
Bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
robomics committed May 7, 2024
1 parent 9c62edb commit e2298c4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions benchmarks/bin_table_merge_bin_ids.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@

import numpy as np
import numpy.typing as npt
import bioframe as bf

import hictkpy
import pandas as pd
Expand Down Expand Up @@ -80,8 +79,9 @@ def benchmark_pandas_vec(bins: pd.DataFrame, chroms: npt.NDArray, starts: npt.ND
(bins["start"] <= row["start"]) &
(bins["end"] > row["start"])
].index[0],
number=iters,
)
axis="columns"
),
number=iters
)
# fmt: on

Expand Down

0 comments on commit e2298c4

Please sign in to comment.