From 6a9e70567d9613d3e898b35afc2e93635f8372b4 Mon Sep 17 00:00:00 2001 From: Roberto Rossini <71787608+robomics@users.noreply.github.com> Date: Sat, 9 Nov 2024 16:53:46 +0100 Subject: [PATCH] Fix typo in cooler.FileWriter class --- src/cooler_file_writer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cooler_file_writer.cpp b/src/cooler_file_writer.cpp index dd05952..117edf6 100644 --- a/src/cooler_file_writer.cpp +++ b/src/cooler_file_writer.cpp @@ -188,7 +188,7 @@ void CoolerFileWriter::bind(nb::module_ &m) { writer.def("__repr__", &hictkpy::CoolerFileWriter::repr); writer.def("path", &hictkpy::CoolerFileWriter::path, "Get the file path."); - writer.def("resolutions", &hictkpy::CoolerFileWriter::resolution, "Get the resolution in bp."); + writer.def("resolution", &hictkpy::CoolerFileWriter::resolution, "Get the resolution in bp."); writer.def("chromosomes", &get_chromosomes_from_object, nb::arg("include_ALL") = false, "Get chromosomes sizes as a dictionary mapping names to sizes.");