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 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369
|
//
// Copyright (C) 2017 Greg Landrum
//
// @@ 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 <RDGeneral/test.h>
#include <RDGeneral/utils.h>
#include <RDGeneral/Invariant.h>
#include <RDGeneral/RDLog.h>
#include <GraphMol/RDKitBase.h>
#include <RDGeneral/hash/hash.hpp>
#include <GraphMol/SmilesParse/SmilesParse.h>
#include <GraphMol/ChemReactions/ReactionParser.h>
#include <GraphMol/ChemReactions/SanitizeRxn.h>
#include <GraphMol/Depictor/RDDepictor.h>
#include <RDGeneral/BoostStartInclude.h>
#include <boost/algorithm/string.hpp>
#include <boost/lexical_cast.hpp>
#include <RDGeneral/BoostEndInclude.h>
#include <GraphMol/MolDraw2D/MolDraw2D.h>
#include <GraphMol/MolDraw2D/MolDraw2DSVG.h>
#include <GraphMol/MolDraw2D/MolDraw2DUtils.h>
#include <iostream>
#include <fstream>
#include <sstream>
#include <iterator>
#include <map>
using namespace RDKit;
#ifdef RDK_BUILD_CAIRO_SUPPORT
#include <cairo.h>
#include "MolDraw2DCairo.h"
#endif
namespace {
// if the generated SVG hashes to the value we're expecting, delete
// the file. That way, only the files that need inspection will be
// left at the end of the run.
static const bool DELETE_WITH_GOOD_HASH = true;
#ifdef RDK_BUILD_FREETYPE_SUPPORT
static const std::map<std::string, std::hash_result_t> SVG_HASHES = {
{"rxn_test1_1.svg", 46725873U}, {"rxn_test1_2.svg", 2822273042U},
{"rxn_test1_3.svg", 3749362740U}, {"rxn_test1_4.svg", 2720989271U},
{"rxn_test1_5.svg", 3245376196U}, {"rxn_test1_6.svg", 3282888040U},
{"rxn_test1_7.svg", 1748644916U}, {"rxn_test2_1.svg", 409647324U},
{"rxn_test2_2_1.svg", 1275078201U}, {"rxn_test2_2_2.svg", 2689198952U},
{"rxn_test2_2_3.svg", 3750657998U}, {"rxn_test2_2_4.svg", 844519751U},
{"rxn_test3_1.svg", 3321754513U}, {"rxn_test4_1.svg", 1987969092U},
{"rxn_test4_2.svg", 946039978U},
};
#else
static const std::map<std::string, std::hash_result_t> SVG_HASHES = {
{"rxn_test1_1.svg", 3077363070U}, {"rxn_test1_2.svg", 343913088U},
{"rxn_test1_3.svg", 1743857837U}, {"rxn_test1_4.svg", 421748462U},
{"rxn_test1_5.svg", 2287478842U}, {"rxn_test1_6.svg", 771132615U},
{"rxn_test1_7.svg", 573680560U}, {"rxn_test2_1.svg", 2821179072U},
{"rxn_test2_2_1.svg", 1304295583U}, {"rxn_test2_2_2.svg", 1361778996U},
{"rxn_test2_2_3.svg", 2608405344U}, {"rxn_test2_2_4.svg", 574045696U},
{"rxn_test3_1.svg", 3205563676U}, {"rxn_test4_1.svg", 2762964801U},
{"rxn_test4_2.svg", 1182024377U},
};
#endif
// These PNG hashes aren't completely reliable due to floating point cruft,
// but they can still reduce the number of drawings that need visual
// inspection. At present, the files
// rxn_test1_2.png rxn_test1_5.png rxn_test2_2_1.png rxn_test2_2_4.png
// rxn_test4_2.png rxn_test1_3.png rxn_test1_7.png rxn_test2_2_2.png
// rxn_test3_1.png rxn_test1_4.png rxn_test2_1.png rxn_test2_2_3.png
// rxn_test4_1.png
// give different results on my MBP and Ubuntu 20.04 VM. The SVGs work
// better because the floats are all output to only 1 decimal place so there
// is a much smaller chance of different systems producing different files.
static const std::map<std::string, std::hash_result_t> PNG_HASHES = {
{"rxn_test1_1.png", 3579100589U}, {"rxn_test1_2.png", 3996724834U},
{"rxn_test1_3.png", 4153817948U}, {"rxn_test1_4.png", 4175225545U},
{"rxn_test1_5.png", 3400977230U}, {"rxn_test1_6.png", 2636974466U},
{"rxn_test1_7.png", 4164917700U}, {"rxn_test2_1.png", 2654417911U},
{"rxn_test2_2_1.png", 997060634U}, {"rxn_test2_2_2.png", 2090979640U},
{"rxn_test2_2_3.png", 857100114U}, {"rxn_test2_2_4.png", 610638635U},
{"rxn_test3_1.png", 501226401U}, {"rxn_test4_1.png", 805353504U},
{"rxn_test4_2.png", 2842629749U},
};
std::hash_result_t hash_file(const std::string &filename) {
std::ifstream ifs(filename, std::ios_base::binary);
std::string file_contents(std::istreambuf_iterator<char>{ifs}, {});
if (filename.substr(filename.length() - 4) == ".svg") {
// deal with MSDOS newlines.
file_contents.erase(
remove(file_contents.begin(), file_contents.end(), '\r'),
file_contents.end());
}
return gboost::hash_range(file_contents.begin(), file_contents.end());
}
void check_file_hash(const std::string &filename,
std::hash_result_t exp_hash = 0U) {
// std::cout << filename << " : " << hash_file(filename) << "U" <<
// std::endl;
std::map<std::string, std::hash_result_t>::const_iterator it;
if (filename.substr(filename.length() - 4) == ".svg") {
it = SVG_HASHES.find(filename);
} else {
it = PNG_HASHES.find(filename);
}
std::hash_result_t file_hash = hash_file(filename);
if (exp_hash == 0U) {
exp_hash = it == SVG_HASHES.end() ? 0U : it->second;
}
if (it != SVG_HASHES.end() && file_hash == exp_hash) {
if (DELETE_WITH_GOOD_HASH) {
std::remove(filename.c_str());
}
} else {
std::cout << "file " << filename << " gave hash " << file_hash
<< "U not the expected " << exp_hash << "U" << std::endl;
}
}
void drawit(ChemicalReaction *rxn, std::string nameBase,
bool highlight_map = false,
const std::vector<DrawColour> *highlight_colors = nullptr) {
double panex = 200, paney = 150;
double width = panex * (rxn->getNumReactantTemplates() +
rxn->getNumProductTemplates() + 1);
double height = paney;
#ifdef RDK_BUILD_CAIRO_SUPPORT
{
MolDraw2DCairo drawer(width, height);
drawer.drawReaction(*rxn, highlight_map, highlight_colors);
drawer.finishDrawing();
drawer.writeDrawingText(nameBase + ".png");
check_file_hash(nameBase + ".png");
}
#endif
{
std::ofstream outs((nameBase + ".svg").c_str());
MolDraw2DSVG drawer(width, height, outs);
drawer.drawReaction(*rxn, highlight_map, highlight_colors);
drawer.finishDrawing();
outs.close();
check_file_hash(nameBase + ".svg");
}
}
} // namespace
void test1() {
std::cout << " ----------------- Test 1" << std::endl;
{
std::string smiles =
"[CH3:1][C:2](=[O:3])[OH:4].[CH3:5][NH2:6]>CC(O)C.[Pt]>[CH3:1][C:2](=["
"O:3])[NH:6][CH3:5].[OH2:4]";
std::string nameBase = "rxn_test1_1";
bool useSmiles = true;
ChemicalReaction *rxn =
RxnSmartsToChemicalReaction(smiles, nullptr, useSmiles);
TEST_ASSERT(rxn);
drawit(rxn, nameBase);
delete rxn;
}
{
std::string smiles =
"[N:1][C:2][C:3](=[O:4])[O:5].[N:6][C:7][C:8](=[O:9])[O:10]>>[N:1]1[C:"
"2][C:3](=[O:4])[N:6][C:7][C:8]1=[O:9].[O:5][O:10]";
std::string nameBase = "rxn_test1_2";
bool useSmiles = true;
ChemicalReaction *rxn =
RxnSmartsToChemicalReaction(smiles, nullptr, useSmiles);
TEST_ASSERT(rxn);
drawit(rxn, nameBase);
delete rxn;
}
{
std::string smiles =
">>[N:1]1[C:"
"2][C:3](=[O:4])[N:6][C:7][C:8]1=[O:9].[O:5][O:10]";
std::string nameBase = "rxn_test1_3";
bool useSmiles = true;
ChemicalReaction *rxn =
RxnSmartsToChemicalReaction(smiles, nullptr, useSmiles);
TEST_ASSERT(rxn);
drawit(rxn, nameBase);
delete rxn;
}
{
std::string smiles =
"[N:1][C:2][C:3](=[O:4])[O:5].[N:6][C:7][C:8](=[O:9])[O:10]>>";
std::string nameBase = "rxn_test1_4";
bool useSmiles = true;
ChemicalReaction *rxn =
RxnSmartsToChemicalReaction(smiles, nullptr, useSmiles);
TEST_ASSERT(rxn);
drawit(rxn, nameBase);
delete rxn;
}
{
std::string smiles =
"[N:1][C:2][C:3](=[O:4])[O:5].[N:6][C:7][C:8](=[O:9])[O:10]>O.ClCl>";
std::string nameBase = "rxn_test1_5";
bool useSmiles = true;
ChemicalReaction *rxn =
RxnSmartsToChemicalReaction(smiles, nullptr, useSmiles);
TEST_ASSERT(rxn);
drawit(rxn, nameBase);
delete rxn;
}
{
std::string smiles =
"[CH3:1][C:2](=[O:3])[OH:4].[CH3:5][NH2:6]>CC(O)C.[Pt]>[CH3:1][C:2](=["
"O:3])[NH:6][CH3:5].[OH2:4]";
std::string nameBase = "rxn_test1_6";
bool useSmiles = true;
ChemicalReaction *rxn =
RxnSmartsToChemicalReaction(smiles, nullptr, useSmiles);
TEST_ASSERT(rxn);
drawit(rxn, nameBase, true);
delete rxn;
}
{
// With the new code (Jan 2022) it appears that the 2nd reagent overlaps
// the + sign, but this is an optical illusion. Trust me :-).
std::string smiles =
"[N:1][C:2][C:3](=[O:4])[O:5].[N:6][C:7][C:8](=[O:9])[O:10]>>[N:1]1[C:"
"2][C:3](=[O:4])[N:6][C:7][C:8]1=[O:9].[O:5][O:10]";
std::string nameBase = "rxn_test1_7";
bool useSmiles = true;
ChemicalReaction *rxn =
RxnSmartsToChemicalReaction(smiles, nullptr, useSmiles);
TEST_ASSERT(rxn);
drawit(rxn, nameBase, true);
delete rxn;
}
std::cout << " Done" << std::endl;
}
void test2() {
std::cout << " ----------------- Test 2: some examples that caused problems "
"in testing"
<< std::endl;
{ // from the reaction role assignment paper
std::string smiles =
"[cH:5]1[cH:6][c:7]2[cH:8][n:9][cH:10][cH:11][c:12]2[c:3]([cH:4]1)[C:2]"
"(=[O:1])O.[N-:13]=[N+:14]=[N-:15]>C(Cl)Cl.C(=O)(C(=O)Cl)Cl>[cH:5]1["
"cH:6][c:7]2[cH:8][n:9][cH:10][cH:11][c:12]2[c:3]([cH:4]1)[C:2](=[O:1])"
"[N:13]=[N+:14]=[N-:15]";
std::string nameBase = "rxn_test2_1";
bool useSmiles = true;
ChemicalReaction *rxn =
RxnSmartsToChemicalReaction(smiles, nullptr, useSmiles);
TEST_ASSERT(rxn);
drawit(rxn, nameBase);
delete rxn;
}
{ // from Ed Griffen
// order is: SMIRKS substrate product
std::string indata =
"[cH:1]1[cH:2][cH:3][c:4][cH:5][cH:6]1>>CC(C)[c:1]1[cH:2][cH:3][c:4][cH:5][cH:6]1 CN1CCC(CC1)N(C)S(=O)(=O)c2ccccc2 CC(C)c1ccc(cc1)S(=O)(=O)N(C)C2CCN(CC2)C\n\
[cH:1]1[cH:2][cH:3][c:4][cH:5][cH:6]1>>[cH:3]1[cH:2][c:1]([cH:6][cH:5][c:4]1)Cl Cc1cccc(c1C)N2CCN(CC2)CCCNC(=O)c3cc([nH]c3C)c4ccccc4 Cc1cccc(c1C)N2CCN(CC2)CCCNC(=O)c3cc([nH]c3C)c4ccc(cc4)Cl\n\
Cc1c(cc([nH]1)[c:1]2[cH:2][cH:3][cH:4][cH:5][cH:6]2)[C:7](=[O:8])[NH:9][CH2:10][CH2:11]>>CCc1nc(c(n1[c:1]2[cH:2][cH:3][cH:4][cH:5][cH:6]2)C)[C:7](=[O:8])[NH:9][CH2:10][CH2:11] Cc1c(cc([nH]1)c2ccccc2)C(=O)NCCN3CCN(C\n\
C3)c4cccc(c4Cl)Cl CCc1nc(c(n1c2ccccc2)C)C(=O)NCCN3CCN(CC3)c4cccc(c4Cl)Cl\n\
[c:1][C:2](=[O:3])[NH:4]CCC[CH2:5][N:6]([CH2:7])[CH2:8]>>[c:1][C:2](=[O:3])[NH:4]C[CH2:5][N:6]([CH2:7])[CH2:8] CCCn1c(c(cc1c2ccccc2)C(=O)NCCCCN3CCN(CC3)c4cccc(c4Cl)Cl)C CCCn1c(c(cc1c2ccccc2)C(=O)NCCN3CCN(CC3)c4cccc(c4Cl)Cl)C\n\
[CH3:1]c1c(cc(n1[CH3:2])C(C)(C)C)[C:3]>>[CH3:2]c1c(c(nc(n1)[CH3:1])[C:3])OC Cc1cccc(c1C)N2CCN(CC2)CCNC(=O)c3cc(n(c3C)C)C(C)(C)C Cc1cccc(c1C)N2CCN(CC2)CCNC(=O)c3c(c(nc(n3)C)C)OC";
std::vector<std::string> lines;
boost::split(lines, indata, boost::is_any_of("\n"));
unsigned int idx = 0;
for (auto &line : lines) {
std::vector<std::string> tokens;
boost::split(tokens, line, boost::is_any_of("\t "));
std::cerr << tokens.size() << " " << line << std::endl;
if (tokens.size() > 2) {
++idx;
std::string nameBase = "rxn_test2_2_" + std::to_string(idx);
bool useSmiles = true;
ChemicalReaction *rxn =
RxnSmartsToChemicalReaction(tokens[0], nullptr, useSmiles);
TEST_ASSERT(rxn);
drawit(rxn, nameBase);
delete rxn;
}
}
}
std::cout << " Done" << std::endl;
}
void test3() {
std::cout << " ----------------- Test 3: test reactant highlighting"
<< std::endl;
{ // from the reaction role assignment paper
std::string smiles =
"[cH:5]1[cH:6][c:7]2[cH:8][n:9][cH:10][cH:11][c:12]2[c:3]([cH:4]1)[C:2]"
"(=[O:1])O.[N-:13]=[N+:14]=[N-:15]>C(Cl)Cl.C(=O)(C(=O)Cl)Cl>[cH:5]1["
"cH:6][c:7]2[cH:8][n:9][cH:10][cH:11][c:12]2[c:3]([cH:4]1)[C:2](=[O:1])"
"[N:13]=[N+:14]=[N-:15]";
std::string nameBase = "rxn_test3_1";
bool useSmiles = true;
ChemicalReaction *rxn =
RxnSmartsToChemicalReaction(smiles, nullptr, useSmiles);
TEST_ASSERT(rxn);
std::vector<DrawColour> highlight_colors;
highlight_colors.push_back(DrawColour(1., 1., .67));
highlight_colors.push_back(DrawColour(1., .71, .76));
highlight_colors.push_back(DrawColour(.8, 1., .8));
highlight_colors.push_back(DrawColour(.67, .67, 1.));
drawit(rxn, nameBase, true, &highlight_colors);
delete rxn;
}
std::cout << " Done" << std::endl;
}
void test4() {
std::cout << " ----------------- Test 4: some examples from SMARTS "
"in testing"
<< std::endl;
{ // from the reaction role assignment paper
std::string smiles =
"[cH:5]1[cH:6][c:7]2[cH:8][n:9][cH:10][cH:11][c:12]2[c:3]([cH:4]1)[C:2]"
"(=[O:1])O.[N-:13]=[N+:14]=[N-:15]>C(Cl)Cl.C(=O)(C(=O)Cl)Cl>[cH:5]1["
"cH:6][c:7]2[cH:8][n:9][cH:10][cH:11][c:12]2[c:3]([cH:4]1)[C:2](=[O:1])"
"[N:13]=[N+:14]=[N-:15]";
std::string nameBase = "rxn_test4_1";
bool useSmiles = false;
ChemicalReaction *rxn =
RxnSmartsToChemicalReaction(smiles, nullptr, useSmiles);
TEST_ASSERT(rxn);
std::cerr << "draw!" << std::endl;
drawit(rxn, nameBase, true);
std::cerr << " done" << std::endl;
delete rxn;
}
{ // from the reaction role assignment paper
std::string smiles =
"[CH3:16][CH2:15][c:14]1[c:7]([cH:6][c:5]([cH:22][c:17]1[O:18][CH2:19]["
"CH:20]=[CH2:21])[O:4][CH2:3][CH:2]=[CH2:1])[CH2:8][CH2:9][O:10][CH2:"
"11][CH2:12][O:13]C2CCCCO2.CO.C1COCCO1.C(=O)(O)[O-].O.[Na+].Cl>>[CH3:"
"16][CH2:15][c:14]1[c:7]([cH:6][c:5]([cH:22][c:17]1[O:18][CH2:19][CH:"
"20]=[CH2:21])[O:4][CH2:3][CH:2]=[CH2:1])[CH2:8][CH2:9][O:10][CH2:11]["
"CH2:12][OH:13]";
std::string nameBase = "rxn_test4_2";
bool useSmiles = false;
ChemicalReaction *rxn =
RxnSmartsToChemicalReaction(smiles, nullptr, useSmiles);
TEST_ASSERT(rxn);
drawit(rxn, nameBase, true);
delete rxn;
}
std::cout << " Done" << std::endl;
}
int main() {
RDLog::InitLogs();
#if 1
test1();
test2();
test3();
test4();
#endif
}
|