1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
|
//
// Copyright (C) 2023 Schrödinger, LLC
//
// @@ 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/ROMol.h>
#include <GraphMol/SmilesParse/SmilesParse.h>
#include <GraphMol/MolOps.h>
#include "TemplateSmiles.h"
#include <iostream>
#include <fstream>
#include <unordered_map>
namespace RDDepict {
class RDKIT_DEPICTOR_EXPORT CoordinateTemplates {
public:
//! returns a reference to the singleton CoordinateTemplates
/*
\return a reference to the singleton CoordinateTemplates
<b>Notes:</b>
- if the singleton CoordinateTemplates has already been instantiated
the singleton will be returned, otherwise the singleton will
be constructed.
*/
static CoordinateTemplates &getRingSystemTemplates() {
static CoordinateTemplates template_mols;
return template_mols;
}
bool hasTemplateOfSize(unsigned int atomCount) {
if (m_templates.find(atomCount) != m_templates.end()) {
return true;
}
return false;
}
const std::vector<std::shared_ptr<RDKit::ROMol>> &getMatchingTemplates(
unsigned int atomCount) {
return m_templates[atomCount];
}
void setRingSystemTemplates(const std::string &templatePath);
void addRingSystemTemplates(const std::string &templatePath);
//! check if a template is considered valid
/*
\param template mol
\param smiles for logging
\return whether the template is valid
<b>A template is considered valid if it:</b>
- has 2D coordinates
- is a ring system (spiro'd ring systems are OK)
- consists of only 1 fragment
*/
static void assertValidTemplate(RDKit::ROMol &mol, const std::string &smiles);
void loadDefaultTemplates() {
clearTemplates();
// load default templates into m_templates map by atom count
for (const auto &smiles : TEMPLATE_SMILES) {
std::shared_ptr<RDKit::ROMol> mol(RDKit::SmilesToMol(smiles));
m_templates[mol->getNumAtoms()].push_back(mol);
}
}
private:
CoordinateTemplates() { loadDefaultTemplates(); }
CoordinateTemplates(const CoordinateTemplates &) = delete;
CoordinateTemplates &operator=(const CoordinateTemplates &) = delete;
void clearTemplates() {
for (auto &[atom_cout, romols] : m_templates) {
romols.clear();
}
m_templates.clear();
}
~CoordinateTemplates() { clearTemplates(); }
void loadTemplatesFromPath(
const std::string &templatePath,
std::unordered_map<
unsigned int, std::vector<std::shared_ptr<RDKit::ROMol>>> &templates);
std::unordered_map<unsigned int, std::vector<std::shared_ptr<RDKit::ROMol>>>
m_templates;
};
} // namespace RDDepict
|