Files
rdkit/Code/GraphMol/MolStandardize/Wrap/Normalize.cpp
Greg Landrum ac54eb3209 Add an in place version of most of the MolStandardize functionality (#6491)
* reionizer and uncharger and normalizer can now operate in place

* add removeUnmatchedAtoms argument to in-place version of runReactant

When set to false atoms which are not explicitly removed by the reaction are preserved

* Fix a case where transforms were incorrectly updating atomic numbers

* add more inplace operations to MolStandardize

* support those in the Python layer

* support inplace for the rest of the python wrappers

* move a few more functions over to the inplace code
2023-07-21 08:44:41 +02:00

68 lines
2.3 KiB
C++

//
// Copyright (C) 2018 Susan H. Leung
//
// @@ All Rights Reserved @@
// This file is part of the RDKit.
// The contents are covered by the terms of the BSD license
// which is included in the file license.txt, found at the root
// of the RDKit source tree.
//
#include <RDBoost/Wrap.h>
#include <GraphMol/RDKitBase.h>
#include <GraphMol/MolStandardize/Normalize.h>
#include <sstream>
namespace python = boost::python;
using namespace RDKit;
namespace {
ROMol *normalizeHelper(MolStandardize::Normalizer &self, const ROMol &mol) {
return self.normalize(mol);
}
void normalizeInPlaceHelper(MolStandardize::Normalizer &self, ROMol &mol) {
self.normalizeInPlace(static_cast<RWMol &>(mol));
}
MolStandardize::Normalizer *normalizerFromDataAndParams(
const std::string &data, const MolStandardize::CleanupParameters &params) {
std::istringstream sstr(data);
return new MolStandardize::Normalizer(sstr, params.maxRestarts);
}
} // namespace
struct normalize_wrapper {
static void wrap() {
python::scope().attr("__doc__") =
"Module containing tools for normalizing molecules defined by SMARTS "
"patterns";
std::string docString = "";
python::class_<MolStandardize::Normalizer, boost::noncopyable>(
"Normalizer", python::init<>())
.def(python::init<std::string, unsigned int>(
python::args("normalizeFilename", "maxRestarts")))
.def("normalize", &normalizeHelper,
(python::arg("self"), python::arg("mol")), "",
python::return_value_policy<python::manage_new_object>())
.def("normalizeInPlace", &normalizeInPlaceHelper,
(python::arg("self"), python::arg("mol")),
"modifies the input molecule");
python::def(
"NormalizerFromData", &normalizerFromDataAndParams,
(python::arg("paramData"), python::arg("params")),
"creates a Normalizer from a string containing normalization SMARTS",
python::return_value_policy<python::manage_new_object>());
python::def("NormalizerFromParams", &MolStandardize::normalizerFromParams,
(python::arg("params")),
"creates a Normalizer from CleanupParameters",
python::return_value_policy<python::manage_new_object>());
}
};
void wrap_normalize() { normalize_wrapper::wrap(); }