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 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110
|
"""Test OpenBabel Python bindings
On Windows or Linux, you can run these tests at the commandline
in the build folder with:
"C:\Program Files\CMake 2.6\bin\ctest.exe" -C CTestTestfile.cmake
-R pybindtest -VV
The runtime directory is ${CMAKE_SRC_DIR}/test.
You could also "chdir" into build and run the test file directly:
python ../../test/testbindings.py
In this latter case, you will need to set the environment variables
PYTHONPATH, LD_LIBRARY_PATH, BABEL_LIBDIR and BABEL_DATADIR beforehand.
The CMake script does this automatically.
In both cases, the test file is run directly from the source folder,
and so you can quickly develop the tests and try them out.
"""
import os
import sys
import unittest
import itertools
here = sys.path[0]
iswin = sys.platform.startswith("win")
try:
from openbabel import openbabel as ob
except ImportError:
ob = None
try:
from openbabel import pybel
except ImportError:
pybel = None
class PythonBindings(unittest.TestCase):
def setUp(self):
self.assertTrue(ob is not None, "Failed to import the openbabel module")
class TestPythonBindings(PythonBindings):
def testSimple(self):
mol = ob.OBMol()
conv = ob.OBConversion()
conv.SetInFormat("smi")
conv.ReadString(mol, "CC(=O)Cl")
self.assertAlmostEqual(mol.GetMolWt(), 78.5, 1)
class PybelWrapper(PythonBindings):
def testDummy(self):
self.assertTrue(pybel is not None, "Failed to import the Pybel module")
class TestSuite(PythonBindings):
def testReadsLowerCaseInTurbmol(self):
"""Support lowercase when reading Turbomole. Fix for #2063"""
tmol = """$coord
2.02871026746136 0.00016096463521 0.09107555338913 c
4.89930048862534 0.04854048717752 0.11762901668325 c
5.90748259036722 2.39968480185142 1.42109501042332 c
1.34938005428171 -1.70839952555376 -0.85607794562344 h
1.26886043300105 1.63876093409995 -0.91749501051641 h
1.26913011943130 0.01286165737104 2.01525659069294 h
5.60784060607910 -0.01912944162451 -1.82662623368806 h
5.60811561474418 -1.63627235546083 1.09011360983431 h
5.27020211768512 4.11415935313881 0.45463376946747 h
7.97573431608248 2.39090324576822 1.41600146807434 h
5.27052201944755 2.48814711866854 3.38732271725103 h
$end"""
inchikey = pybel.readstring("tmol", tmol).write("inchikey").rstrip()
self.assertEqual("ATUOYWHBWRKTHZ-UHFFFAOYSA-N", inchikey)
def testSmartsSupportsHashZero(self):
"""Ensure that we can match asterisks in SMILES with SMARTS"""
mol = pybel.readstring("smi", "*O")
# The following used to raise an OSError (SMARTS parse failure)
matches = pybel.Smarts("[#0]O").findall(mol)
self.assertEqual(matches, [(1, 2)])
def testInChIIsotopes(self):
"""Ensure that we correctly set and read isotopes in InChIs"""
with open(os.path.join(here, "inchi", "inchi_isotopes.txt")) as inp:
for line in inp:
if line.startswith("#"): continue
smi, inchi = line.rstrip().split("\t")
minchi = pybel.readstring("smi", smi).write("inchi").rstrip()
self.assertEqual(minchi, inchi)
msmi = pybel.readstring("inchi", minchi).write("smi").rstrip()
self.assertEqual(msmi, smi)
def testWLN(self):
"""Test some WLN conversions"""
data = [ # Taken from Wikipedia
("1H", "C"),
("2H", "CC"),
("3H", "CCC"),
("1Y", "CC(C)C"),
("1X", "CC(C)(C)C"),
("Q1", "CO"),
("1R", "c1ccccc1C"),
("1V1", "CC(=O)C"),
("2O2", "CCOCC"),
("1VR", "CC(=O)c1ccccc1"),
("ZR CVQ", "c1ccc(N)cc1C(=O)O"),
("QVYZ1R", "NC(Cc1ccccc1)C(=O)O"),
("QX2&2&2", "CCC(O)(CC)CC"),
("QVY3&1VQ", "OC(=O)C(CCC)CC(=O)O"),
("L66J BMR& DSWQ IN1&1", "CN(C=1C=C2C(=CC(=CC2=CC1)S(=O)(=O)O)NC1=CC=CC=C1)C"),
# The following is not supported
# ("QVR-/G 5", "c1(Cl)c(Cl)c(Cl)c(Cl)c(Cl)c1C(=O)O"),
# The following are from:
# https://www.nextmovesoftware.com/posters/Sayle_WisswesserLineNotation_BioIT_201904.pdf
("WN3", "[O-][N+](=O)CCC"),
("G1UU1G", "ClC#CCl"),
("VH3", "O=CCCC"),
("NCCN", "N#CC#N"),
("ZYZUM", "NC(=N)N"),
("QY", "CC(C)O"),
("OV1 &-NA-", "CC(=O)[O-].[Na+]"),
("RM1R", "c1ccccc1NCc2ccccc2"),
("QVR BNUNR DN1&1", "OC(=O)c1ccccc1N=Nc2ccc(cc2)N(C)C"),
("L6TJ A- AL6TJ AVO2N2&2 &GH",
"CCN(CC)CCOC(=O)C1(CCCCC1)C2CCCCC2.Cl"),
("T56 BMJ B D- DT6N CNJ BMR BO1 DN1&2N1&1 EMV1U1",
"Cn1cc(c2c1cccc2)c3ccnc(n3)Nc4cc(c(cc4OC)N(C)CCN(C)C)NC(=O)C=C"),
("T56 AN CN GNJ B- BT5MTJ AV1UU2& DR DVM- BT6NJ&& FZ",
"CC#CC(=O)N1CCCC1c2nc(c3n2ccnc3N)c4ccc(cc4)C(=O)Nc5ccccn5"),
]
for wln, smi in data:
mol = pybel.readstring("wln", wln)
ans = pybel.readstring("smi", smi).write("can")
self.assertEqual(ans, mol.write("can"))
def testAsterisk(self):
"""Ensure that asterisk in SMILES is bracketed when needed
and not otherwise"""
smis = [ # these don't need brackets for *
"*", "*C", "C*C",
# these do need brackets for *
"[*+]", "[*-]", "[*H]",
"*[H]", # this one is written as [*H]
"[1*]", "[*@@](F)(Cl)(Br)I", "[*:1]"]
for smi in smis:
needsbracket = "[" in smi
roundtrip = pybel.readstring("smi", smi).write("smi", opt={"a":True})
hasbracket = "[" in roundtrip
self.assertEqual(hasbracket, needsbracket)
def testAromaticityPreservedOnAtomDeletion(self):
"""Ensure that aromaticity is preserved on atom deleteion"""
mol = pybel.readstring("smi", "c1ccccc1").OBMol
mol.DeleteAtom(mol.GetFirstAtom())
self.assertTrue(mol.GetFirstAtom().IsAromatic())
mol.SetAromaticPerceived(False)
self.assertFalse(mol.GetFirstAtom().IsAromatic())
def testLPStereo(self):
"""Ensure that nitrogen and sulfur can support LP stereo"""
data = ["[N@@](Cl)(Br)I", "Cl[N@@](Br)I",
"[S@@](Cl)(Br)I", "Cl[S@@](Br)I"]
for smi in data:
mol = pybel.readstring("smi", smi)
self.assertTrue(mol.OBMol.GetData(ob.StereoData))
nsmi = mol.write("smi").rstrip()
self.assertEqual(smi, nsmi)
def testSmilesAtomOrder(self):
"""Ensure that SMILES atom order is written correctly"""
data = [("CC", "1 2"),
("O=CCl", "3 2 1")]
for smi, atomorder in data:
mol = pybel.readstring("smi", smi)
mol.write("can", opt={"O": True})
res = mol.data["SMILES Atom Order"]
self.assertEqual(res, atomorder)
mol = pybel.readstring("smi", "CC")
mol.write("can")
self.assertFalse("SMILES Atom Order" in mol.data)
def testECFP(self):
data = [
("CC", 1, 2),
("CCC", 2, 4),
("CC(C)C", 2, 4),
("CC(C)(C)C", 2, 4),
]
for smi, numA, numB in data:
mol = pybel.readstring("smi", smi)
ecfp0 = mol.calcfp("ecfp0").bits
self.assertEqual(len(ecfp0), numA)
ecfp2 = mol.calcfp("ecfp2").bits
self.assertEqual(len(ecfp2), numB)
for bit in ecfp0:
self.assertTrue(bit in ecfp2)
def testOldRingInformationIsWipedOnReperception(self):
"""Previously, the code that identified ring atoms and bonds
did not set the flags of non-ring atoms. This meant that no
matter what you did to the structure, once a ring-atom, always a
ring atom."""
mol = pybel.readstring("smi", "c1ccccc1")
atom = mol.atoms[0].OBAtom
self.assertTrue(atom.IsInRing()) # trigger perception
mol.OBMol.DeleteAtom(mol.atoms[-1].OBAtom)
self.assertFalse(atom.IsInRing()) # this used to return True
def testOBMolSeparatePreservesAromaticity(self):
"""If the original molecule had aromaticity perceived,
then the fragments should also.
"""
smi = "C.c1ccccc1"
# Two passes: One with aromaticity perceived on the orig mol and
# one without
for N in range(2):
obmol = pybel.readstring("smi", smi).OBMol
# Aromaticity is perceived during the last step of reading SMILES
# so let's unset it here for the first pass
if N == 0:
obmol.SetAromaticPerceived(False)
else:
self.assertTrue(obmol.HasAromaticPerceived())
# After separation, is aromaticity the same as the parent?
mols = obmol.Separate()
if N == 0:
self.assertFalse(mols[1].HasAromaticPerceived())
else:
self.assertTrue(mols[1].HasAromaticPerceived())
atom = mols[1].GetAtom(1)
atom.SetImplicitHCount(0) # mess up the structure
if N == 0:
self.assertFalse(atom.IsAromatic())
else:
self.assertTrue(atom.IsAromatic())
def testAtomMapsAfterCopying(self):
"""Copying a molecule should copy the atom maps"""
smi = "C[CH2:2]O[Cl:6]"
obmol = pybel.readstring("smi", smi).OBMol
copy = pybel.ob.OBMol(obmol)
copysmi = pybel.Molecule(copy).write("smi", opt={"a": True})
self.assertEqual(copysmi.rstrip(), smi)
def testAtomMapsAfterAddition(self):
"""Adding two molecules should not mess up the atom maps"""
data = [
("C", "[OH2:2]"),
("[OH2:2]", "C"),
("[CH4:6]", "[OH2:2]"),
("C", "O"),
]
for a, b in data:
mols = [pybel.readstring("smi", x) for x in [a, b]]
mols[0].OBMol += mols[1].OBMol
joined = mols[0].write("smi", opt={"a":True}).rstrip()
self.assertEqual(joined, "%s.%s" % (a, b))
def testAtomMapsAfterDeletion(self):
"""Removing atoms/hydrogens should not mess up the atom maps"""
smis = ["C[NH2:2]", "[CH3:1][NH2:2]"]
for smi in smis:
mol = pybel.readstring("smi", smi)
mol.OBMol.DeleteAtom(mol.OBMol.GetAtom(1))
self.assertEqual(mol.write("smi", opt={"a":True}).rstrip(), "[NH2:2]")
smi = "[H]C[NH:2]"
mol = pybel.readstring("smi", smi)
mol.removeh()
self.assertEqual(mol.write("smi", opt={"a":True}).rstrip(), "C[NH:2]")
def testSquarePlanar(self):
"""Tighten up the parsing of SP stereochemistry in SMILES"""
good = [
"C[S@SP1](Cl)(Br)I",
"C[S@SP2](Cl)(Br)I",
"C[S@SP3](Cl)(Br)I",
]
bad = [ # raises error
"C[S@SP0](Cl)(Br)I",
"C[S@SP4](Cl)(Br)I",
"C[S@@SP1](Cl)(Br)I",
"C[S@SP11](Cl)(Br)I",
"C[S@SO1](Cl)(Br)I",
]
alsobad = [ # just a warning
"C[S@SP1](Cl)(Br)(F)I",
"C[S@SP1](Cl)(Br)(F)1CCCC1",
]
for smi in good:
mol = pybel.readstring("smi", smi)
self.assertTrue(mol.OBMol.GetData(ob.StereoData))
for smi in bad:
self.assertRaises(IOError, pybel.readstring, "smi", smi)
for smi in alsobad:
mol = pybel.readstring("smi", smi)
self.assertTrue(mol.OBMol.GetData(ob.StereoData))
def testFFGradients(self):
"""Support public access of FF gradients"""
xyz = """3
water
O 1.02585 -0.07579 0.08189
H 1.99374 -0.04667 0.04572
H 0.74700 0.50628 -0.64089
"""
mol = pybel.readstring("xyz", xyz)
ff = pybel._forcefields["mmff94"]
self.assertTrue(ff.Setup(mol.OBMol))
energy = ff.Energy() # note: calling GetGradient w/o calling Energy()
# just returns random numbers
for atom in mol.atoms:
# this should throw an AttributeError if not available
grad = ff.GetGradient(atom.OBAtom)
self.assertNotEqual(0.0, grad.GetX())
self.assertNotEqual(0.0, grad.GetY())
self.assertNotEqual(0.0, grad.GetZ())
def testFuzzingTestCases(self):
"""Ensure that fuzzing testcases do not cause crashes"""
# rejected as invalid smiles
smis = [r"\0", "&0", "=&",
"[H][S][S][S@S00]0[S][S@S00H](0[S@S00][S])0n"]
for smi in smis:
self.assertRaises(IOError, pybel.readstring, "smi", smi)
smis = ["c0C[C@H](B)00O0"] # warning and stereo ignored
for smi in smis:
pybel.readstring("smi", smi)
def testNeutralize(self):
"""Test the --neutralize operation and its 'changed' option"""
neutralize = ob.OBOp.FindType("neutralize")
self.assertTrue(neutralize is not None)
data = [("C(=O)[O-]", "C(=O)O"),
("C[NH3+]", "CN"),
("C[N+](=O)[O-]", None),
("c1ccc[n+]([O-])c1", None), # pyridine N-oxide
("CC", None),
]
for i in range(2):
option = "changed" if i==1 else ""
for before, after in data:
ans = before if not after else after
mol = pybel.readstring("smi", before).OBMol
changed = neutralize.Do(mol, option)
result = pybel.Molecule(mol).write("smi").rstrip()
self.assertEqual(ans, result)
if not option:
self.assertEqual(True, changed)
else:
self.assertEqual(True if after else False, changed)
def testImplicitCisDblBond(self):
"""Ensure that dbl bonds in rings of size 8 or less are always
implicitly cis"""
smi = "C1/C=C/C"
for i in range(5): # from size 4 to 8
ringsize = i + 4
ringsmi = smi + "1"
roundtrip = pybel.readstring("smi", ringsmi).write("smi")
self.assertTrue("/" not in roundtrip)
smi += "C"
ringsize = 9
ringsmi = smi + "1"
roundtrip = pybel.readstring("smi", ringsmi).write("smi")
self.assertTrue("/" in roundtrip)
def testKekulizationOfHypervalents(self):
# We should support hypervalent aromatic S and N (the latter
# as we write them)
data = [("Cs1(=O)ccccn1",
"CS1(=O)=NC=CC=C1"),
("O=s1(=O)cccn1",
"O=S1(=O)C=CC=N1"),
("n1c2-c(c3cccc4cccc2c34)n(=N)c2ccccc12",
"n1c2-c(c3cccc4cccc2c34)n(=N)c2ccccc12")]
for inp, out in data:
mol = pybel.readstring("smi", inp)
self.assertEqual(out, mol.write("smi").rstrip())
def testKekulizationOfcn(self):
"""We were previously not reading 'cn' correctly, or at least how
Daylight would"""
mol = pybel.readstring("smi", "cn")
self.assertEqual("C=N", mol.write("smi").rstrip())
def testReadingMassDifferenceInMolfiles(self):
"""Previously we were rounding incorrectly when reading the mass diff"""
template = """
OpenBabel02181811152D
1 0 0 0 0 0 0 0 0 0999 V2000
0.0000 0.0000 0.0000 %2s %2d 0 0 0 0 0 0 0 0 0 0 0
M END
"""
# Positive test cases:
# These are the BIOVIA Draw answers for the first 50 elements for
# a mass diff of 1
answers = [2,5,8,10,12,13,15,17,20,21,24,25,28,29,32,33,36,41,40,41,46,49,52,53,56,57,60,60,65,66,71,74,76,80,81,85,86,89,90,92,94,97,99,102,104,107,109,113,116,120,123]
for idx, answer in enumerate(answers):
elem = idx + 1
molfile = template % (ob.GetSymbol(elem), 1)
mol = pybel.readstring("mol", molfile).OBMol
iso = mol.GetAtom(1).GetIsotope()
self.assertEqual(answer, iso)
# Also test D and T - BIOVIA Draw ignores the mass diff
for elem, answer in zip("DT", [2, 3]):
molfile = template % (elem, 1)
mol = pybel.readstring("mol", molfile).OBMol
iso = mol.GetAtom(1).GetIsotope()
self.assertEqual(answer, iso)
# Negative test cases:
# Test error message for out-of-range values
for value in [5, -4]:
molfile = template % ("C", value)
mol = pybel.readstring("mol", molfile).OBMol
iso = mol.GetAtom(1).GetIsotope()
self.assertEqual(0, iso)
def testInvalidCharsInSmiles(self):
"""Check that inserting a comma in a SMILES string in various positions
does not result in a valid SMILES"""
data = "C, ,C [C,] [,C] [1,C] [C:,1] [C:1,] [CH,] [C+,] [C++,]"
data += " [C@,](Br)(Cl)(I)F C1,CC1 C%1,1CC%11 C%(1,1)CC%11"
data += " C=,C"
for smi in data.split(" "):
self.assertRaises(IOError, pybel.readstring, "smi", smi)
def testOBMolAssignTotalChargeToAtoms(self):
"""Run the test cases described in the source code"""
data = [("[NH4]", +1, "[NH4+]"),
("CC(=O)[O]", -1, "CC(=O)[O-]"),
("C[CH2]", +1, "C[CH2+]"),
("C[CH2]", -1, "C[CH2-]"),
("[NH3]CC(=O)[O]", 0, "[NH3+]CC(=O)[O-]"),
("S(=O)(=O)([O])[O]", -2, "S(=O)(=O)([O-])[O-]"),
("[NH4].[Cl]", 0, "[NH4+].[Cl-]")]
for smi, charge, ans in data:
mol = pybel.readstring("smi", smi)
mol.OBMol.AssignTotalChargeToAtoms(charge)
self.assertEqual(mol.write("smi").rstrip(), ans)
def testParsingChargeInSmiles(self):
"""Be more strict when parsing charges"""
good= [
("[CH3+]", 1),
("[CH2++]", 2),
("[CH2+2]", 2),
("[CH3-]", -1),
("[CH2--]", -2),
("[CH2-2]", -2),
]
bad = [
"[CH2++2]",
"[C+-+-]",
"[C+2+]"
"[CH2--2]",
"[C-+-+]",
"[C-2-]"
]
for smi, charge in good:
mol = pybel.readstring("smi", smi)
self.assertEqual(charge, mol.atoms[0].formalcharge)
for smi in bad:
self.assertRaises(IOError, pybel.readstring, "smi", smi)
def testReadingBenzyne(self):
"""Check that benzyne is read correctly"""
smi = "c1cccc#c1"
mol = pybel.readstring("smi", smi)
self.assertEqual("C1=CC=CC#C1", mol.write("smi").rstrip())
def testSmilesParsingOfAllElements(self):
smi = "*[H][He][Li][Be][B][C][N][O][F][Ne][Na][Mg][Al][Si][P][S][Cl][Ar][K][Ca][Sc][Ti][V][Cr][Mn][Fe][Co][Ni][Cu][Zn][Ga][Ge][As][Se][Br][Kr][Rb][Sr][Y][Zr][Nb][Mo][Tc][Ru][Rh][Pd][Ag][Cd][In][Sn][Sb][Te][I][Xe][Cs][Ba][La][Ce][Pr][Nd][Pm][Sm][Eu][Gd][Tb][Dy][Ho][Er][Tm][Yb][Lu][Hf][Ta][W][Re][Os][Ir][Pt][Au][Hg][Tl][Pb][Bi][Po][At][Rn][Fr][Ra][Ac][Th][Pa][U][Np][Pu][Am][Cm][Bk][Cf][Es][Fm][Md][No][Lr][Rf][Db][Sg][Bh][Hs][Mt][Ds][Rg][Cn][Nh][Fl][Mc][Lv][Ts][Og]"
roundtrip = pybel.readstring("smi", smi).write("smi").rstrip()
self.assertEqual(roundtrip, smi.replace("[O]", "O").replace("[S]", "S"))
# aromatic
# - like C
elems = ["C", "Si", "Ge", "Sn"]
for elem in elems:
mol = pybel.readstring("smi", "c1ccc[%sH]c1" % elem.lower(), opt={"a": True})
self.assertNotEqual(0, mol.OBMol.NumAtoms())
# - like N
elems = ["B", "N", "P", "As", "Sb", "Bi"]
for elem in elems:
mol = pybel.readstring("smi", "c1cc[%sH]c1" % elem.lower())
self.assertNotEqual(0, mol.OBMol.NumAtoms())
# - like O
elems = ["O", "S", "Se", "Te"]
for elem in elems:
mol = pybel.readstring("smi", "c1cc[%s]c1" % elem.lower())
self.assertNotEqual(0, mol.OBMol.NumAtoms())
# Organic subset aromatics
# - like N
elems = ["B", "N", "P"]
for elem in elems:
mol = pybel.readstring("smi", "c1cc%scc1" % elem.lower())
self.assertNotEqual(0, mol.OBMol.NumAtoms())
# - like O
elems = ["O", "S"]
for elem in elems:
mol = pybel.readstring("smi", "c1cc%sc1" % elem.lower())
self.assertNotEqual(0, mol.OBMol.NumAtoms())
def testSmilesParsingAndWritingOfLargeIsotopes(self):
smis = ["[1C]", "[11C]", "[111C]", "[1111C]"]
for smi in smis:
mol = pybel.readstring("smi", smi)
self.assertEqual(mol.write("smi").rstrip(), smi)
self.assertRaises(IOError, pybel.readstring, "smi", "[11111C]")
mol = pybel.readstring("smi", "[C]")
mol.atoms[0].OBAtom.SetIsotope(65535)
self.assertEqual(mol.write("smi").rstrip(), "[C]")
def testOBMolSeparatePreservesAtomOrder(self):
"""Originally Separate() preserved DFS order rather
than atom order"""
# First test
smi = "C123.F3.Cl2.Br1"
mol = pybel.readstring("smi", smi)
atomicnums = [atom.OBAtom.GetAtomicNum() for atom in mol]
mols = mol.OBMol.Separate()
new_atomicnums = [atom.OBAtom.GetAtomicNum() for atom in pybel.Molecule(mols[0])]
for x, y in zip(atomicnums, new_atomicnums):
self.assertEqual(x, y) # check that the atoms have not been permuted
# Second test
xyz = """6
examples/water_dimer.xyz
O 0.12908 -0.26336 0.64798
H 0.89795 0.28805 0.85518
H 0.10833 -0.20468 -0.33302
O 0.31020 0.07569 -2.07524
H 0.64083 -0.57862 -2.71449
H -0.26065 0.64232 -2.62218
"""
mol = pybel.readstring("xyz", xyz)
mols = mol.OBMol.Separate()
allatoms = pybel.Molecule(mols[0]).atoms + pybel.Molecule(mols[1]).atoms
for idx, atom in enumerate(allatoms):
xcoord = atom.OBAtom.GetX()
orig_xcoord = mol.OBMol.GetAtom(idx+1).GetX()
self.assertEqual(xcoord, orig_xcoord)
def testStereoRefsAfterAddingOBMols(self):
"""The stereo ref for an implicit H ref was being set to 0"""
smis = ["C", "[C@@H](Br)(Cl)I"]
mols = [pybel.readstring("smi", smi) for smi in smis]
stereodata = mols[1].OBMol.GetData(ob.StereoData)
config = ob.toTetrahedralStereo(stereodata).GetConfig()
self.assertEqual(config.from_or_towards, 4294967294)
mols[0].OBMol += mols[1].OBMol
self.assertEqual(mols[0].write("smi").rstrip(), ".".join(smis))
stereodata = mols[0].OBMol.GetData(ob.StereoData)
config = ob.toTetrahedralStereo(stereodata).GetConfig()
self.assertEqual(config.from_or_towards, 4294967294)
def testCastToStereoBase(self):
"""Support casting to StereoBase"""
mol = pybel.readstring("smi", "F/C=C/C[C@@H](Cl)Br")
num_cistrans = 0
num_tetra = 0
for genericdata in mol.OBMol.GetAllData(ob.StereoData):
stereodata = ob.toStereoBase(genericdata)
stereotype = stereodata.GetType()
if stereotype == ob.OBStereo.CisTrans:
cistrans = ob.toCisTransStereo(stereodata)
cfg = cistrans.GetConfig()
if cfg.specified:
num_cistrans += 1
elif stereotype == ob.OBStereo.Tetrahedral:
tetra = ob.toTetrahedralStereo(stereodata)
cfg = tetra.GetConfig()
if cfg.specified:
num_tetra += 1
self.assertEqual(1, num_tetra)
self.assertEqual(1, num_cistrans)
def testHydrogenIsotopes(self):
"""Are D and T supported by GetAtomicNum?"""
for symbol in "DT":
self.assertEqual(1, ob.GetAtomicNum(symbol))
def testWhetherAllElementsAreSupported(self):
"""Check whether a new element has been correctly added"""
N = 0
while ob.GetSymbol(N+1):
N += 1
# Is the symbol parsed?
symbol = ob.GetSymbol(N)
self.assertEqual(N, ob.GetAtomicNum(symbol))
self.assertEqual(N, ob.GetAtomicNum(symbol.lower())) # test lowercase version
# Has an exact mass been set?
self.assertNotEqual(0.0, ob.GetExactMass(N))
# Has the symbol been added to the SMILES parser?
numatoms = pybel.readstring("smi", "[%s]" % symbol).OBMol.NumAtoms()
self.assertEqual(numatoms, 1)
# Check whether the element is available as a constant
self.assertEqual(N, getattr(ob, ob.GetName(N)))
self.assertTrue(N > 100)
def testElementsSpecifiedByAtomicNumberInSmiles(self):
smis = [
("[#100]", "[Fm]"),
("[#255]", None),
("[254#255]", None),
("[#6]", -1),
("[#256]", -1),
("[#10a]", -1)
]
for smi, rt in smis:
if rt==-1:
self.assertRaises(IOError, pybel.readstring, "smi", smi)
continue
if rt is None:
rt = smi
nsmi = pybel.readstring("smi", smi).write("smi").rstrip()
self.assertEqual(rt, nsmi)
def testIterators(self):
"""Basic check that at least two iterators are working"""
mol = pybel.readstring("smi", "c1ccccc1C(=O)Cl")
atoms = list(ob.OBMolAtomIter(mol.OBMol))
self.assertEqual(len(atoms), 9)
elements = [atom.GetAtomicNum() for atom in atoms]
self.assertEqual(elements, [6,6,6,6,6,6,6,8,17])
bonds = list(ob.OBMolBondIter(mol.OBMol))
self.assertEqual(len(bonds), 9)
def testProper2DofFragments(self):
"""Check for proper handling of fragments in mcdl routines, see issue #1889"""
mol = pybel.readstring("smi", "[H+].CC[O-].CC[O-]")
mol.draw(show=False, update=True)
dists = [
abs(a.coords[0] - b.coords[0]) + abs(a.coords[1] - b.coords[1])
for a, b in itertools.combinations(mol.atoms, 2)
]
mindist = min(dists)
self.assertTrue(mindist > 0.00001)
def testRegressionBenzene2D(self):
"""Check that benzene is given a correct layout, see #1900"""
mol = pybel.readstring("smi", "c1ccccc1")
mol.draw(show=False, update=True)
benzmol = """
OpenBabel10161813072D
6 6 0 0 0 0 0 0 0 0999 V2000
-0.8660 -0.5000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-1.7321 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-1.7321 1.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-0.8660 1.5000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-0.0000 1.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
1 6 2 0 0 0 0
1 2 1 0 0 0 0
2 3 2 0 0 0 0
3 4 1 0 0 0 0
4 5 2 0 0 0 0
5 6 1 0 0 0 0
M END
"""
self.assertEqual(mol.write("mol")[24:], benzmol[24:])
def testTemplates(self):
"""Check for regressions to #1851"""
smis = [
"O=C(C1=CN=CS1)N1C2CCC1CN(CC1CC3CCC1O3)C2",
"O=C(CC1CC1)N1C2CCC1CC(NC(=O)C13CCC(CC1)CC3)C2",
"O=C([C@@H]1C[C@H]1C1CCC1)N1C2CCC1CN(C(=O)C13CCN(CC1)C3)C2",
"O=C(CCN1C=CN=C1)N1C2CCC1CN(CC1CC3CCC1C3)C2"
]
for s in smis:
mol = pybel.readstring("smi", s)
mol.draw(show=False, update=True)
assert(True) # Segfaults before...
class NewReactionHandling(PythonBindings):
def testBasic(self):
smis = ["C>N>O", "C>N>", ">N>O", ">N>", "C>>", ">>O", ">>"]
for smi in smis:
nsmi = pybel.readstring("smi", smi).write("smi").rstrip()
self.assertEqual(smi, nsmi)
badsmis = ["C>>N>O", ">>>", "C>N>O>", ">", ">N", "N>"]
for smi in badsmis:
self.assertRaises(IOError, pybel.readstring, "smi", smi)
def testFacade(self):
parts = "CNO"
mol = pybel.readstring("smi", ">".join(parts)).OBMol
facade = ob.OBReactionFacade(mol)
# basic test - copy out each component
comps = [ob.REACTANT, ob.AGENT, ob.PRODUCT]
for part, comp in zip(parts, comps):
nmol = ob.OBMol()
facade.GetComponent(nmol, comp, 0)
nsmi = pybel.Molecule(nmol).write("smi").rstrip()
self.assertEqual(nsmi, part)
nmol = ob.OBMol()
facade.GetComponent(nmol, ob.NO_REACTIONROLE, 0)
self.assertEqual(0, nmol.NumAtoms())
# Reassign role
facade.ReassignComponent(ob.AGENT, 0, ob.NO_REACTIONROLE)
nsmi = pybel.Molecule(mol).write("smi").rstrip()
self.assertEqual("C>>O", nsmi)
# ...and back again
facade.ReassignComponent(ob.NO_REACTIONROLE, 0, ob.AGENT)
# Add a new reactant
molb = pybel.readstring("smi", "S").OBMol
facade.AddComponent(molb, ob.REACTANT)
nsmi = pybel.Molecule(mol).write("smi").rstrip()
self.assertEqual("C.S>N>O", nsmi)
# ...and copy it back out
nmol = ob.OBMol()
facade.GetComponent(nmol, ob.REACTANT, 1)
nsmi = pybel.Molecule(nmol).write("smi").rstrip()
self.assertEqual("S", nsmi)
# ...and also copy the O
facade.GetComponent(nmol, ob.PRODUCT, 0)
nmol.SetIsReaction()
nsmi = pybel.Molecule(nmol).write("smi").rstrip()
self.assertEqual("S>>O", nsmi)
def testInvalidRxn(self):
"""IsValid() should flag up invalid reaction data"""
mol = pybel.readstring("smi", "CC>>O").OBMol
facade = ob.OBReactionFacade(mol)
self.assertTrue(facade.IsValid())
mol.SetIsReaction(False)
self.assertFalse(facade.IsValid())
mol.SetIsReaction()
self.assertTrue(facade.IsValid())
atom = mol.GetAtom(1)
facade.SetRole(atom, 4)
self.assertFalse(facade.IsValid()) # invalid role
facade.SetRole(atom, ob.REACTANT)
self.assertTrue(facade.IsValid())
data = atom.GetData("rxncomp")
ob.toPairInteger(data).SetValue(-1)
self.assertFalse(facade.IsValid()) # invalid rxn component id
atom.DeleteData(data)
self.assertFalse(atom.HasData("rxncomp"))
self.assertFalse(facade.IsValid()) # data missing
newdata = ob.OBPairData()
newdata.SetAttribute("rxncomp")
newdata.SetValue("1")
atom.CloneData(newdata)
self.assertTrue(atom.HasData("rxncomp"))
self.assertFalse(facade.IsValid()) # wrong type of data
# Connected component should not belong to two different
# rxn components or two different reaction roles
mol = pybel.readstring("smi", "CC>>O").OBMol
facade = ob.OBReactionFacade(mol)
self.assertTrue(facade.IsValid())
atom = mol.GetAtom(1)
facade.SetComponentId(atom, 99)
self.assertFalse(facade.IsValid())
facade.SetComponentId(atom, 1)
self.assertTrue(facade.IsValid())
facade.SetRole(atom, ob.AGENT)
self.assertFalse(facade.IsValid())
def testRoundtripThroughRXN(self):
data = ["C>N>O", "C>>O", "C.N>>O", "C>>O.N",
"C>>O", ">>O", "C>>", ">N>", ">>"]
for rsmi in data:
rxn = pybel.readstring("smi", rsmi).write("rxn")
mrsmi = pybel.readstring("rxn", rxn).write("smi").rstrip()
self.assertEqual(mrsmi, rsmi)
# Test -G option, which changes the treatment of agents
rsmi = "C>N>O"
ans = {"agent": "C>N>O",
"reactant": "C.N>>O",
"product": "C>>O.N",
"both": "C.N>>O.N",
"ignore": "C>>O"}
for option, result in ans.items():
rxn = pybel.readstring("smi", rsmi).write("rxn", opt={"G":option})
mrsmi = pybel.readstring("rxn", rxn).write("smi").rstrip()
self.assertEqual(mrsmi, result)
class Radicals(PythonBindings):
def testSmilesToMol(self):
smis = ["C", "[CH3]", "[CH2]", "[CH2]C", "[C]"]
valences = [0, 3, 2, 3, 15]
for smi, valence in zip(smis, valences):
mol = pybel.readstring("smi", smi)
molfile = mol.write("mol")
firstcarbon = molfile.split("\n")[4]
mvalence = int(firstcarbon[48:53])
self.assertEqual(valence, mvalence)
# test molfile->smiles
msmi = pybel.readstring("mol", molfile).write("smi").rstrip()
self.assertEqual(smi, msmi)
def testMolfileInvalidValencyToSmiles(self):
"""Should trigger warning about invalid valency field
Unfortunately - there's no way to test this from Python as it requires
streams :-/"""
molfile = """
OpenBabel07291719012D
2 1 0 0 0 0 0 0 0 0999 V2000
0.0000 0.0000 0.0000 C 0 0 0 0 0 15 0 0 0 0 0 0
0.0000 0.0000 0.0000 C 0 0 0 0 0 4 0 0 0 0 0 0
1 2 1 0 0 0 0
M END
"""
mol = pybel.readstring("mol", molfile)
self.assertEqual("[C]C", mol.write("smi").rstrip())
def testSettingSpinMult(self):
"""Set spin and read/write it"""
mol = pybel.readstring("smi", "C")
mol.atoms[0].OBAtom.SetSpinMultiplicity(2)
molfile = mol.write("mol")
self.assertEqual("M RAD 1 1 2", molfile.split("\n")[5])
molb = pybel.readstring("mol", molfile)
self.assertEqual(2, molb.atoms[0].OBAtom.GetSpinMultiplicity())
self.assertEqual(4, molb.atoms[0].OBAtom.GetImplicitHCount())
class AcceptStereoAsGiven(PythonBindings):
"""Tests to ensure that stereo is accepted as given in input from
SMILES and Mol files"""
def testSmiToSmi(self):
# Should preserve stereo
tet = "[C@@H](Br)(Br)Br"
out = pybel.readstring("smi", tet).write("smi")
self.assertTrue("@" in out)
cistrans = r"C/C=C(\C)/C"
out = pybel.readstring("smi", cistrans).write("smi")
self.assertTrue("/" in out)
# Should wipe stereo
out = pybel.readstring("smi", tet, opt={"S": True}).write("smi")
self.assertFalse("@" in out)
cistrans = r"C/C=C(\C)/C"
out = pybel.readstring("smi", cistrans, opt={"S": True}).write("smi")
self.assertFalse("/" in out)
class OBMolCopySubstructure(PythonBindings):
"""Tests for copying a component of an OBMol"""
def createBitVec(self, size, bits):
bv = ob.OBBitVec(size)
for bit in bits:
bv.SetBitOn(bit)
return bv
def testBasic(self):
mol = pybel.readstring("smi", "ICBr")
bv = self.createBitVec(4, (1, 3))
nmol = ob.OBMol()
ok = mol.OBMol.CopySubstructure(nmol, bv, None, 0)
self.assertTrue(ok)
self.assertEqual(pybel.Molecule(nmol).write("smi").rstrip(), "[I].[Br]")
bv = self.createBitVec(4, (2,))
ok = mol.OBMol.CopySubstructure(nmol, bv, None, 0)
self.assertTrue(ok)
self.assertEqual(pybel.Molecule(nmol).write("smi").rstrip(), "[I].[Br].[CH2]")
mol = pybel.readstring("smi", "CCC")
bv = self.createBitVec(4, (1,))
bondv = self.createBitVec(2, (1,))
nmol = ob.OBMol()
ok = mol.OBMol.CopySubstructure(nmol, bv, bondv, 0)
self.assertTrue(ok)
def testNonexistentAtom(self):
mol = pybel.readstring("smi", "ICBr")
bv = self.createBitVec(10, (9,))
nmol = ob.OBMol()
ok = mol.OBMol.CopySubstructure(nmol, bv)
self.assertFalse(ok)
def testOptions(self):
mol = pybel.readstring("smi", "ICBr")
bv = self.createBitVec(4, (1, 3))
ans = ["[I].[Br]", "I.Br", "I*.Br*"]
ans_atomorder = [[1, 3], [1, 3], [1, 3, 2, 2]]
ans_bondorder = [ [], [], [0, 1] ]
for option in range(3):
nmol = ob.OBMol()
atomorder = ob.vectorUnsignedInt()
bondorder = ob.vectorUnsignedInt()
ok = mol.OBMol.CopySubstructure(nmol, bv, None, option, atomorder, bondorder)
self.assertTrue(ok)
self.assertEqual(pybel.Molecule(nmol).write("smi").rstrip(), ans[option])
self.assertEqual(ans_atomorder[option], list(atomorder))
self.assertEqual(ans_bondorder[option], list(bondorder))
def testSpecifyBonds(self):
mol = pybel.readstring("smi", "ICBr")
bv = self.createBitVec(4, (1, 2, 3))
bondbv = self.createBitVec(2, (1,))
ans = ["I[CH2].[Br]", "IC.Br", "IC*.Br*"]
ans_atomorder = [[1, 2, 3], [1, 2, 3], [1, 2, 3, 3, 2]]
ans_bondorder = [ [0], [0], [0, 1, 1] ]
for option in range(3):
nmol = ob.OBMol()
atomorder = ob.vectorUnsignedInt()
bondorder = ob.vectorUnsignedInt()
ok = mol.OBMol.CopySubstructure(nmol, bv, bondbv, option, atomorder, bondorder)
self.assertTrue(ok)
self.assertEqual(pybel.Molecule(nmol).write("smi").rstrip(), ans[option])
self.assertEqual(ans_atomorder[option], list(atomorder))
self.assertEqual(ans_bondorder[option], list(bondorder))
def testSpecifyAtomsAndBonds(self):
# Now copy just a subset of atoms too
mol = pybel.readstring("smi", "ICBr")
bv = self.createBitVec(4, (1, 3))
bondbv = self.createBitVec(2, (1,))
ans = ["[I].[Br]", "I.Br", "I*.Br*"]
for option in range(3):
nmol = ob.OBMol()
ok = mol.OBMol.CopySubstructure(nmol, bv, bondbv, option)
self.assertTrue(ok)
self.assertEqual(pybel.Molecule(nmol).write("smi").rstrip(), ans[option])
def testBondOrders(self):
mol = pybel.readstring("smi", "O=C=O")
bv = self.createBitVec(3, (2, 3))
bondbv = self.createBitVec(2, (1,))
ans = ["[C].[O]", "C.O", "C(=*)=*.O=*"]
for option in range(3):
nmol = ob.OBMol()
ok = mol.OBMol.CopySubstructure(nmol, bv, bondbv, option)
self.assertTrue(ok)
self.assertEqual(pybel.Molecule(nmol).write("smi").rstrip(), ans[option])
ans = ["[C]=O", "C=O", "C(=O)=*"]
for option in range(3):
nmol = ob.OBMol()
ok = mol.OBMol.CopySubstructure(nmol, bv, None, option)
self.assertTrue(ok)
self.assertEqual(pybel.Molecule(nmol).write("smi").rstrip(), ans[option])
def testStereo(self):
data = [
("FC[C@@](Br)(Cl)I",
[((2, 3, 4, 5, 6), None, "C[C@@](Br)(Cl)I"),
((2, 3, 4, 5), None, "CC(Br)Cl"),
((1, 2, 3, 4, 5, 6), (4,), "FCC(Br)Cl.I")]
),
("[C@@H](Br)(Cl)I",
[((1, 2, 3), None, "C(Br)Cl"),
((1, 2, 3, 4), (2,), "C(Br)Cl.I")]
),
("C[C@@H]1CO1",
[((2, 3, 4), None, "C1CO1"),]
),
("F/C=C/I",
[
((1, 2, 3, 4), None, "F/C=C/I"),
((1, 2, 3), None, "FC=C"),
((1, 2, 3, 4), (0,), "F.C=CI"),
((1, 2, 3, 4), (1,), "FC.CI")]
),
]
for smi, d in data:
mol = pybel.readstring("smi", smi)
for a, b, ans in d:
nmol = ob.OBMol()
bv = self.createBitVec(7, a)
bondbv = None if b is None else self.createBitVec(5, b)
ok = mol.OBMol.CopySubstructure(nmol, bv, bondbv)
self.assertTrue(ok)
if "@" not in ans and "/" not in ans:
self.assertFalse(nmol.GetData(ob.StereoData))
self.assertEqual(pybel.Molecule(nmol).write("smi").rstrip(),
ans)
def testResidueCopying(self):
smi = "C[C@@H](C(=O)N[C@@H](CS)C(=O)O)N" # H-Ala-Cys-OH
mol = pybel.readstring("smi", smi).OBMol
ob.cvar.chainsparser.PerceiveChains(mol)
mol.SetChainsPerceived()
residues = list(ob.OBResidueIter(mol))
self.assertEqual(len(residues), 2)
# Copy just the Cys N
bv = self.createBitVec(mol.NumAtoms() + 1, (5,))
nmol = ob.OBMol()
mol.CopySubstructure(nmol, bv)
self.assertEqual(len(list(ob.OBResidueIter(nmol))), 1)
pdb = pybel.Molecule(nmol).write("pdb")
atoms = [line for line in pdb.split("\n") if line.startswith("ATOM")]
self.assertEqual(len(atoms), 1)
cysN = "ATOM 1 N CYS A 2"
self.assertTrue(atoms[0].startswith(cysN))
# Copy the Cys N and Ca
bv = self.createBitVec(mol.NumAtoms() + 1, (5, 6))
nmol.Clear()
mol.CopySubstructure(nmol, bv)
self.assertEqual(len(list(ob.OBResidueIter(nmol))), 1)
pdb = pybel.Molecule(nmol).write("pdb")
atoms = [line for line in pdb.split("\n") if line.startswith("ATOM")]
self.assertEqual(len(atoms), 2)
self.assertTrue(atoms[0].startswith(cysN))
cysCa = "ATOM 2 CA CYS A 2"
self.assertTrue(atoms[1].startswith(cysCa))
# Copy the Ala C and Cys N
bv = self.createBitVec(mol.NumAtoms() + 1, (3, 5))
nmol.Clear()
mol.CopySubstructure(nmol, bv)
self.assertEqual(len(list(ob.OBResidueIter(nmol))), 2)
pdb = pybel.Molecule(nmol).write("pdb")
atoms = [line for line in pdb.split("\n") if line.startswith("ATOM")]
self.assertEqual(len(atoms), 2)
alaC = "ATOM 1 C ALA A 1"
self.assertTrue(atoms[0].startswith(alaC))
cysN = "ATOM 2 N CYS A 2"
self.assertTrue(atoms[1].startswith(cysN))
class AtomClass(PythonBindings):
"""Tests to ensure that refactoring the atom class handling retains
functionality"""
def testSMILES(self):
mol = pybel.readstring("smi", "C[CH3:6]")
atom = mol.OBMol.GetAtom(2)
data = atom.GetData("Atom Class")
self.assertTrue(data)
self.assertEqual(6, ob.toPairInteger(data).GetGenericValue())
atom.DeleteData("Atom Class")
ac = ob.OBPairInteger()
ac.SetAttribute("Atom Class")
ac.SetValue(2)
mol.OBMol.GetAtom(1).CloneData(ac)
out = mol.write("smi", opt={"a":True, "n":True, "nonewline":True})
self.assertEqual("[CH3:2]C", out)
def testMOL(self):
"""Roundtrip thru MOL file"""
smi = "C[CH3:6]"
mol = pybel.readstring("smi", smi)
molfile = mol.write("mol", opt={"a":True})
molb = pybel.readstring("mol", molfile)
out = mol.write("smi", opt={"a":True, "n":True, "nonewline":True})
self.assertEqual(smi, out)
def testRGroup(self):
"""[*:1] is converted to R1 in MOL file handling"""
smi = "[*:6]C"
mol = pybel.readstring("smi", smi)
molfile = mol.write("mol")
self.assertTrue("M RGP 1 1 6" in molfile)
molb = pybel.readstring("mol", molfile)
out = mol.write("smi", opt={"a":True, "n":True, "nonewline":True})
self.assertEqual(smi, out)
def testCML(self):
"""OB stores atom classes using _NN at the end of atom ids"""
smis = ["[CH3:6]C", "[CH3:6][OH:6]",
"O"+"[CH2:2]"*27+"O"
]
for smi in smis:
mol = pybel.readstring("smi", smi)
cml = mol.write("cml")
molb = pybel.readstring("mol", cml)
out = mol.write("smi", opt={"a":True, "n":True, "nonewline":True})
self.assertEqual(smi, out)
def testTinkerXYZ(self):
"""Atom classes are written out as the atom types (though
not currently read)"""
smi = "[CH4:23]"
mol = pybel.readstring("smi", smi)
xyz = mol.write("txyz", opt={"c": True})
lines = xyz.split("\n")
broken = lines[1].split()
self.assertEqual("23", broken[-1].rstrip())
def testDeleteHydrogens(self):
"""Don't suppress a hydrogen with an atom class"""
smi = "C([H])([H])([H])[H:1]"
mol = pybel.readstring("smi", smi)
mol.OBMol.DeleteHydrogens()
nsmi = mol.write("smi", opt={"a": True, "h": True})
self.assertEqual("C[H:1]", nsmi.rstrip())
if __name__ == "__main__":
unittest.main()
|