Skip to content

Commit

Permalink
Fix docstring for hic.FileWriter.add_pixels()
Browse files Browse the repository at this point in the history
  • Loading branch information
robomics committed Nov 13, 2024
1 parent ed11349 commit fd1579c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hic_file_writer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ void HiCFileWriter::bind(nb::module_ &m) {
nb::rv_policy::take_ownership);

writer.def("add_pixels", &hictkpy::HiCFileWriter::add_pixels,
nb::sig("def add_pixels(self, pixels: pd.DataFrame) -> None"), nb::arg("pixels"),
nb::sig("def add_pixels(self, pixels: pandas.DataFrame) -> None"), nb::arg("pixels"),
"Add pixels from a pandas DataFrame containing pixels in COO or BG2 format (i.e. "
"either with columns=[bin1_id, bin2_id, count] or with columns=[chrom1, start1, end1, "
"chrom2, start2, end2, count].");
Expand Down

0 comments on commit fd1579c

Please sign in to comment.