Files
rdkit/Code/GraphMol/MolStandardize/MolStandardize.cpp
Greg Landrum 158fe71ff2 Add some MolStandardize functionality to the CFFI library (#4062)
* support CleanupParameters from JSON

* add standardization to cffi

* remove a bunch of repeated code from the new stuff
2021-04-22 05:23:25 +02:00

185 lines
5.1 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 "MolStandardize.h"
#include "Metal.h"
#include "Normalize.h"
#include "Tautomer.h"
#include "Fragment.h"
#include <GraphMol/RDKitBase.h>
#include <iostream>
#include <GraphMol/ROMol.h>
#include <GraphMol/MolOps.h>
#include <GraphMol/MolStandardize/TransformCatalog/TransformCatalogParams.h>
#include "Charge.h"
#include <GraphMol/SmilesParse/SmilesWrite.h>
#include <GraphMol/SmilesParse/SmilesParse.h>
#include <RDGeneral/BoostStartInclude.h>
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/json_parser.hpp>
#include <RDGeneral/BoostEndInclude.h>
using namespace std;
namespace RDKit {
namespace MolStandardize {
const CleanupParameters defaultCleanupParameters;
#define PT_OPT_GET(opt) params.opt = pt.get(#opt, params.opt)
void updateCleanupParamsFromJSON(CleanupParameters &params,
const std::string &json) {
if (json.empty()) {
return;
}
std::istringstream ss;
ss.str(json);
boost::property_tree::ptree pt;
boost::property_tree::read_json(ss, pt);
PT_OPT_GET(rdbase);
PT_OPT_GET(normalizations);
PT_OPT_GET(acidbaseFile);
PT_OPT_GET(fragmentFile);
PT_OPT_GET(tautomerTransforms);
PT_OPT_GET(maxRestarts);
PT_OPT_GET(preferOrganic);
PT_OPT_GET(doCanonical);
PT_OPT_GET(maxTautomers);
PT_OPT_GET(maxTransforms);
PT_OPT_GET(tautomerRemoveSp3Stereo);
PT_OPT_GET(tautomerRemoveBondStereo);
PT_OPT_GET(tautomerRemoveIsotopicHs);
PT_OPT_GET(tautomerReassignStereo);
}
RWMol *cleanup(const RWMol &mol, const CleanupParameters &params) {
RWMol m(mol);
MolOps::removeHs(m);
MolStandardize::MetalDisconnector md;
md.disconnect(m);
RWMOL_SPTR normalized(MolStandardize::normalize(&m, params));
RWMol *reionized = MolStandardize::reionize(normalized.get(), params);
MolOps::assignStereochemistry(*reionized);
// update properties of reionized using m.
reionized->updateProps(m);
return reionized;
}
void tautomerParent(RWMol &mol, const CleanupParameters &params) {
RDUNUSED_PARAM(mol);
RDUNUSED_PARAM(params);
UNDER_CONSTRUCTION("Not yet implemented");
}
// Return the fragment parent of a given molecule.
// The fragment parent is the largest organic covalent unit in the molecule.
//
RWMol *fragmentParent(const RWMol &mol, const CleanupParameters &params,
bool skip_standardize) {
const RWMol *cleaned = nullptr;
if (!skip_standardize) {
cleaned = cleanup(mol, params);
} else {
cleaned = &mol;
}
LargestFragmentChooser lfragchooser(params.preferOrganic);
ROMol nm(*cleaned);
ROMOL_SPTR lfrag(lfragchooser.choose(nm));
if (!skip_standardize) {
delete cleaned;
}
return new RWMol(*lfrag);
}
void stereoParent(RWMol &mol, const CleanupParameters &params) {
RDUNUSED_PARAM(mol);
RDUNUSED_PARAM(params);
UNDER_CONSTRUCTION("Not yet implemented");
}
void isotopeParent(RWMol &mol, const CleanupParameters &params) {
RDUNUSED_PARAM(mol);
RDUNUSED_PARAM(params);
UNDER_CONSTRUCTION("Not yet implemented");
}
RWMol *chargeParent(const RWMol &mol, const CleanupParameters &params,
bool skip_standardize) {
// Return the charge parent of a given molecule.
// The charge parent is the uncharged version of the fragment parent.
RWMOL_SPTR fragparent(fragmentParent(mol, params, skip_standardize));
// if fragment...
ROMol nm(*fragparent);
Uncharger uncharger(params.doCanonical);
ROMOL_SPTR uncharged(uncharger.uncharge(nm));
RWMol *omol = cleanup(static_cast<RWMol>(*uncharged), params);
return omol;
}
void superParent(RWMol &mol, const CleanupParameters &params) {
RDUNUSED_PARAM(mol);
RDUNUSED_PARAM(params);
UNDER_CONSTRUCTION("Not yet implemented");
}
RWMol *normalize(const RWMol *mol, const CleanupParameters &params) {
Normalizer normalizer(params.normalizations, params.maxRestarts);
ROMol m(*mol);
ROMol *normalized = normalizer.normalize(m);
return static_cast<RWMol *>(normalized);
}
RWMol *reionize(const RWMol *mol, const CleanupParameters &params) {
Reionizer reionizer(params.acidbaseFile);
ROMol m(*mol);
ROMol *reionized = reionizer.reionize(m);
return static_cast<RWMol *>(reionized);
}
std::string standardizeSmiles(const std::string &smiles) {
RWMOL_SPTR mol(SmilesToMol(smiles, 0, false));
if (!mol) {
std::string message =
"SMILES Parse Error: syntax error for input: " + smiles;
throw ValueErrorException(message);
}
CleanupParameters params;
RWMOL_SPTR cleaned(cleanup(*mol, params));
return MolToSmiles(*cleaned);
}
std::vector<std::string> enumerateTautomerSmiles(
const std::string &smiles, const CleanupParameters &params) {
std::shared_ptr<RWMol> mol(SmilesToMol(smiles, 0, false));
cleanup(*mol, params);
MolOps::sanitizeMol(*mol);
TautomerEnumerator te(params);
auto res = te.enumerate(*mol);
return res.smiles();
}
} // end of namespace MolStandardize
} // end of namespace RDKit