From 2e92a2b966db3d2eb8ce8c3665b0577181c014e7 Mon Sep 17 00:00:00 2001 From: Paul Emsley Date: Thu, 25 Jul 2024 22:47:42 +0100 Subject: [PATCH] Fix the name of associate_sequence functions in nanobinds --- api/molecules-container-nanobind.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/molecules-container-nanobind.cc b/api/molecules-container-nanobind.cc index 54c03d019..40719c781 100644 --- a/api/molecules-container-nanobind.cc +++ b/api/molecules-container-nanobind.cc @@ -204,7 +204,7 @@ NB_MODULE(chapi, m) { .def("apply_transformation_to_atom_selection",&molecules_container_t::apply_transformation_to_atom_selection) .def("assign_sequence",&molecules_container_t::assign_sequence) .def("associate_data_mtz_file_with_map",&molecules_container_t::associate_data_mtz_file_with_map) - .def("associate_sequence_with_molecule",&molecules_container_t::associate_sequence_with_molecule) + .def("associate_sequence",&molecules_container_t::associate_sequence) .def("auto_fit_rotamer",&molecules_container_t::auto_fit_rotamer) .def("auto_read_mtz",&molecules_container_t::auto_read_mtz) .def("average_map",&molecules_container_t::average_map)