From cc5a17c68df2d664d82568a9cb77f71cf79e3e89 Mon Sep 17 00:00:00 2001 From: Gabriel Studer <gabriel.studer@unibas.ch> Date: Tue, 10 Dec 2024 11:45:06 +0100 Subject: [PATCH] Python export of IsNucleotideLinking for conop.Compound --- modules/conop/pymod/export_compound.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/conop/pymod/export_compound.cc b/modules/conop/pymod/export_compound.cc index d193801bb..a22586c10 100644 --- a/modules/conop/pymod/export_compound.cc +++ b/modules/conop/pymod/export_compound.cc @@ -128,6 +128,7 @@ void export_Compound() { .def("AddAtom", &Compound::AddAtom) .def("AddBond", &Compound::AddBond) .def("IsPeptideLinking", &Compound::IsPeptideLinking) + .def("IsNucleotideLinking", &Compound::IsNucleotideLinking) .add_property("chem_class", &get_chemclass, &set_chemclass) .add_property("chem_type", &get_chemtype) -- GitLab