Files
rdkit/Code/GraphMol/MolHash/normalize.cpp
Greg Landrum 4bbbc6611d Add a CXSMILES option to the MolHash (#5058)
* Nonchiral atoms should be removed from StereoGroups

This fixes a bug where atoms which have no chirality were left in StereoGroups

In order to make this work, ROMol::setStereoGroups() needed to be made public.
That shouldn't be a problem since it doesn't change connectivity.

* support CXSmiles extensions in the hashes

* initial tests for that

* some cleanup

* copyright header cleanup

* minor refactoring

* call out the changes in the release notes

* extension and more testing

* add python wrappers
2022-03-03 16:00:38 +01:00

61 lines
1.9 KiB
C++

//
// Copyright (C) 2019-2022 NextMove Software and other RDKit contributors
//
// @@ 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 <GraphMol/RDKitBase.h>
#include <GraphMol/RDKitQueries.h>
#include <GraphMol/SmilesParse/SmilesWrite.h>
#include "nmmolhash.h"
namespace RDKit {
namespace MolHash {
void Strip(RWMol *mol, unsigned int striptype) {
// The order of these operations is significant to some degree
// - Hydrogens should be at the end as that is the common
// use case
if (striptype & static_cast<unsigned>(StripType::AtomStereo)) {
for (auto aptr : mol->atoms()) {
aptr->setChiralTag(RDKit::Atom::CHI_UNSPECIFIED);
}
if (!mol->getStereoGroups().empty()) {
std::vector<StereoGroup> no_sgs;
mol->setStereoGroups(std::move(no_sgs));
}
}
if (striptype & static_cast<unsigned>(StripType::BondStereo)) {
for (auto bptr : mol->bonds()) {
if (bptr->getStereo() > RDKit::Bond::STEREOANY) {
bptr->setStereo(RDKit::Bond::STEREOANY);
}
}
}
if (striptype & static_cast<unsigned>(StripType::Isotope)) {
for (auto aptr : mol->atoms()) {
aptr->setIsotope(0);
}
}
if (striptype & static_cast<unsigned>(StripType::AtomMap)) {
for (auto aptr : mol->atoms()) {
aptr->setAtomMapNum(0);
}
}
if (striptype & static_cast<unsigned>(StripType::Hydrogen)) {
MolOps::removeHs(*mol);
}
}
void SplitMolecule(RWMol *mol, std::vector<RWMol *> &molv) {
auto mfrags = RDKit::MolOps::getMolFrags(*mol);
for (const auto &frag : mfrags) {
const auto *wrappedmol = frag.get(); // reach inside the shared pointer...
molv.push_back(new RWMol(*wrappedmol)); // ...and make a copy
}
}
} // namespace MolHash
} // namespace RDKit