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 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749
|
#include <RDGeneral/test.h>
#include <iostream>
#include <string>
#include <map>
#include <GraphMol/RDKitBase.h>
#include <GraphMol/Substruct/SubstructMatch.h>
#include <GraphMol/SmilesParse/SmilesParse.h>
#include <GraphMol/FileParsers/FileParsers.h>
#include <GraphMol/FileParsers/MolWriters.h>
#include <GraphMol/MolOps.h>
#include <GraphMol/Resonance.h>
using namespace RDKit;
void addFormalChargeIndices(const ROMol *mol,
std::map<unsigned int, int> &fcMap) {
for (ROMol::ConstAtomIterator it = mol->beginAtoms(); it != mol->endAtoms();
++it) {
int fc = (*it)->getFormalCharge();
unsigned int idx = (*it)->getIdx();
if (fc) {
if (fcMap.find(idx) == fcMap.end())
fcMap[idx] = fc;
else
fcMap[idx] += fc;
}
}
}
int getTotalFormalCharge(const ROMol *mol) {
int totalFormalCharge = 0;
for (ROMol::ConstAtomIterator it = mol->beginAtoms(); it != mol->endAtoms();
++it)
totalFormalCharge += (*it)->getFormalCharge();
return totalFormalCharge;
}
void cmpFormalChargeBondOrder(const ROMol *mol1, const ROMol *mol2) {
TEST_ASSERT(mol1->getNumAtoms() == mol2->getNumAtoms());
TEST_ASSERT(mol1->getNumBonds() == mol2->getNumBonds());
for (unsigned int i = 0; i < mol1->getNumAtoms(); ++i)
TEST_ASSERT(mol1->getAtomWithIdx(i)->getFormalCharge() ==
mol2->getAtomWithIdx(i)->getFormalCharge());
for (unsigned int i = 0; i < mol1->getNumBonds(); ++i)
TEST_ASSERT(mol1->getBondWithIdx(i)->getBondType() ==
mol2->getBondWithIdx(i)->getBondType());
}
void testBaseFunctionality() {
BOOST_LOG(rdInfoLog) << "-----------------------\n"
<< "testBaseFunctionality" << std::endl;
ResonanceMolSupplier *resMolSuppl;
RWMol *mol;
mol = SmilesToMol("CC");
resMolSuppl = new ResonanceMolSupplier((ROMol &)*mol);
TEST_ASSERT((resMolSuppl->getAtomConjGrpIdx(0) == -1) &&
(resMolSuppl->getAtomConjGrpIdx(1) == -1))
delete resMolSuppl;
resMolSuppl = new ResonanceMolSupplier((ROMol &)*mol);
TEST_ASSERT(resMolSuppl->getNumConjGrps() == 0);
TEST_ASSERT(resMolSuppl->length() == 1);
TEST_ASSERT(resMolSuppl->getNumConjGrps() == 0);
delete resMolSuppl;
delete mol;
mol = SmilesToMol("NC(=[NH2+])c1ccc(cc1)C(=O)[O-]");
int totalFormalCharge = getTotalFormalCharge(mol);
resMolSuppl = new ResonanceMolSupplier((ROMol &)*mol);
TEST_ASSERT(!resMolSuppl->getIsEnumerated());
TEST_ASSERT(resMolSuppl->length() == 4);
TEST_ASSERT(resMolSuppl->getIsEnumerated());
delete resMolSuppl;
resMolSuppl = new ResonanceMolSupplier((ROMol &)*mol);
TEST_ASSERT(!resMolSuppl->getIsEnumerated());
resMolSuppl->enumerate();
TEST_ASSERT(resMolSuppl->getIsEnumerated());
TEST_ASSERT(((*resMolSuppl)[0]->getBondBetweenAtoms(0, 1)->getBondType() !=
(*resMolSuppl)[1]->getBondBetweenAtoms(0, 1)->getBondType()) ||
((*resMolSuppl)[0]->getBondBetweenAtoms(9, 10)->getBondType() !=
(*resMolSuppl)[1]->getBondBetweenAtoms(9, 10)->getBondType()));
delete resMolSuppl;
resMolSuppl =
new ResonanceMolSupplier((ROMol &)*mol, ResonanceMolSupplier::KEKULE_ALL);
TEST_ASSERT(resMolSuppl->length() == 8);
std::set<Bond::BondType> bondTypeSet;
// check that we actually have two alternate Kekule structures
bondTypeSet.insert(
(*resMolSuppl)[0]->getBondBetweenAtoms(3, 4)->getBondType());
bondTypeSet.insert(
(*resMolSuppl)[1]->getBondBetweenAtoms(3, 4)->getBondType());
TEST_ASSERT(bondTypeSet.size() == 2);
bondTypeSet.clear();
delete resMolSuppl;
resMolSuppl = new ResonanceMolSupplier(
(ROMol &)*mol, ResonanceMolSupplier::ALLOW_INCOMPLETE_OCTETS |
ResonanceMolSupplier::UNCONSTRAINED_CATIONS |
ResonanceMolSupplier::UNCONSTRAINED_ANIONS);
TEST_ASSERT(resMolSuppl->length() == 32);
for (unsigned int i = 0; i < resMolSuppl->length(); ++i) {
ROMol *resMol = (*resMolSuppl)[i];
TEST_ASSERT(getTotalFormalCharge(resMol) == totalFormalCharge);
delete resMol;
}
while (!resMolSuppl->atEnd()) {
ROMol *resMol = resMolSuppl->next();
TEST_ASSERT(getTotalFormalCharge(resMol) == totalFormalCharge);
delete resMol;
}
resMolSuppl->reset();
cmpFormalChargeBondOrder((*resMolSuppl)[0], resMolSuppl->next());
resMolSuppl->moveTo(12);
cmpFormalChargeBondOrder((*resMolSuppl)[12], resMolSuppl->next());
delete resMolSuppl;
resMolSuppl = new ResonanceMolSupplier(
(ROMol &)*mol, ResonanceMolSupplier::ALLOW_INCOMPLETE_OCTETS |
ResonanceMolSupplier::UNCONSTRAINED_CATIONS |
ResonanceMolSupplier::UNCONSTRAINED_ANIONS,
10);
TEST_ASSERT(resMolSuppl->length() == 10);
delete resMolSuppl;
resMolSuppl = new ResonanceMolSupplier(
(ROMol &)*mol, ResonanceMolSupplier::ALLOW_INCOMPLETE_OCTETS |
ResonanceMolSupplier::UNCONSTRAINED_CATIONS |
ResonanceMolSupplier::UNCONSTRAINED_ANIONS,
0);
TEST_ASSERT(resMolSuppl->length() == 0);
delete resMolSuppl;
}
void testBenzylCation() {
BOOST_LOG(rdInfoLog) << "-----------------------\n"
<< "testBenzylCation" << std::endl;
RWMol *mol = SmilesToMol("[CH2+]c1ccccc1");
ResonanceMolSupplier *resMolSuppl;
std::map<unsigned int, int> fcMap;
resMolSuppl = new ResonanceMolSupplier((ROMol &)*mol);
TEST_ASSERT(resMolSuppl->length() == 4);
while (!resMolSuppl->atEnd()) {
ROMol *resMol = resMolSuppl->next();
addFormalChargeIndices(resMol, fcMap);
delete resMol;
}
unsigned int indices[] = {0, 2, 4, 6};
for (unsigned int &idx : indices) {
TEST_ASSERT(fcMap.find(idx) != fcMap.end());
TEST_ASSERT(fcMap[idx] == 1);
}
delete resMolSuppl;
}
void testBenzylAnion() {
BOOST_LOG(rdInfoLog) << "-----------------------\n"
<< "testBenzylAnion" << std::endl;
RWMol *mol = SmilesToMol("[CH2-]c1ccccc1");
ResonanceMolSupplier *resMolSuppl;
std::map<unsigned int, int> fcMap;
resMolSuppl = new ResonanceMolSupplier((ROMol &)*mol);
TEST_ASSERT(resMolSuppl->length() == 4);
while (!resMolSuppl->atEnd()) {
ROMol *resMol = resMolSuppl->next();
addFormalChargeIndices(resMol, fcMap);
delete resMol;
}
unsigned int indices[] = {0, 2, 4, 6};
for (unsigned int &idx : indices) {
TEST_ASSERT(fcMap.find(idx) != fcMap.end());
TEST_ASSERT(fcMap[idx] == -1);
}
delete resMolSuppl;
}
void testButadiene() {
BOOST_LOG(rdInfoLog) << "-----------------------\n"
<< "testButadiene" << std::endl;
RWMol *mol = SmilesToMol("C=CC=C");
ResonanceMolSupplier *resMolSuppl;
resMolSuppl = new ResonanceMolSupplier((ROMol &)*mol);
TEST_ASSERT(resMolSuppl->length() == 1);
delete resMolSuppl;
resMolSuppl = new ResonanceMolSupplier(
(ROMol &)*mol, ResonanceMolSupplier::ALLOW_INCOMPLETE_OCTETS |
ResonanceMolSupplier::UNCONSTRAINED_CATIONS |
ResonanceMolSupplier::UNCONSTRAINED_ANIONS |
ResonanceMolSupplier::ALLOW_CHARGE_SEPARATION);
TEST_ASSERT(resMolSuppl->length() == 3);
std::map<unsigned int, int> fcMap;
while (!resMolSuppl->atEnd()) {
ROMol *resMol = resMolSuppl->next();
addFormalChargeIndices(resMol, fcMap);
delete resMol;
}
unsigned int indices[] = {0, 3};
for (unsigned int &idx : indices) {
TEST_ASSERT(fcMap.find(idx) != fcMap.end());
TEST_ASSERT(fcMap[idx] == 0);
}
delete resMolSuppl;
}
void testZwitterion() {
BOOST_LOG(rdInfoLog) << "-----------------------\n"
<< "testZwitterion" << std::endl;
RWMol *mol = SmilesToMol("NC=CC=CC=O");
ResonanceMolSupplier *resMolSuppl;
resMolSuppl = new ResonanceMolSupplier((ROMol &)*mol);
TEST_ASSERT(resMolSuppl->length() == 1);
ROMol *mol0 = (*resMolSuppl)[0];
TEST_ASSERT(mol0->getAtomWithIdx(0)->getFormalCharge() == 0);
TEST_ASSERT(mol0->getAtomWithIdx(6)->getFormalCharge() == 0);
delete mol0;
delete resMolSuppl;
resMolSuppl = new ResonanceMolSupplier(
(ROMol &)*mol, ResonanceMolSupplier::ALLOW_CHARGE_SEPARATION);
TEST_ASSERT(resMolSuppl->length() == 2);
mol0 = (*resMolSuppl)[0];
ROMol *mol1 = (*resMolSuppl)[1];
TEST_ASSERT(mol1->getAtomWithIdx(0)->getFormalCharge() == 1);
TEST_ASSERT(mol1->getAtomWithIdx(6)->getFormalCharge() == -1);
delete mol1;
delete resMolSuppl;
}
void testChargeMigration() {
BOOST_LOG(rdInfoLog) << "-----------------------\n"
<< "testChargeMigration" << std::endl;
RWMol *mol = SmilesToMol("C=CC=CC=C[CH2+]");
ResonanceMolSupplier *resMolSuppl;
resMolSuppl = new ResonanceMolSupplier((ROMol &)*mol);
TEST_ASSERT(resMolSuppl->length() == 4);
std::map<unsigned int, int> fcMap;
while (!resMolSuppl->atEnd()) {
ROMol *resMol = resMolSuppl->next();
addFormalChargeIndices(resMol, fcMap);
delete resMol;
}
unsigned int indices[] = {0, 2, 4, 6};
for (unsigned int &idx : indices) {
TEST_ASSERT(fcMap.find(idx) != fcMap.end());
TEST_ASSERT(fcMap[idx] == 1);
}
delete resMolSuppl;
}
void testChargeSeparation1() {
BOOST_LOG(rdInfoLog) << "-----------------------\n"
<< "testChargeSeparation1" << std::endl;
RWMol *mol = SmilesToMol("[NH2+]=C1C=CC(C=C1)=CN=CN");
ResonanceMolSupplier *resMolSuppl;
resMolSuppl = new ResonanceMolSupplier((ROMol &)*mol);
TEST_ASSERT(resMolSuppl->length() == 3);
std::map<unsigned int, int> fcMap;
for (unsigned int i = 0; i < 3; ++i) {
ROMol *resMol = (*resMolSuppl)[i];
addFormalChargeIndices(resMol, fcMap);
delete resMol;
}
unsigned int indices[] = {0, 8, 10};
for (unsigned int &idx : indices) {
TEST_ASSERT(fcMap.find(idx) != fcMap.end());
TEST_ASSERT(fcMap[idx] == 1);
}
delete resMolSuppl;
resMolSuppl = new ResonanceMolSupplier(
(ROMol &)*mol, ResonanceMolSupplier::ALLOW_CHARGE_SEPARATION);
TEST_ASSERT(resMolSuppl->length() == 4);
resMolSuppl->moveTo(3);
ROMol *resMol = resMolSuppl->next();
TEST_ASSERT(resMol->getAtomWithIdx(0)->getFormalCharge() == 1);
TEST_ASSERT(resMol->getAtomWithIdx(10)->getFormalCharge() == 1);
TEST_ASSERT(resMol->getAtomWithIdx(8)->getFormalCharge() == -1);
delete resMol;
delete resMolSuppl;
}
void testChargeSeparation2() {
BOOST_LOG(rdInfoLog) << "-----------------------\n"
<< "testChargeSeparation2" << std::endl;
RWMol *mol = SmilesToMol("NC(C(=O)[O-])=CC=CC=O");
ResonanceMolSupplier *resMolSuppl;
resMolSuppl = new ResonanceMolSupplier((ROMol &)*mol);
TEST_ASSERT(resMolSuppl->length() == 2);
delete resMolSuppl;
resMolSuppl = new ResonanceMolSupplier(
(ROMol &)*mol, ResonanceMolSupplier::ALLOW_CHARGE_SEPARATION);
TEST_ASSERT(resMolSuppl->length() == 8);
// less charge separation in the first 2,
// more charge separation in the last 6
// the last 4 feature carbanions
std::map<unsigned int, int> fcMap;
for (unsigned int i = 0; i < 2; ++i) {
ROMol *resMol = (*resMolSuppl)[i];
addFormalChargeIndices(resMol, fcMap);
TEST_ASSERT(fcMap.size() == 1);
fcMap.clear();
delete resMol;
}
for (unsigned int i = 2; i < 8; ++i) {
ROMol *resMol = (*resMolSuppl)[i];
addFormalChargeIndices(resMol, fcMap);
TEST_ASSERT(fcMap.size() == 3);
fcMap.clear();
delete resMol;
}
for (unsigned int i = 0; i < 4; ++i) {
const ROMol *resMol = (*resMolSuppl)[i];
bool haveCarbanion = false;
for (ROMol::ConstAtomIterator it = resMol->beginAtoms();
it != resMol->endAtoms(); ++it) {
if (((*it)->getAtomicNum() == 6) && ((*it)->getFormalCharge() == -1))
haveCarbanion = true;
}
TEST_ASSERT(!haveCarbanion);
delete resMol;
}
for (unsigned int i = 4; i < 8; ++i) {
const ROMol *resMol = (*resMolSuppl)[i];
bool haveCarbanion = false;
for (ROMol::ConstAtomIterator it = resMol->beginAtoms();
it != resMol->endAtoms(); ++it) {
if (((*it)->getAtomicNum() == 6) && ((*it)->getFormalCharge() == -1))
haveCarbanion = true;
}
TEST_ASSERT(haveCarbanion);
delete resMol;
}
delete resMolSuppl;
}
void testMultipleConjGroups1() {
BOOST_LOG(rdInfoLog) << "-----------------------\n"
<< "testMultipleConjGroups1" << std::endl;
RWMol *mol = SmilesToMol("NC(C(=O)[O-])=CC=C(CCC(=O)[O-])C=O");
ResonanceMolSupplier *resMolSuppl;
resMolSuppl = new ResonanceMolSupplier(
(ROMol &)*mol, ResonanceMolSupplier::ALLOW_CHARGE_SEPARATION);
TEST_ASSERT(resMolSuppl->length() == 16);
for (unsigned int i = 0; i < 8; ++i) {
const ROMol *resMol = (*resMolSuppl)[i];
bool haveCarbanion = false;
for (ROMol::ConstAtomIterator it = resMol->beginAtoms();
it != resMol->endAtoms(); ++it) {
if (((*it)->getAtomicNum() == 6) && ((*it)->getFormalCharge() == -1))
haveCarbanion = true;
}
TEST_ASSERT(!haveCarbanion);
delete resMol;
}
for (unsigned int i = 8; i < 16; ++i) {
const ROMol *resMol = (*resMolSuppl)[i];
bool haveCarbanion = false;
for (ROMol::ConstAtomIterator it = resMol->beginAtoms();
it != resMol->endAtoms(); ++it) {
if (((*it)->getAtomicNum() == 6) && ((*it)->getFormalCharge() == -1))
haveCarbanion = true;
}
TEST_ASSERT(haveCarbanion);
delete resMol;
}
delete resMolSuppl;
resMolSuppl = new ResonanceMolSupplier(
(ROMol &)*mol, ResonanceMolSupplier::ALLOW_CHARGE_SEPARATION, 8);
TEST_ASSERT(resMolSuppl->length() == 8);
for (unsigned int i = 0; i < 8; ++i) {
const ROMol *resMol = (*resMolSuppl)[i];
bool haveCarbanion = false;
for (ROMol::ConstAtomIterator it = resMol->beginAtoms();
it != resMol->endAtoms(); ++it) {
if (((*it)->getAtomicNum() == 6) && ((*it)->getFormalCharge() == -1))
haveCarbanion = true;
}
TEST_ASSERT(!haveCarbanion);
delete resMol;
}
delete resMolSuppl;
}
void testMultipleConjGroups2() {
// if breadth-first resonance structure enumeration works properly
// all N(2-) should be at the end of the supplier
BOOST_LOG(rdInfoLog) << "-----------------------\n"
<< "testMultipleConjGroups2" << std::endl;
RWMol *mol = SmilesToMol("[N-]=[N+]=NCN=[N+]=[N-]");
ResonanceMolSupplier *resMolSuppl;
resMolSuppl = new ResonanceMolSupplier((ROMol &)*mol);
TEST_ASSERT(resMolSuppl->length() == 9);
bool haveFirstDoubleNeg = false;
for (unsigned int i = 0; i < resMolSuppl->length(); ++i) {
const ROMol *resMol = (*resMolSuppl)[i];
bool haveDoubleNeg = false;
for (ROMol::ConstAtomIterator it = resMol->beginAtoms();
it != resMol->endAtoms(); ++it) {
if (((*it)->getAtomicNum() == 7) && ((*it)->getFormalCharge() == -2))
haveDoubleNeg = true;
}
if (!haveFirstDoubleNeg && haveDoubleNeg) haveFirstDoubleNeg = true;
TEST_ASSERT(!haveFirstDoubleNeg || (haveFirstDoubleNeg && haveDoubleNeg));
delete resMol;
}
delete resMolSuppl;
}
void testDimethylMalonate() {
// carbanion should be last
BOOST_LOG(rdInfoLog) << "-----------------------\n"
<< "testDimethylMalonate" << std::endl;
RWMol *mol = SmilesToMol("COC(=O)[CH-]C(=O)OC");
ResonanceMolSupplier *resMolSuppl;
resMolSuppl = new ResonanceMolSupplier((ROMol &)*mol);
TEST_ASSERT(resMolSuppl->length() == 3);
for (unsigned int i = 0; i < 3; ++i) {
const ROMol *resMol = (*resMolSuppl)[i];
bool haveCarbanion = false;
for (ROMol::ConstAtomIterator it = resMol->beginAtoms();
it != resMol->endAtoms(); ++it) {
if (((*it)->getAtomicNum() == 6) && ((*it)->getFormalCharge() == -1))
haveCarbanion = true;
}
TEST_ASSERT(((i < 2) && !haveCarbanion) || ((i == 2) && haveCarbanion));
delete resMol;
}
delete resMolSuppl;
}
void testMethylAcetate() {
// cation on oxygen should appear only when UNCONSTRAINED_CATIONS
// and ALLOW_CHARGE_SEPARATION are set
BOOST_LOG(rdInfoLog) << "-----------------------\n"
<< "testMethylAcetate" << std::endl;
RWMol *mol = SmilesToMol("CC(=O)OC");
ResonanceMolSupplier *resMolSuppl;
resMolSuppl = new ResonanceMolSupplier((ROMol &)*mol);
TEST_ASSERT(resMolSuppl->length() == 1);
const ROMol *resMol = (*resMolSuppl)[0];
bool haveCation = false;
for (ROMol::ConstAtomIterator it = resMol->beginAtoms();
it != resMol->endAtoms(); ++it) {
if (((*it)->getAtomicNum() == 8) && ((*it)->getFormalCharge() == 1))
haveCation = true;
}
delete resMol;
TEST_ASSERT(!haveCation);
delete resMolSuppl;
resMolSuppl = new ResonanceMolSupplier(
(ROMol &)*mol, ResonanceMolSupplier::ALLOW_CHARGE_SEPARATION |
ResonanceMolSupplier::UNCONSTRAINED_CATIONS);
TEST_ASSERT(resMolSuppl->length() == 2);
for (unsigned int i = 0; i < 2; ++i) {
const ROMol *resMol = (*resMolSuppl)[i];
bool haveCation = false;
for (ROMol::ConstAtomIterator it = resMol->beginAtoms();
it != resMol->endAtoms(); ++it) {
if (((*it)->getAtomicNum() == 8) && ((*it)->getFormalCharge() == 1))
haveCation = true;
}
TEST_ASSERT(((i == 0) && !haveCation) || ((i == 1) && haveCation));
delete resMol;
}
delete resMolSuppl;
}
void testPyranium2_6dicarboxylate() {
// when there is no alternative cation on elements right of N
// should be accepted even though the total formal charge is not
// positive
BOOST_LOG(rdInfoLog) << "-----------------------\n"
<< "testPyranium2_6dicarboxylate" << std::endl;
RWMol *mol = SmilesToMol("[o+]1c(C(=O)[O-])cccc1C(=O)[O-]");
ResonanceMolSupplier *resMolSuppl;
resMolSuppl = new ResonanceMolSupplier((ROMol &)*mol);
TEST_ASSERT(resMolSuppl->length() == 4);
for (unsigned int i = 0; i < 4; ++i) {
const ROMol *resMol = (*resMolSuppl)[i];
TEST_ASSERT(resMol->getAtomWithIdx(0)->getFormalCharge() == 1);
delete resMol;
}
delete resMolSuppl;
}
void testSubstructMatchAcetate() {
BOOST_LOG(rdInfoLog) << "-----------------------\n"
<< "testSubstructMatchAcetate" << std::endl;
RWMol *mol = SmilesToMol("CC(=O)[O-]");
RWMol *query = SmartsToMol("C(=O)[O-]");
ResonanceMolSupplier *resMolSuppl;
unsigned int n;
resMolSuppl = new ResonanceMolSupplier((ROMol &)*mol);
std::vector<MatchVectType> matchVect;
n = SubstructMatch(*mol, *query, matchVect, false, true, false, false);
TEST_ASSERT(n == 1);
matchVect.clear();
n = SubstructMatch(*resMolSuppl, *query, matchVect, false, true, false,
false);
TEST_ASSERT(n == 2);
delete mol;
delete query;
delete resMolSuppl;
}
void testSubstructMatchDMAP() {
BOOST_LOG(rdInfoLog) << "-----------------------\n"
<< "testSubstructMatchDMAP" << std::endl;
RWMol *mol = SmilesToMol("C(C)Nc1cc[nH+]cc1");
RWMol *query = SmartsToMol("[#7+]");
ResonanceMolSupplier *resMolSuppl;
unsigned int n;
MatchVectType p;
resMolSuppl = new ResonanceMolSupplier((ROMol &)*mol);
std::vector<MatchVectType> matchVect;
n = SubstructMatch(*mol, *query, matchVect, false, true, false, false);
TEST_ASSERT((n == 1) && (matchVect.size() == 1));
p = matchVect[0];
TEST_ASSERT((p.size() == 1) && (p[0].second == 6));
matchVect.clear();
n = SubstructMatch(*resMolSuppl, *query, matchVect, false, true, false,
false);
TEST_ASSERT((n == 2) && (matchVect.size() == 2));
std::vector<unsigned int> v;
p = matchVect[0];
TEST_ASSERT(p.size() == 1);
v.push_back(p[0].second);
p = matchVect[1];
TEST_ASSERT(p.size() == 1);
v.push_back(p[0].second);
std::sort(v.begin(), v.end());
TEST_ASSERT(v[0] == 2);
TEST_ASSERT(v[1] == 6);
delete mol;
delete query;
delete resMolSuppl;
}
void setResidueFormalCharge(RWMol *mol, std::vector<RWMol *> &res, int fc) {
for (std::vector<RWMol *>::const_iterator it = res.begin(); it != res.end();
++it) {
std::vector<MatchVectType> matchVect;
SubstructMatch(*mol, *(*it), matchVect);
for (std::vector<MatchVectType>::const_iterator it = matchVect.begin();
it != matchVect.end(); ++it)
mol->getAtomWithIdx((*it).back().second)->setFormalCharge(fc);
}
}
void getBtVectVect(ResonanceMolSupplier *resMolSuppl,
std::vector<std::vector<unsigned int>> &btVect2) {
while (!resMolSuppl->atEnd()) {
ROMol *resMol = resMolSuppl->next();
std::vector<unsigned int> bt;
bt.reserve(resMol->getNumBonds());
for (ROMol::BondIterator bi = resMol->beginBonds();
bi != resMol->endBonds(); ++bi)
bt.push_back(static_cast<unsigned int>((*bi)->getBondTypeAsDouble()));
btVect2.push_back(bt);
delete resMol;
}
for (unsigned int i = 0; i < btVect2.size(); ++i) {
bool same = true;
for (unsigned int j = 0; same && (j < btVect2[i].size()); ++j) {
if (!i) continue;
if (same) same = (btVect2[i][j] == btVect2[i - 1][j]);
}
if (i) TEST_ASSERT(!same);
}
}
void testCrambin() {
BOOST_LOG(rdInfoLog) << "-----------------------\n"
<< "testCrambin" << std::endl;
std::string pathName = getenv("RDBASE");
pathName += "/Code/GraphMol/FileParsers/test_data/1CRN.pdb";
RWMol *crambin = PDBFileToMol(pathName);
TEST_ASSERT(crambin);
RWMol *query;
unsigned int n;
std::vector<RWMol *> res;
// protonate NH2
query = SmartsToMol("[Nh2][Ch;Ch2]");
TEST_ASSERT(query);
res.push_back(query);
// protonate Arg
query = SmartsToMol("[Nh][C]([Nh2])=[Nh]");
TEST_ASSERT(query);
res.push_back(query);
setResidueFormalCharge(crambin, res, 1);
for (std::vector<RWMol *>::const_iterator it = res.begin(); it != res.end();
++it)
delete *it;
res.clear();
// deprotonate COOH
query = SmartsToMol("C(=O)[Oh]");
TEST_ASSERT(query);
res.push_back(query);
setResidueFormalCharge(crambin, res, -1);
for (std::vector<RWMol *>::const_iterator it = res.begin(); it != res.end();
++it)
delete *it;
auto *resMolSupplST = new ResonanceMolSupplier((ROMol &)*crambin);
TEST_ASSERT(resMolSupplST);
// crambin has 2 Arg (3 resonance structures each); 1 Asp, 1 Glu
// and 1 terminal COO- (2 resonance structures each)
// so possible resonance structures are 3^2 * 2^3 = 72
TEST_ASSERT(resMolSupplST->length() == 72);
TEST_ASSERT(resMolSupplST->getNumConjGrps() == 56);
RWMol *carboxylateQuery = SmartsToMol("C(=O)[O-]");
RWMol *guanidiniumQuery = SmartsToMol("NC(=[NH2+])N");
std::vector<MatchVectType> matchVect;
n = SubstructMatch(*crambin, *carboxylateQuery, matchVect, false, true, false,
false, 1000);
TEST_ASSERT(n == 3);
n = SubstructMatch(*crambin, *carboxylateQuery, matchVect, true, true, false,
false, 1000);
TEST_ASSERT(n == 3);
n = SubstructMatch(*crambin, *guanidiniumQuery, matchVect, false, true, false,
false, 1000);
TEST_ASSERT(n == 0);
n = SubstructMatch(*crambin, *guanidiniumQuery, matchVect, true, true, false,
false, 1000);
TEST_ASSERT(n == 0);
n = SubstructMatch(*resMolSupplST, *carboxylateQuery, matchVect, false, true,
false, false, 1000);
TEST_ASSERT(n == 6);
n = SubstructMatch(*resMolSupplST, *carboxylateQuery, matchVect, true, true,
false, false, 1000);
TEST_ASSERT(n == 3);
n = SubstructMatch(*resMolSupplST, *guanidiniumQuery, matchVect, false, true,
false, false, 1000);
TEST_ASSERT(n == 8);
n = SubstructMatch(*resMolSupplST, *guanidiniumQuery, matchVect, true, true,
false, false, 1000);
TEST_ASSERT(n == 2);
#ifdef RDK_TEST_MULTITHREADED
std::vector<std::vector<unsigned int>> btVect2ST;
getBtVectVect(resMolSupplST, btVect2ST);
auto *resMolSupplMT = new ResonanceMolSupplier((ROMol &)*crambin, 0, 1000);
TEST_ASSERT(resMolSupplMT);
resMolSupplMT->setNumThreads(0);
TEST_ASSERT(resMolSupplST->length() == resMolSupplMT->length());
std::vector<std::vector<unsigned int>> btVect2MT;
getBtVectVect(resMolSupplMT, btVect2MT);
TEST_ASSERT(btVect2ST.size() == btVect2MT.size());
for (unsigned int i = 0; i < btVect2ST.size(); ++i) {
for (unsigned int j = 0; j < btVect2ST[i].size(); ++j)
TEST_ASSERT(btVect2ST[i][j] == btVect2MT[i][j]);
}
ResonanceMolSupplier *ptr[2] = {resMolSupplST, resMolSupplMT};
for (auto &i : ptr) {
n = SubstructMatch(*i, *carboxylateQuery, matchVect, false, true, false,
false, 1000, 0);
TEST_ASSERT(n == 6);
n = SubstructMatch(*i, *carboxylateQuery, matchVect, true, true, false,
false, 1000, 0);
TEST_ASSERT(n == 3);
n = SubstructMatch(*i, *guanidiniumQuery, matchVect, false, true, false,
false, 1000, 0);
TEST_ASSERT(n == 8);
n = SubstructMatch(*i, *guanidiniumQuery, matchVect, true, true, false,
false, 1000, 0);
TEST_ASSERT(n == 2);
}
delete resMolSupplMT;
#endif
delete resMolSupplST;
delete carboxylateQuery;
delete guanidiniumQuery;
delete crambin;
}
void testGitHub1166() {
BOOST_LOG(rdInfoLog) << "-----------------------\n"
<< "testGitHub1166" << std::endl;
RWMol *mol = SmilesToMol("NC(=[NH2+])c1ccc(cc1)C(=O)[O-]");
auto *resMolSuppl = new ResonanceMolSupplier(
static_cast<ROMol &>(*mol), ResonanceMolSupplier::KEKULE_ALL);
TEST_ASSERT(resMolSuppl->length() == 8);
// check that formal charges on odd indices are in the same position
// as on even indices
for (unsigned int i = 0; i < resMolSuppl->length(); i += 2) {
TEST_ASSERT((*resMolSuppl)[i]->getNumAtoms() ==
(*resMolSuppl)[i + 1]->getNumAtoms());
for (unsigned int atomIdx = 0; atomIdx < (*resMolSuppl)[i]->getNumAtoms();
++atomIdx)
TEST_ASSERT(
(*resMolSuppl)[i]->getAtomWithIdx(atomIdx)->getFormalCharge() ==
(*resMolSuppl)[i + 1]->getAtomWithIdx(atomIdx)->getFormalCharge());
// check that bond orders are alternate on aromatic bonds between
// structures on odd indices and structures on even indices
TEST_ASSERT((*resMolSuppl)[i]->getNumBonds() ==
(*resMolSuppl)[i + 1]->getNumBonds());
for (unsigned int bondIdx = 0; bondIdx < (*resMolSuppl)[i]->getNumBonds();
++bondIdx)
TEST_ASSERT(
(!(*resMolSuppl)[i]->getBondWithIdx(bondIdx)->getIsAromatic() &&
!(*resMolSuppl)[i + 1]->getBondWithIdx(bondIdx)->getIsAromatic() &&
((*resMolSuppl)[i]->getBondWithIdx(bondIdx)->getBondType() ==
(*resMolSuppl)[i + 1]->getBondWithIdx(bondIdx)->getBondType())) ||
((*resMolSuppl)[i]->getBondWithIdx(bondIdx)->getIsAromatic() &&
(*resMolSuppl)[i + 1]->getBondWithIdx(bondIdx)->getIsAromatic() &&
(static_cast<int>((*resMolSuppl)[i]
->getBondWithIdx(bondIdx)
->getBondTypeAsDouble() +
(*resMolSuppl)[i + 1]
->getBondWithIdx(bondIdx)
->getBondTypeAsDouble()) == 3)));
}
delete resMolSuppl;
}
int main() {
RDLog::InitLogs();
#if 1
testBaseFunctionality();
testBenzylCation();
testBenzylAnion();
testButadiene();
testZwitterion();
testChargeMigration();
testChargeSeparation1();
testChargeSeparation2();
testMultipleConjGroups1();
testMultipleConjGroups2();
testDimethylMalonate();
testMethylAcetate();
testPyranium2_6dicarboxylate();
testSubstructMatchAcetate();
testSubstructMatchDMAP();
testCrambin();
testGitHub1166();
#endif
return 0;
}
|