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 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162
|
//
// Copyright (C) 2020 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 "catch.hpp"
#include <GraphMol/RDKitBase.h>
#include <GraphMol/QueryAtom.h>
#include <GraphMol/MolPickler.h>
#include <GraphMol/FileParsers/FileParsers.h>
#include <GraphMol/SmilesParse/SmilesWrite.h>
#include <GraphMol/SmilesParse/SmilesParse.h>
#include <GraphMol/SmilesParse/SmartsWrite.h>
#include <GraphMol/FileParsers/SequenceParsers.h>
#include <GraphMol/FileParsers/SequenceWriters.h>
#include <GraphMol/FileParsers/PNGParser.h>
#include <RDGeneral/FileParseException.h>
#include <boost/algorithm/string.hpp>
using namespace RDKit;
TEST_CASE("Basic SVG Parsing", "[SVG][reader]") {
SECTION("basics") {
std::string svg = R"SVG(<?xml version='1.0' encoding='iso-8859-1'?>
<svg version='1.1' baseProfile='full'
xmlns='http://www.w3.org/2000/svg'
xmlns:rdkit='http://www.rdkit.org/xml'
xmlns:xlink='http://www.w3.org/1999/xlink'
xml:space='preserve'
width='200px' height='200px' >
<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='200' x='0' y='0'> </rect>
<path d='M 9.09091,89.4974 24.2916,84.7462' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />
<path d='M 24.2916,84.7462 39.4923,79.9949' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />
<path d='M 86.2908,106.814 75.1709,93.4683 72.0765,96.8285 86.2908,106.814' style='fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />
<path d='M 75.1709,93.4683 57.8622,86.8431 64.051,80.1229 75.1709,93.4683' style='fill:#0000FF;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />
<path d='M 75.1709,93.4683 72.0765,96.8285 57.8622,86.8431 75.1709,93.4683' style='fill:#0000FF;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />
<path d='M 86.2908,106.814 82.1459,125.293' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />
<path d='M 82.1459,125.293 78.0009,143.772' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />
<path d='M 86.2908,106.814 129.89,93.1862' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />
<path d='M 134.347,94.186 138.492,75.7069' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />
<path d='M 138.492,75.7069 142.637,57.2277' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />
<path d='M 125.432,92.1865 129.577,73.7074' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />
<path d='M 129.577,73.7074 133.722,55.2282' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />
<path d='M 129.89,93.1862 142.557,104.852' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />
<path d='M 142.557,104.852 155.224,116.517' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />
<text x='39.4923' y='83.483' style='font-size:15px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;text-anchor:start;fill:#0000FF' ><tspan>NH</tspan></text>
<text x='67.6656' y='158.998' style='font-size:15px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;text-anchor:start;fill:#00CC00' ><tspan>Cl</tspan></text>
<text x='132.777' y='56.228' style='font-size:15px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;text-anchor:start;fill:#FF0000' ><tspan>O</tspan></text>
<text x='149.782' y='131.743' style='font-size:15px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;text-anchor:start;fill:#FF0000' ><tspan>OH</tspan></text>
<text x='89.9952' y='194' style='font-size:12px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;text-anchor:start;fill:#000000' ><tspan>m1</tspan></text>
<metadata>
<rdkit:mol xmlns:rdkit = "http://www.rdkit.org/xml" version="0.9">
<rdkit:atom idx="1" atom-smiles="[CH3]" drawing-x="9.09091" drawing-y="89.4974" x="-2.78651" y="0.295614" z="0" />
<rdkit:atom idx="2" atom-smiles="[NH]" drawing-x="52.6897" drawing-y="75.8699" x="-1.35482" y="0.743114" z="0" />
<rdkit:atom idx="3" atom-smiles="[C@H]" drawing-x="86.2908" drawing-y="106.814" x="-0.251428" y="-0.273019" z="0" />
<rdkit:atom idx="4" atom-smiles="[Cl]" drawing-x="76.2932" drawing-y="151.385" x="-0.579728" y="-1.73665" z="0" />
<rdkit:atom idx="5" atom-smiles="[C]" drawing-x="129.89" drawing-y="93.1862" x="1.18027" y="0.174481" z="0" />
<rdkit:atom idx="6" atom-smiles="[O]" drawing-x="139.887" drawing-y="48.6148" x="1.50857" y="1.63811" z="0" />
<rdkit:atom idx="7" atom-smiles="[OH]" drawing-x="163.491" drawing-y="124.13" x="2.28366" y="-0.841652" z="0" />
<rdkit:bond idx="1" begin-atom-idx="1" end-atom-idx="2" bond-smiles="-" />
<rdkit:bond idx="2" begin-atom-idx="2" end-atom-idx="3" bond-smiles="-" />
<rdkit:bond idx="3" begin-atom-idx="3" end-atom-idx="4" bond-smiles="-" />
<rdkit:bond idx="4" begin-atom-idx="3" end-atom-idx="5" bond-smiles="-" />
<rdkit:bond idx="5" begin-atom-idx="5" end-atom-idx="6" bond-smiles="=" />
<rdkit:bond idx="6" begin-atom-idx="5" end-atom-idx="7" bond-smiles="-" />
</rdkit:mol></metadata>
</svg>)SVG";
std::unique_ptr<RWMol> mol(RDKitSVGToMol(svg));
REQUIRE(mol);
CHECK(mol->getNumAtoms() == 7);
CHECK(mol->getNumConformers() == 1);
CHECK_FALSE(mol->getConformer().is3D());
auto smiles = MolToSmiles(*mol);
CHECK(smiles == "CN[C@H](Cl)C(=O)O");
}
}
TEST_CASE(
"Github #2040: Failure to parse V3K mol file with bonds to multi-center "
"linkage points",
"[bug][reader]") {
std::string rdbase = getenv("RDBASE");
SECTION("basics") {
std::string fName =
rdbase + "/Code/GraphMol/FileParsers/test_data/github2040_1.mol";
std::unique_ptr<RWMol> mol(
MolFileToMol(fName, false)); // don't sanitize yet
REQUIRE(mol);
CHECK(mol->getBondWithIdx(0)->getBondType() == Bond::SINGLE);
CHECK(
mol->getBondWithIdx(0)->hasProp(common_properties::_MolFileBondEndPts));
CHECK(mol->getBondWithIdx(0)->getProp<std::string>(
common_properties::_MolFileBondEndPts) == "(3 5 4 3)");
CHECK(
mol->getBondWithIdx(0)->hasProp(common_properties::_MolFileBondAttach));
CHECK(mol->getBondWithIdx(0)->getProp<std::string>(
common_properties::_MolFileBondAttach) == "ANY");
CHECK(mol->getBondWithIdx(1)->getBondType() == Bond::AROMATIC);
}
}
TEST_CASE("Github #2225: failure round-tripping mol block with Q atoms",
"[bug][writer]") {
std::string rdbase = getenv("RDBASE");
SECTION("basics") {
std::string fName =
rdbase + "/Code/GraphMol/FileParsers/test_data/github2225_1.mol";
std::unique_ptr<RWMol> mol(MolFileToMol(fName));
REQUIRE(mol);
REQUIRE(mol->getNumAtoms() == 7);
REQUIRE(!mol->getAtomWithIdx(0)->hasQuery());
REQUIRE(mol->getAtomWithIdx(6)->hasQuery());
auto outBlock = MolToMolBlock(*mol);
REQUIRE(outBlock.find(" Q ") != std::string::npos);
REQUIRE(outBlock.find(" ALS ") == std::string::npos);
std::unique_ptr<RWMol> mol2(MolBlockToMol(outBlock));
REQUIRE(mol2);
REQUIRE(mol2->getNumAtoms() == 7);
REQUIRE(!mol2->getAtomWithIdx(0)->hasQuery());
REQUIRE(mol2->getAtomWithIdx(6)->hasQuery());
auto outBlock2 = MolToMolBlock(*mol2);
REQUIRE(outBlock2.find(" Q ") != std::string::npos);
REQUIRE(outBlock2.find(" ALS ") == std::string::npos);
}
SECTION("check that SMARTS still works") {
std::unique_ptr<RWMol> mol(SmartsToMol("C[#8,#7]"));
REQUIRE(mol);
REQUIRE(mol->getNumAtoms() == 2);
auto outBlock = MolToMolBlock(*mol);
REQUIRE(outBlock.find(" Q ") == std::string::npos);
REQUIRE(outBlock.find(" ALS ") != std::string::npos);
std::unique_ptr<RWMol> mol2(MolBlockToMol(outBlock));
REQUIRE(mol2);
auto smarts = MolToSmarts(*mol2);
REQUIRE(smarts == "[#6][#8,#7]");
}
SECTION("basics with v3K") {
std::string fName =
rdbase + "/Code/GraphMol/FileParsers/test_data/github2225_2.mol";
std::unique_ptr<RWMol> mol(MolFileToMol(fName));
REQUIRE(mol);
REQUIRE(mol->getNumAtoms() == 7);
REQUIRE(!mol->getAtomWithIdx(0)->hasQuery());
REQUIRE(mol->getAtomWithIdx(6)->hasQuery());
bool includeStereo = true;
int confId = -1;
bool kekulize = true;
bool forceV3000 = true;
auto outBlock =
MolToMolBlock(*mol, includeStereo, confId, kekulize, forceV3000);
REQUIRE(outBlock.find(" Q ") != std::string::npos);
REQUIRE(outBlock.find(" ALS ") == std::string::npos);
std::unique_ptr<RWMol> mol2(MolBlockToMol(outBlock));
REQUIRE(mol2);
REQUIRE(mol2->getNumAtoms() == 7);
REQUIRE(!mol2->getAtomWithIdx(0)->hasQuery());
REQUIRE(mol2->getAtomWithIdx(6)->hasQuery());
auto outBlock2 =
MolToMolBlock(*mol2, includeStereo, confId, kekulize, forceV3000);
REQUIRE(outBlock2.find(" Q ") != std::string::npos);
REQUIRE(outBlock2.find(" ALS ") == std::string::npos);
}
SECTION("check that SMARTS still works with v3K output") {
std::unique_ptr<RWMol> mol(SmartsToMol("C[#8,#7]"));
REQUIRE(mol);
REQUIRE(mol->getNumAtoms() == 2);
bool includeStereo = true;
int confId = -1;
bool kekulize = true;
bool forceV3000 = true;
auto outBlock =
MolToMolBlock(*mol, includeStereo, confId, kekulize, forceV3000);
REQUIRE(outBlock.find(" Q ") == std::string::npos);
REQUIRE(outBlock.find(" [O,N] ") != std::string::npos);
std::unique_ptr<RWMol> mol2(MolBlockToMol(outBlock));
REQUIRE(mol2);
auto smarts = MolToSmarts(*mol2);
REQUIRE(smarts == "[#6][#8,#7]");
}
}
TEST_CASE(
"Github #2229: problem round-tripping mol files with bond topology info",
"[bug][writer]") {
std::string rdbase = getenv("RDBASE");
std::string fName =
rdbase + "/Code/GraphMol/FileParsers/test_data/github2229_1.mol";
std::unique_ptr<RWMol> mol(MolFileToMol(fName));
REQUIRE(mol);
REQUIRE(mol->getNumBonds() == 9);
REQUIRE(!mol->getBondWithIdx(0)->hasQuery());
REQUIRE(mol->getBondWithIdx(7)->hasQuery());
SECTION("basics") {
auto outBlock = MolToMolBlock(*mol);
REQUIRE(outBlock.find(" 7 8 1 0 0 2") != std::string::npos);
std::unique_ptr<RWMol> mol2(MolBlockToMol(outBlock));
REQUIRE(mol2);
REQUIRE(mol2->getNumBonds() == 9);
REQUIRE(!mol2->getBondWithIdx(0)->hasQuery());
REQUIRE(mol2->getBondWithIdx(7)->hasQuery());
}
SECTION("basics with v3k") {
bool includeStereo = true;
int confId = -1;
bool kekulize = true;
bool forceV3000 = true;
auto outBlock =
MolToMolBlock(*mol, includeStereo, confId, kekulize, forceV3000);
REQUIRE(outBlock.find("1 7 8 TOPO=2") != std::string::npos);
std::unique_ptr<RWMol> mol2(MolBlockToMol(outBlock));
REQUIRE(mol2);
REQUIRE(mol2->getNumBonds() == 9);
REQUIRE(!mol2->getBondWithIdx(0)->hasQuery());
REQUIRE(mol2->getBondWithIdx(7)->hasQuery());
}
}
TEST_CASE("preserve mol file properties on bonds", "[reader][ctab]") {
SECTION("basics") {
std::string molblock = R"CTAB(
Mrv1810 02111915042D
4 3 0 0 0 0 999 V2000
-1.5625 1.6071 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-0.8480 2.0196 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-2.2770 2.0196 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-1.5625 0.7821 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
1 3 1 0 0 0 0
1 2 6 0 0 0 0
1 4 1 1 0 0 0
M END
)CTAB";
std::unique_ptr<ROMol> mol(MolBlockToMol(molblock));
REQUIRE(mol);
CHECK(mol->getBondWithIdx(1)->getProp<unsigned int>(
common_properties::_MolFileBondType) == 6);
CHECK(mol->getBondWithIdx(2)->getProp<unsigned int>(
common_properties::_MolFileBondType) == 1);
CHECK(mol->getBondWithIdx(2)->getProp<unsigned int>(
common_properties::_MolFileBondStereo) == 1);
}
SECTION("basics-v3k") {
std::string molblock = R"CTAB(
Mrv1810 02111915102D
0 0 0 0 0 999 V3000
M V30 BEGIN CTAB
M V30 COUNTS 4 3 0 0 0
M V30 BEGIN ATOM
M V30 1 C -2.9167 3 0 0
M V30 2 C -1.583 3.77 0 0
M V30 3 C -4.2503 3.77 0 0
M V30 4 C -2.9167 1.46 0 0
M V30 END ATOM
M V30 BEGIN BOND
M V30 1 1 1 3
M V30 2 6 1 2
M V30 3 1 1 4 CFG=1
M V30 END BOND
M V30 END CTAB
M END
)CTAB";
std::unique_ptr<ROMol> mol(MolBlockToMol(molblock));
REQUIRE(mol);
CHECK(mol->getBondWithIdx(1)->getProp<unsigned int>(
common_properties::_MolFileBondType) == 6);
CHECK(mol->getBondWithIdx(2)->getProp<unsigned int>(
common_properties::_MolFileBondType) == 1);
CHECK(mol->getBondWithIdx(2)->getProp<unsigned int>(
common_properties::_MolFileBondCfg) == 1);
}
}
TEST_CASE("github #2277 : Failure when parsing mol block with M PXA",
"[reader][ctab]") {
std::string molblock = R"CTAB(
Mrv1810 02151911552D
13 12 0 0 1 0 999 V2000
-3.6588 -26.0592 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0
-2.9453 -27.2971 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0
-2.9453 -26.4713 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-3.6588 -25.2360 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-2.9467 -24.8200 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-2.9467 -23.9968 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-2.2304 -25.2358 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-1.5102 -26.4716 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-0.7989 -25.2306 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0
-0.7989 -26.0582 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-4.3730 -26.4732 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0
-2.2277 -26.0635 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0
-0.0839 -26.4708 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0
1 3 1 0 0 0 0
3 2 2 0 0 0 0
1 4 1 1 0 0 0
4 5 1 0 0 0 0
5 6 1 0 0 0 0
5 7 1 0 0 0 0
8 10 1 0 0 0 0
10 9 2 0 0 0 0
3 12 1 0 0 0 0
12 8 1 0 0 0 0
11 1 1 0 0 0 0
10 13 1 0 0 0 0
M PXA 11 -5.0817 -26.0408 0.0000 H
M END
)CTAB";
std::unique_ptr<ROMol> mol(MolBlockToMol(molblock));
SECTION("basics, make sure we can parse the original data") {
REQUIRE(mol);
CHECK(mol->getAtomWithIdx(10)->hasProp("_MolFile_PXA"));
CHECK(!mol->getAtomWithIdx(11)->hasProp("_MolFile_PXA"));
}
SECTION("basics, can we write it?") {
REQUIRE(mol);
std::string outmb = MolToMolBlock(*mol);
CHECK(outmb.find("M PXA 11") != std::string::npos);
}
}
TEST_CASE(
"github #2266: missing stereo in adamantyl-like cages with "
"exocyclic bonds",
"[bug]") {
SECTION("basics") {
std::string molblock = R"CTAB(
SciTegic12231509382D
14 16 0 0 0 0 999 V2000
1.5584 -5.7422 0.0000 C 0 0
2.2043 -5.0535 0.0000 C 0 0 2 0 0 0
2.3688 -5.5155 0.0000 C 0 0 1 0 0 0
2.9210 -5.3181 0.0000 C 0 0
3.1270 -5.8206 0.0000 C 0 0
3.6744 -5.1312 0.0000 C 0 0 2 0 0 0
2.3619 -4.6609 0.0000 C 0 0
2.9268 -3.9939 0.0000 C 0 0 2 0 0 0
2.1999 -4.2522 0.0000 C 0 0
3.6803 -4.3062 0.0000 C 0 0
2.9436 -3.1692 0.0000 N 0 0
4.4569 -5.4095 0.0000 H 0 0
2.3246 -6.3425 0.0000 H 0 0
1.4365 -4.7500 0.0000 H 0 0
1 2 1 0
1 3 1 0
2 4 1 0
3 5 1 0
4 6 1 0
5 6 1 0
7 8 1 0
3 7 1 0
2 9 1 0
6 10 1 0
10 8 1 0
8 9 1 0
8 11 1 1
6 12 1 6
3 13 1 1
2 14 1 6
M END)CTAB";
{
std::unique_ptr<ROMol> mol(MolBlockToMol(molblock));
REQUIRE(mol);
CHECK(mol->getNumAtoms() == 11);
CHECK(mol->getAtomWithIdx(1)->getChiralTag() != Atom::CHI_UNSPECIFIED);
CHECK(mol->getAtomWithIdx(2)->getChiralTag() != Atom::CHI_UNSPECIFIED);
CHECK(mol->getAtomWithIdx(5)->getChiralTag() != Atom::CHI_UNSPECIFIED);
}
{
bool sanitize = true;
bool removeHs = false;
std::unique_ptr<ROMol> mol(MolBlockToMol(molblock, sanitize, removeHs));
REQUIRE(mol);
CHECK(mol->getNumAtoms() == 14);
CHECK(mol->getAtomWithIdx(1)->getChiralTag() != Atom::CHI_UNSPECIFIED);
CHECK(mol->getAtomWithIdx(2)->getChiralTag() != Atom::CHI_UNSPECIFIED);
CHECK(mol->getAtomWithIdx(5)->getChiralTag() != Atom::CHI_UNSPECIFIED);
}
}
SECTION("with F") {
std::string molblock = R"CTAB(
SciTegic12231509382D
14 16 0 0 0 0 999 V2000
1.5584 -5.7422 0.0000 C 0 0
2.2043 -5.0535 0.0000 C 0 0 2 0 0 0
2.3688 -5.5155 0.0000 C 0 0 1 0 0 0
2.9210 -5.3181 0.0000 C 0 0
3.1270 -5.8206 0.0000 C 0 0
3.6744 -5.1312 0.0000 C 0 0 2 0 0 0
2.3619 -4.6609 0.0000 C 0 0
2.9268 -3.9939 0.0000 C 0 0 2 0 0 0
2.1999 -4.2522 0.0000 C 0 0
3.6803 -4.3062 0.0000 C 0 0
2.9436 -3.1692 0.0000 N 0 0
4.4569 -5.4095 0.0000 F 0 0
2.3246 -6.3425 0.0000 F 0 0
1.4365 -4.7500 0.0000 F 0 0
1 2 1 0
1 3 1 0
2 4 1 0
3 5 1 0
4 6 1 0
5 6 1 0
7 8 1 0
3 7 1 0
2 9 1 0
6 10 1 0
10 8 1 0
8 9 1 0
8 11 1 1
6 12 1 6
3 13 1 1
2 14 1 6
M END)CTAB";
{
std::unique_ptr<ROMol> mol(MolBlockToMol(molblock));
REQUIRE(mol);
CHECK(mol->getNumAtoms() == 14);
CHECK(mol->getAtomWithIdx(1)->getChiralTag() != Atom::CHI_UNSPECIFIED);
CHECK(mol->getAtomWithIdx(2)->getChiralTag() != Atom::CHI_UNSPECIFIED);
CHECK(mol->getAtomWithIdx(5)->getChiralTag() != Atom::CHI_UNSPECIFIED);
}
}
}
TEST_CASE("parsing of SCN lines", "[bug][sgroups]") {
SECTION("basics") {
std::string molblock = R"CTAB(
MJ171200
76 80 0 0 0 0 0 0 0 0999 V2000
-6.4802 2.6494 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-6.8927 3.3638 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-7.7177 3.3638 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-8.1302 2.6494 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-7.7177 1.9349 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-6.8927 1.9349 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-5.2426 1.9349 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-5.6552 2.6494 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0
-6.4802 1.2203 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0
-5.6552 1.2203 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-4.0051 1.2203 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-4.4176 1.9349 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-5.2426 0.5060 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-4.4176 0.5060 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-6.8927 0.5060 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0
-6.4802 -0.2085 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-5.6552 -0.2085 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-8.1302 1.2203 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0
-6.8927 -0.9230 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0
-6.4802 -1.6374 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-5.6552 -1.6374 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-4.0051 -1.6374 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0
-5.2426 -2.3519 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0
-4.4176 -2.3519 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-4.0051 -3.0663 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-3.1801 -3.0663 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0
-2.7676 -3.7808 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-4.4176 -3.7808 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-4.0051 -4.4953 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-3.1801 -4.4953 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-6.3243 -3.7791 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-6.7368 -3.0648 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0
-7.5619 -3.0648 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-7.9744 -3.7791 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-7.5619 -4.4936 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-6.7368 -4.4936 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-6.3243 -5.2082 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0
-7.9744 -5.2082 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0
-7.5619 -5.9226 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0
-6.7368 -5.9226 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-7.9744 -2.3503 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-8.7994 -2.3503 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0
-8.7994 -3.7791 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0
-9.9487 -5.1497 0.0000 H 0 0 0 0 0 0 0 0 0 0 0 0
-6.3243 -6.6371 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
1.3705 -2.2987 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
0.9580 -1.5842 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0
0.1329 -1.5842 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-0.2796 -2.2987 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
0.1329 -3.0132 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
0.9580 -3.0132 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
0.1329 -0.1553 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0
-0.2796 -0.8698 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
1.3705 -3.7276 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0
-0.2796 -3.7276 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0
0.1329 -4.4420 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0
0.9580 -4.4420 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
1.3705 -5.1566 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
4.8575 -2.2792 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
4.4450 -1.5648 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0
3.6200 -1.5648 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
3.2073 -2.2792 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
3.6200 -2.9937 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
4.4450 -2.9937 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-5.3789 -3.8003 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0
-4.3797 -5.2304 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0
-2.8445 -5.2489 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0
2.3318 -2.2987 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0
3.2075 -3.7082 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0
4.8195 -3.7288 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0
6.3448 -2.2597 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0
3.1706 -0.8729 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
2.3860 -0.6179 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0
3.2997 -0.0580 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0
-1.1046 -2.2987 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0
1.9675 -0.6233 0.0000 Na 0 3 0 0 0 0 0 0 0 0 0 0
1 2 2 0 0 0 0
2 3 1 0 0 0 0
3 4 2 0 0 0 0
4 5 1 0 0 0 0
5 6 2 0 0 0 0
1 6 1 0 0 0 0
9 10 1 0 0 0 0
7 10 1 0 0 0 0
8 1 1 0 0 0 0
6 9 1 0 0 0 0
11 12 1 0 0 0 0
13 14 1 0 0 0 0
11 14 2 0 0 0 0
10 13 2 0 0 0 0
12 7 2 0 0 0 0
15 16 2 0 0 0 0
16 17 1 0 0 0 0
13 17 1 0 0 0 0
5 18 1 0 0 0 0
19 20 1 0 0 0 0
20 21 1 0 0 0 0
16 19 1 0 0 0 0
23 24 1 0 0 0 0
22 24 2 0 0 0 0
21 23 1 0 0 0 0
25 26 1 0 0 0 0
25 24 1 1 0 0 0
28 29 1 0 0 0 0
29 30 1 0 0 0 0
27 30 1 0 0 0 0
25 28 1 0 0 0 0
27 26 1 0 0 0 0
31 32 1 0 0 0 0
32 33 1 0 0 0 0
33 34 1 0 0 0 0
34 35 1 0 0 0 0
35 36 1 0 0 0 0
31 36 1 0 0 0 0
39 40 2 0 0 0 0
37 40 1 0 0 0 0
35 38 1 1 0 0 0
36 37 1 6 0 0 0
41 42 1 0 0 0 0
34 43 1 6 0 0 0
33 41 1 1 0 0 0
44 38 1 1 0 0 0
40 45 1 0 0 0 0
46 47 1 0 0 0 0
47 48 1 0 0 0 0
48 49 1 0 0 0 0
49 50 1 0 0 0 0
50 51 1 0 0 0 0
46 51 1 0 0 0 0
52 53 1 0 0 0 0
48 53 1 1 0 0 0
56 57 2 0 0 0 0
54 57 1 0 0 0 0
51 54 1 6 0 0 0
50 55 1 1 0 0 0
57 58 1 0 0 0 0
59 60 1 0 0 0 0
60 61 1 0 0 0 0
61 62 1 0 0 0 0
62 63 1 0 0 0 0
63 64 1 0 0 0 0
59 64 1 0 0 0 0
28 65 1 6 0 0 0
31 65 1 1 0 0 0
29 66 1 1 0 0 0
30 67 1 6 0 0 0
27 55 1 1 0 0 0
46 68 1 1 0 0 0
62 68 1 6 0 0 0
63 69 1 1 0 0 0
64 70 1 6 0 0 0
59 71 1 1 0 0 0
61 72 1 1 0 0 0
72 73 1 0 0 0 0
72 74 2 0 0 0 0
49 75 1 6 0 0 0
M STY 3 1 SRU 2 SRU 3 SRU
M SCN 3 1 HT 2 HT 3 HT
M SAL 1 15 55 50 51 54 57 58 56 46 68 62 63 69 64 70 61
M SAL 1 11 72 74 73 60 47 48 53 52 49 75 59
M SMT 1 b
M SBL 1 2 71 76
M SAL 2 15 27 26 25 28 65 31 36 37 40 45 39 35 34 43 33
M SAL 2 15 41 42 32 29 66 24 22 23 21 20 19 16 17 13 10
M SAL 2 15 7 12 11 9 6 1 8 2 3 4 5 18 14 15 30
M SAL 2 2 67 38
M SMT 2 a
M SBL 2 2 71 46
M SAL 3 15 38 35 36 37 40 45 39 31 65 28 25 24 22 23 21
M SAL 3 15 20 19 16 17 13 10 7 12 11 9 6 1 8 2 3
M SAL 3 15 4 5 18 14 15 26 27 55 50 51 54 57 58 56 46
M SAL 3 15 68 62 63 69 64 70 61 72 74 73 60 47 48 53 52
M SAL 3 13 49 75 30 67 29 66 32 33 41 42 34 43 59
M SMT 3 n
M SBL 3 2 46 76
M END
)CTAB";
std::unique_ptr<ROMol> mol(MolBlockToMol(molblock));
REQUIRE(mol);
}
}
TEST_CASE("A couple more S group problems", "[bug][sgroups]") {
std::string molblock = R"CTAB(CHEMBL3666739
SciTegic05171617282D
35 40 0 0 0 0 999 V2000
-3.6559 5.8551 0.0000 O 0 0
-2.6152 5.2576 0.0000 C 0 0
-2.6120 3.7568 0.0000 N 0 0
-3.9097 3.0028 0.0000 C 0 0
-5.2093 3.7519 0.0000 C 0 0
-6.5078 3.0010 0.0000 C 0 0
-6.5067 1.5010 0.0000 C 0 0
-5.2071 0.7519 0.0000 C 0 0
-3.9086 1.5029 0.0000 C 0 0
-2.6111 0.7486 0.0000 C 0 0
-2.6111 -0.7486 0.0000 N 0 0
-1.2964 -1.4973 0.0000 C 0 0
-1.2907 -2.9981 0.0000 N 0 0
-2.5870 -3.7544 0.0000 C 0 0
-2.5748 -5.2506 0.0000 C 0 0
-3.8815 -6.0264 0.0000 C 0 0
-5.1819 -5.2707 0.0000 C 0 0
-6.6004 -5.7374 0.0000 N 0 0
-7.4849 -4.5227 0.0000 N 0 0
-6.6189 -3.3309 0.0000 C 0 0
-5.1934 -3.7757 0.0000 C 0 0
-3.9049 -3.0000 0.0000 C 0 0
0.0000 -0.7486 0.0000 C 0 0
1.2964 -1.4973 0.0000 C 0 0
2.5929 -0.7486 0.0000 C 0 0
2.5929 0.7486 0.0000 C 0 0
1.2964 1.4973 0.0000 C 0 0
0.0000 0.7486 0.0000 C 0 0
-1.2964 1.4973 0.0000 N 0 0
-1.3175 6.0116 0.0000 C 0 0
-1.3185 7.5117 0.0000 C 0 0
-0.0200 8.2626 0.0000 C 0 0
1.2795 7.5135 0.0000 N 0 0
1.2806 6.0135 0.0000 C 0 0
-0.0178 5.2626 0.0000 C 0 0
1 2 2 0
2 3 1 0
3 4 1 0
4 5 2 0
5 6 1 0
6 7 2 0
7 8 1 0
8 9 2 0
4 9 1 0
9 10 1 0
10 11 2 0
11 12 1 0
12 13 1 0
13 14 1 0
14 15 2 0
15 16 1 0
16 17 2 0
17 18 1 0
18 19 1 0
19 20 2 0
20 21 1 0
17 21 1 0
21 22 2 0
14 22 1 0
12 23 2 0
23 24 1 0
24 25 2 0
25 26 1 0
26 27 2 0
27 28 1 0
23 28 1 0
28 29 2 0
10 29 1 0
2 30 1 0
30 31 2 0
31 32 1 0
32 33 2 0
33 34 1 0
34 35 2 0
30 35 1 0
M STY 1 1 DAT
M SLB 1 1 1
M SAL 1 1 33
M SDT 1 FAKE_MRV_IMPLICIT_H
M SDD 1 0.5304 -0.4125 DR ALL 0 0
M SED 1 IMPL_H1
M END
)CTAB";
SECTION("spaces in count lines") {
std::unique_ptr<ROMol> mol(MolBlockToMol(molblock));
REQUIRE(mol);
}
SECTION("short SDT lines") {
std::unique_ptr<ROMol> mol(MolBlockToMol(molblock));
REQUIRE(mol);
const auto &sgroups = getSubstanceGroups(*mol);
CHECK(sgroups.size() == 1);
CHECK(sgroups[0].hasProp("TYPE"));
CHECK(sgroups[0].getProp<std::string>("TYPE") == "DAT");
CHECK(sgroups[0].hasProp("FIELDNAME"));
CHECK(sgroups[0].getProp<std::string>("FIELDNAME") ==
"FAKE_MRV_IMPLICIT_H");
}
}
TEST_CASE("Github #2527: handling of \"R\" in CTABs", "[rgroups]") {
std::string molblock = R"CTAB(example
Mrv1902 07031913362D
2 1 0 0 0 0 999 V2000
-1.1418 0.0687 0.0000 N 0 0 0 0 0 0 0 0 0 3 0 0
-1.9668 0.0687 0.0000 R 0 0 0 0 0 0 0 0 0 0 0 0
1 2 1 0 0 0 0
M END
)CTAB";
SECTION("basics") {
bool sanitize = false;
std::unique_ptr<ROMol> mol(MolBlockToMol(molblock, sanitize));
REQUIRE(mol);
auto *at = static_cast<QueryAtom *>(mol->getAtomWithIdx(1));
REQUIRE(at->hasQuery());
CHECK(at->getQuery()->getDescription() == "AtomNull");
}
}
TEST_CASE("XYZ", "[XYZ][writer]") {
SECTION("basics") {
std::unique_ptr<RWMol> mol{new RWMol{}};
mol->setProp(common_properties::_Name,
"methane\nthis part should not be output");
for (unsigned z : {6, 1, 1, 1, 1}) {
auto *a = new Atom{z};
mol->addAtom(a, false, true);
}
auto *conf = new Conformer{5};
conf->setId(0);
conf->setAtomPos(0, RDGeom::Point3D{0.000, 0.000, 0.000});
conf->setAtomPos(1, RDGeom::Point3D{-0.635, -0.635, 0.635});
conf->setAtomPos(2, RDGeom::Point3D{-0.635, 0.635, -0.635});
conf->setAtomPos(3, RDGeom::Point3D{0.635, -0.635, -0.635});
conf->setAtomPos(4, RDGeom::Point3D{0.635, 0.635, 0.635});
mol->addConformer(conf);
const std::string xyzblock = MolToXYZBlock(*mol);
std::string xyzblock_expected = R"XYZ(5
methane
C 0.000000 0.000000 0.000000
H -0.635000 -0.635000 0.635000
H -0.635000 0.635000 -0.635000
H 0.635000 -0.635000 -0.635000
H 0.635000 0.635000 0.635000
)XYZ";
CHECK(xyzblock == xyzblock_expected);
}
}
TEST_CASE("valence writing 1", "[bug][writer]") {
SECTION("carbon") {
std::string molblock = R"CTAB(carbon atom
1 0 0 0 0 0 999 V2000
-0.3958 -0.0542 0.0000 C 0 0 0 0 0 15
M END)CTAB";
bool sanitize = false;
bool removeHs = false;
std::unique_ptr<ROMol> mol(MolBlockToMol(molblock, sanitize, removeHs));
REQUIRE(mol);
mol->updatePropertyCache();
CHECK(mol->getAtomWithIdx(0)->getNoImplicit());
CHECK(mol->getAtomWithIdx(0)->getExplicitValence() == 0);
CHECK(mol->getAtomWithIdx(0)->getTotalValence() == 0);
auto outBlock = MolToMolBlock(*mol);
REQUIRE(outBlock.find("0 0 15") != std::string::npos);
}
SECTION("P valences") {
std::string molblock = R"CTAB(H2PO2
3 2 0 0 0 0 999 V2000
0.2667 -0.4167 0.0000 P 0 0 0 0 0 5
0.2667 1.1083 0.0000 O 0 0
-1.0958 -1.0042 0.0000 O 0 0
2 1 2 0
3 1 1 0
M END)CTAB";
bool sanitize = false;
bool removeHs = false;
std::unique_ptr<ROMol> mol(MolBlockToMol(molblock, sanitize, removeHs));
REQUIRE(mol);
mol->updatePropertyCache();
CHECK(mol->getAtomWithIdx(0)->getNoImplicit());
CHECK(mol->getAtomWithIdx(0)->getExplicitValence() == 5);
CHECK(mol->getAtomWithIdx(0)->getTotalValence() == 5);
auto outBlock = MolToMolBlock(*mol);
REQUIRE(outBlock.find("0 0 5") != std::string::npos);
}
}
TEST_CASE("Github #2695: Error when a squiggle bond is in an aromatic ring",
"[bug][reader]") {
SECTION("reported") {
auto ctab = R"CTAB(
-ISIS- -- StrEd --
19 22 0 0 0 0 0 0 0 0999 V2000
-3.1355 -0.9331 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0
-2.6355 -1.7990 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-1.6356 -1.7990 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-1.1356 -0.9331 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-1.6356 -0.0671 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-2.6355 -0.0671 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-3.1355 0.7991 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-2.6355 1.6651 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-1.6356 1.6651 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-1.1356 0.7991 0.0000 C 0 0 3 0 0 0 0 0 0 0 0 0
-0.1354 0.7991 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
0.4523 1.6080 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0
1.4034 1.2991 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
2.2693 1.7990 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
3.1355 1.2991 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
3.1355 0.2991 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0
2.2693 -0.2011 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
1.4034 0.2991 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
0.4523 -0.0099 0.0000 N 0 0 0 0 0 0 0 0 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
1 6 1 0 0 0 0
6 7 2 0 0 0 0
7 8 1 0 0 0 0
8 9 2 0 0 0 0
10 9 1 4 0 0 0
5 10 1 0 0 0 0
10 11 2 0 0 0 0
11 12 1 0 0 0 0
12 13 2 0 0 0 0
13 14 1 0 0 0 0
14 15 2 0 0 0 0
15 16 1 0 0 0 0
16 17 2 0 0 0 0
17 18 1 0 0 0 0
13 18 1 0 0 0 0
18 19 2 0 0 0 0
11 19 1 0 0 0 0
M END)CTAB";
std::unique_ptr<ROMol> mol(MolBlockToMol(ctab));
REQUIRE(mol);
}
}
TEST_CASE("Github #2917: _ctab _mol2 and _pdb support", "[feature][reader]") {
SECTION("_ctab") {
auto mol = R"CTAB(
Mrv1810 01292008292D
4 3 0 0 0 0 999 V2000
-3.7669 1.1053 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-3.0524 1.5178 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-2.3380 1.1053 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0
-4.4814 1.5178 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0
2 3 1 0 0 0 0
1 4 1 0 0 0 0
1 2 2 0 0 0 0
M END
)CTAB"_ctab;
REQUIRE(mol);
CHECK(mol->getNumAtoms() == 4);
}
SECTION("_ctab failure") {
auto mol = R"CTAB(
Mrv1810 01292008292D
4 3 0 0 0 0 999 V2000
-3.7669 1.1053 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-3.0524 1.5178 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-2.3380 1.1053 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0
-4.4814 1.5178 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0
2 3 1 0 0 0 0
3 4 1 0 0 0 0
3 1 1 0 0 0 0
M END
)CTAB"_ctab;
REQUIRE(!mol);
}
SECTION("_pdb") {
auto mol = R"DATA(HEADER 2VNF_PROTEIN
COMPND 2VNF_PROTEIN
REMARK GENERATED BY X-TOOL on Wed Nov 21 18:02:19 2012
ATOM 1 N ALA A 225 10.250 -13.177 9.152 1.00 19.76 N
ATOM 2 H ALA A 225 10.605 -14.082 8.782 1.00 0.00 H
ATOM 3 CA ALA A 225 11.136 -12.000 9.236 1.00 21.97 C
ATOM 4 HA ALA A 225 11.079 -11.589 10.244 1.00 0.00 H
ATOM 5 C ALA A 225 10.683 -10.934 8.231 1.00 21.61 C
ATOM 6 O ALA A 225 10.811 -9.723 8.485 1.00 20.83 O
ATOM 7 CB ALA A 225 12.572 -12.399 8.956 1.00 22.98 C
ATOM 8 HB1 ALA A 225 12.892 -13.138 9.690 1.00 0.00 H
ATOM 9 HB2 ALA A 225 12.641 -12.825 7.955 1.00 0.00 H
ATOM 10 HB3 ALA A 225 13.212 -11.519 9.022 1.00 0.00 H
TER 11 ALA A 225
HETATM 12 O HOH 43 12.371 -9.746 8.354 0.50 30.13 O
END
)DATA"_pdb;
REQUIRE(mol);
CHECK(mol->getNumAtoms() == 6);
}
SECTION("_pdb failure") {
auto mol_ok = R"DATA(HEADER TEST
COMPND ACY
REMARK invented
HETATM 2779 C ACY A 404 15.911 -4.912 26.073 1.00 30.04 C
HETATM 2780 O ACY A 404 15.855 -4.063 25.124 1.00 24.12 O
HETATM 2781 OXT ACY A 404 16.514 -4.578 27.173 1.00 34.44 O
HETATM 2782 CH3 ACY A 404 15.319 -6.258 25.820 1.00 30.60 C
CONECT 2780 2781
END
)DATA"_pdb;
REQUIRE(mol_ok);
CHECK(mol_ok->getNumAtoms() == 4);
CHECK(mol_ok->getBondBetweenAtoms(1, 2));
auto mol_fail = R"DATA(HEADER TEST
COMPND ACY
REMARK invented
HETATM 2779 C ACY A 404 15.911 -4.912 26.073 1.00 30.04 C
HETATM 2780 O ACY A 404 15.855 -4.063 25.124 1.00 24.12 O
HETATM 2781 OXT ACY A 404 16.514 -4.578 27.173 1.00 34.44 O
HETATM 2782 CH3 ACY A 404 15.319 -6.258 25.820 1.00 30.60 C
CONECT 2780 2781
CONECT 2780 2779
CONECT 2780 2782
END
)DATA"_pdb;
REQUIRE(!mol_fail);
}
SECTION("_mol2") {
auto mol = R"DATA(@<TRIPOS>MOLECULE
UNK
6 4 0 0 0
SMALL
GASTEIGER
@<TRIPOS>ATOM
1 Na 0.0000 0.0000 0.0000 Na 1 UNL 1.0000
2 C 0.0000 0.0000 0.0000 C.3 1 UNL -0.0305
3 H 0.0000 0.0000 0.0000 H 1 UNL 0.0265
4 H 0.0000 0.0000 0.0000 H 1 UNL 0.0265
5 H 0.0000 0.0000 0.0000 H 1 UNL 0.0265
6 H 0.0000 0.0000 0.0000 H 1 UNL 0.0265
@<TRIPOS>BOND
1 2 3 1
2 2 4 1
3 2 5 1
4 2 6 1
)DATA"_mol2;
REQUIRE(mol);
CHECK(mol->getNumAtoms() == 2);
}
SECTION("_mol2 failure") {
auto mol = R"DATA(@<TRIPOS>MOLECULE
UNK
6 5 0 0 0
SMALL
GASTEIGER
@<TRIPOS>ATOM
1 Na 0.0000 0.0000 0.0000 Na 1 UNL 1.0000
2 C 0.0000 0.0000 0.0000 C.3 1 UNL -0.0305
3 H 0.0000 0.0000 0.0000 H 1 UNL 0.0265
4 H 0.0000 0.0000 0.0000 H 1 UNL 0.0265
5 H 0.0000 0.0000 0.0000 H 1 UNL 0.0265
6 H 0.0000 0.0000 0.0000 H 1 UNL 0.0265
@<TRIPOS>BOND
1 2 3 1
2 2 4 1
3 2 5 1
4 2 6 1
5 2 1 1
)DATA"_mol2;
REQUIRE(!mol);
}
}
TEST_CASE("handling STBOX properties from v3k ctabs", "[feature][v3k]") {
SECTION("atoms and bonds") {
auto mol = R"CTAB(basic test
Mrv1810 01292006422D
0 0 0 0 0 999 V3000
M V30 BEGIN CTAB
M V30 COUNTS 4 3 0 0 0
M V30 BEGIN ATOM
M V30 1 C -7.0316 2.0632 0 0 STBOX=1
M V30 2 C -5.6979 2.8332 0 0 STBOX=1
M V30 3 O -4.3642 2.0632 0 0
M V30 4 F -8.3653 2.8332 0 0
M V30 END ATOM
M V30 BEGIN BOND
M V30 1 1 2 3
M V30 2 1 1 4
M V30 3 2 1 2 STBOX=1
M V30 END BOND
M V30 END CTAB
M END
)CTAB"_ctab;
REQUIRE(mol);
CHECK(mol->getNumAtoms() == 4);
int val;
CHECK(mol->getAtomWithIdx(0)->getPropIfPresent(
common_properties::molStereoCare, val));
CHECK(val == 1);
CHECK(mol->getAtomWithIdx(1)->getPropIfPresent(
common_properties::molStereoCare, val));
CHECK(val == 1);
CHECK(!mol->getAtomWithIdx(2)->hasProp(common_properties::molStereoCare));
REQUIRE(mol->getBondBetweenAtoms(0, 1));
CHECK(mol->getBondBetweenAtoms(0, 1)->getPropIfPresent(
common_properties::molStereoCare, val));
CHECK(val == 1);
}
SECTION("bonds set if the atoms are also set 1") {
auto mol = R"CTAB(basic test
Mrv1810 01292006422D
0 0 0 0 0 999 V3000
M V30 BEGIN CTAB
M V30 COUNTS 4 3 0 0 0
M V30 BEGIN ATOM
M V30 1 C -7.0316 2.0632 0 0 STBOX=1
M V30 2 C -5.6979 2.8332 0 0 STBOX=1
M V30 3 O -4.3642 2.0632 0 0
M V30 4 F -8.3653 2.8332 0 0
M V30 END ATOM
M V30 BEGIN BOND
M V30 1 1 2 3
M V30 2 1 1 4
M V30 3 2 1 2
M V30 END BOND
M V30 END CTAB
M END
)CTAB"_ctab;
REQUIRE(mol);
CHECK(mol->getNumAtoms() == 4);
int val;
REQUIRE(mol->getBondBetweenAtoms(0, 1));
CHECK(mol->getBondBetweenAtoms(0, 1)->getPropIfPresent(
common_properties::molStereoCare, val));
CHECK(val == 1);
}
SECTION("bonds set if the atoms are also set 2") {
auto mol = R"CTAB(basic test
Mrv1810 01292006422D
0 0 0 0 0 999 V3000
M V30 BEGIN CTAB
M V30 COUNTS 4 3 0 0 0
M V30 BEGIN ATOM
M V30 1 C -7.0316 2.0632 0 0 STBOX=0
M V30 2 C -5.6979 2.8332 0 0 STBOX=0
M V30 3 O -4.3642 2.0632 0 0
M V30 4 F -8.3653 2.8332 0 0
M V30 END ATOM
M V30 BEGIN BOND
M V30 1 1 2 3
M V30 2 1 1 4
M V30 3 2 1 2
M V30 END BOND
M V30 END CTAB
M END
)CTAB"_ctab;
REQUIRE(mol);
CHECK(mol->getNumAtoms() == 4);
REQUIRE(mol->getBondBetweenAtoms(0, 1));
CHECK(!mol->getBondBetweenAtoms(0, 1)->hasProp(
common_properties::molStereoCare));
}
SECTION("bonds set if the atoms are also set 2") {
auto mol = R"CTAB(basic test
Mrv1810 01292006422D
0 0 0 0 0 999 V3000
M V30 BEGIN CTAB
M V30 COUNTS 4 3 0 0 0
M V30 BEGIN ATOM
M V30 1 C -7.0316 2.0632 0 0 STBOX=1
M V30 2 C -5.6979 2.8332 0 0 STBOX=0
M V30 3 O -4.3642 2.0632 0 0
M V30 4 F -8.3653 2.8332 0 0
M V30 END ATOM
M V30 BEGIN BOND
M V30 1 1 2 3
M V30 2 1 1 4
M V30 3 2 1 2
M V30 END BOND
M V30 END CTAB
M END
)CTAB"_ctab;
REQUIRE(mol);
CHECK(mol->getNumAtoms() == 4);
REQUIRE(mol->getBondBetweenAtoms(0, 1));
CHECK(!mol->getBondBetweenAtoms(0, 1)->hasProp(
common_properties::molStereoCare));
}
SECTION("bonds set if the atoms are also set v2k") {
auto mol = R"CTAB(basic test
Mrv1810 01292015042D
4 3 0 0 0 0 999 V2000
-3.7669 1.1053 0.0000 C 0 0 0 0 1 0 0 0 0 0 0 0
-3.0524 1.5178 0.0000 C 0 0 0 0 1 0 0 0 0 0 0 0
-2.3380 1.1053 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0
-4.4814 1.5178 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0
2 3 1 0 0 0 0
1 4 1 0 0 0 0
1 2 2 0 0 0 0
M END
)CTAB"_ctab;
REQUIRE(mol);
CHECK(mol->getNumAtoms() == 4);
int val;
REQUIRE(mol->getBondBetweenAtoms(0, 1));
CHECK(mol->getBondBetweenAtoms(0, 1)->getPropIfPresent(
common_properties::molStereoCare, val));
CHECK(val == 1);
}
}
TEST_CASE("github #2829: support MRV_IMPLICIT_H", "[feature][sgroups]") {
SECTION("basics v2k") {
auto mol = R"CTAB(
Mrv1810 01302015262D
5 5 0 0 0 0 999 V2000
1.1387 -1.3654 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
0.6538 -0.6979 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
1.1387 -0.0305 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0
1.9233 -0.2854 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
1.9233 -1.1104 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
1 2 4 0 0 0 0
2 3 4 0 0 0 0
3 4 4 0 0 0 0
1 5 4 0 0 0 0
4 5 4 0 0 0 0
M STY 1 1 DAT
M SAL 1 1 3
M SDT 1 MRV_IMPLICIT_H
M SDD 1 0.0000 0.0000 DR ALL 0 0
M SED 1 IMPL_H1
M END
)CTAB"_ctab;
REQUIRE(mol);
CHECK(MolToSmiles(*mol) == "c1cc[nH]c1");
}
SECTION("basics v3k") {
auto mol = R"CTAB(
Mrv1810 01302015452D
0 0 0 0 0 999 V3000
M V30 BEGIN CTAB
M V30 COUNTS 5 5 1 0 0
M V30 BEGIN ATOM
M V30 1 C 2.1256 -2.5487 0 0
M V30 2 C 1.2204 -1.3027 0 0
M V30 3 N 2.1256 -0.0569 0 0
M V30 4 C 3.5902 -0.5327 0 0
M V30 5 C 3.5902 -2.0727 0 0
M V30 END ATOM
M V30 BEGIN BOND
M V30 1 4 1 2
M V30 2 4 2 3
M V30 3 4 3 4
M V30 4 4 1 5
M V30 5 4 4 5
M V30 END BOND
M V30 BEGIN SGROUP
M V30 1 DAT 0 ATOMS=(1 3) FIELDNAME=MRV_IMPLICIT_H -
M V30 FIELDDISP=" 0.0000 0.0000 DR ALL 0 0" -
M V30 FIELDDATA=IMPL_H1
M V30 END SGROUP
M V30 END CTAB
M END
)CTAB"_ctab;
REQUIRE(mol);
CHECK(MolToSmiles(*mol) == "c1cc[nH]c1");
// we removed all the S groups:
CHECK(getSubstanceGroups(*mol).empty());
}
SECTION("v3k two groups") {
auto mol = R"CTAB(
Mrv1810 01302016392D
12 14 0 0 0 0 999 V2000
1.1387 -1.3654 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
0.6538 -0.6979 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
1.1387 -0.0305 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0
1.9233 -0.2854 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
1.9233 -1.1104 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
2.6378 0.1271 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
2.6378 -1.5229 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
3.3522 -1.1104 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
3.3522 -0.2854 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
4.1369 -1.3653 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0
4.1369 -0.0305 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
4.6218 -0.6979 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
1 2 4 0 0 0 0
2 3 4 0 0 0 0
3 4 4 0 0 0 0
1 5 4 0 0 0 0
4 5 4 0 0 0 0
7 8 1 0 0 0 0
6 9 1 0 0 0 0
5 7 1 0 0 0 0
6 4 1 0 0 0 0
11 12 4 0 0 0 0
10 12 4 0 0 0 0
9 11 4 0 0 0 0
10 8 4 0 0 0 0
8 9 4 0 0 0 0
M STY 2 1 DAT 2 DAT
M SAL 1 1 3
M SDT 1 MRV_IMPLICIT_H
M SDD 1 0.0000 0.0000 DR ALL 0 0
M SED 1 IMPL_H1
M SAL 2 1 10
M SDT 2 MRV_IMPLICIT_H
M SDD 2 0.0000 0.0000 DR ALL 0 0
M SED 2 IMPL_H1
M END
)CTAB"_ctab;
REQUIRE(mol);
CHECK(MolToSmiles(*mol) == "c1cc2c([nH]1)Cc1cc[nH]c1C2");
// we removed all the S groups:
CHECK(getSubstanceGroups(*mol).empty());
}
SECTION("removal leaves other s groups intact") {
auto mol = R"CTAB(
Mrv1810 02022006062D
0 0 0 0 0 999 V3000
M V30 BEGIN CTAB
M V30 COUNTS 6 6 2 0 0
M V30 BEGIN ATOM
M V30 1 C 2.1256 -2.5487 0 0
M V30 2 C 1.2204 -1.3027 0 0
M V30 3 N 2.1256 -0.0569 0 0
M V30 4 C 3.5902 -0.5327 0 0
M V30 5 C 3.5902 -2.0727 0 0
M V30 6 C 4.8361 -2.9778 0 0
M V30 END ATOM
M V30 BEGIN BOND
M V30 1 4 1 2
M V30 2 4 2 3
M V30 3 4 3 4
M V30 4 4 1 5
M V30 5 4 4 5
M V30 6 1 5 6
M V30 END BOND
M V30 BEGIN SGROUP
M V30 1 DAT 0 ATOMS=(1 6) FIELDNAME=some_data -
M V30 FIELDDISP=" 4.8361 -2.9778 DAU ALL 0 0" -
M V30 MRV_FIELDDISP=0 FIELDDATA=foo
M V30 2 DAT 0 ATOMS=(1 3) FIELDNAME=MRV_IMPLICIT_H -
M V30 FIELDDISP=" 0.0000 0.0000 DR ALL 0 0" -
M V30 FIELDDATA=IMPL_H1
M V30 END SGROUP
M V30 END CTAB
M END
)CTAB"_ctab;
REQUIRE(mol);
CHECK(MolToSmiles(*mol) == "Cc1cc[nH]c1");
CHECK(getSubstanceGroups(*mol).size() == 1);
}
}
TEST_CASE("extra v3k mol file properties", "[ctab][v3k]") {
SECTION("ATTCHPT") {
auto mol = R"CTAB(
Mrv2007 03132014352D
0 0 0 0 0 999 V3000
M V30 BEGIN CTAB
M V30 COUNTS 3 2 0 0 0
M V30 BEGIN ATOM
M V30 1 C -16.625 7.1667 0 0 ATTCHPT=2
M V30 2 C -15.2913 7.9367 0 0 ATTCHPT=1
M V30 3 N -13.9576 7.1667 0 0
M V30 END ATOM
M V30 BEGIN BOND
M V30 1 1 1 2
M V30 2 1 2 3
M V30 END BOND
M V30 END CTAB
M END
)CTAB"_ctab;
REQUIRE(mol);
CHECK(mol->getAtomWithIdx(0)->getProp<int>(
common_properties::molAttachPoint) == 2);
CHECK(mol->getAtomWithIdx(1)->getProp<int>(
common_properties::molAttachPoint) == 1);
auto molb = MolToV3KMolBlock(*mol);
CHECK(molb.find("ATTCHPT=1") != std::string::npos);
CHECK(molb.find("ATTCHPT=2") != std::string::npos);
}
SECTION("others") {
// this is not reasonable; just there to ensure that the reading/writing is
// working
auto mol = R"CTAB(really fake
Mrv2007 03132015062D
0 0 0 0 0 999 V3000
M V30 BEGIN CTAB
M V30 COUNTS 5 4 0 0 0
M V30 BEGIN ATOM
M V30 1 C -22.5833 11.0833 0 0 EXACHG=1
M V30 2 C -21.2497 11.8533 0 0 INVRET=2
M V30 3 C -23.917 11.8533 0 0 ATTCHORD=3
M V30 4 C -25.2507 11.0833 0 0 CLASS=foo
M V30 5 C -26.5844 11.8533 0 0 SEQID=4
M V30 END ATOM
M V30 BEGIN BOND
M V30 1 1 1 2
M V30 2 1 1 3
M V30 3 1 3 4
M V30 4 1 4 5
M V30 END BOND
M V30 END CTAB
M END
)CTAB"_ctab;
REQUIRE(mol);
CHECK(mol->getAtomWithIdx(0)->getProp<int>(
common_properties::molRxnExactChange) == 1);
CHECK(mol->getAtomWithIdx(1)->getProp<int>(
common_properties::molInversionFlag) == 2);
CHECK(mol->getAtomWithIdx(2)->getProp<int>(
common_properties::molAttachOrder) == 3);
CHECK(mol->getAtomWithIdx(3)->getProp<std::string>(
common_properties::molAtomClass) == "foo");
CHECK(mol->getAtomWithIdx(4)->getProp<int>(
common_properties::molAtomSeqId) == 4);
auto molb = MolToV3KMolBlock(*mol);
CHECK(molb.find("EXACHG=1") != std::string::npos);
CHECK(molb.find("INVRET=2") != std::string::npos);
CHECK(molb.find("ATTCHORD=3") != std::string::npos);
CHECK(molb.find("CLASS=foo") != std::string::npos);
CHECK(molb.find("SEQID=4") != std::string::npos);
}
SECTION("SUBST") {
auto mol = R"CTAB(test
Mrv2007 03132018122D
0 0 0 0 0 999 V3000
M V30 BEGIN CTAB
M V30 COUNTS 4 3 0 0 0
M V30 BEGIN ATOM
M V30 1 C -16.6248 7.1666 0 0 SUBST=3
M V30 2 C -15.2911 7.9366 0 0 SUBST=-2
M V30 3 N -13.9574 7.1666 0 0 SUBST=-1
M V30 4 C -17.9585 7.9366 0 0 SUBST=6
M V30 END ATOM
M V30 BEGIN BOND
M V30 1 1 1 2
M V30 2 1 2 3
M V30 3 1 1 4
M V30 END BOND
M V30 END CTAB
M END
)CTAB"_ctab;
REQUIRE(mol);
auto smarts = MolToSmarts(*mol);
CHECK(smarts == "[#6&D3](-[#6&D2]-[#7&D0])-[#6&D{6-}]");
auto molb = MolToV3KMolBlock(*mol);
CHECK(molb.find("SUBST=3") != std::string::npos);
CHECK(molb.find("SUBST=-2") != std::string::npos);
CHECK(molb.find("SUBST=-1") != std::string::npos);
}
SECTION("bond props") {
auto mol = R"CTAB(bogus example
Mrv2007 03132017102D
0 0 0 0 0 999 V3000
M V30 BEGIN CTAB
M V30 COUNTS 8 7 0 0 0
M V30 BEGIN ATOM
M V30 1 C -28.125 8.2067 0 0
M V30 2 C -26.7913 7.4367 0 0
M V30 3 C -26.7913 5.8967 0 0
M V30 4 C -28.125 5.1267 0 0
M V30 5 N -29.4587 5.8967 0 0
M V30 6 C -29.4587 7.4367 0 0
M V30 7 * -27.2359 7.18 0 0
M V30 8 R# -25.2354 8.335 0 0 RGROUPS=(1 1)
M V30 END ATOM
M V30 BEGIN BOND
M V30 1 1 1 2
M V30 2 2 2 3
M V30 3 1 3 4
M V30 4 2 4 5
M V30 5 1 5 6
M V30 6 2 1 6 RXCTR=1
M V30 7 1 7 8 ENDPTS=(3 1 2 3) ATTACH=ANY
M V30 END BOND
M V30 END CTAB
M END)CTAB"_ctab;
REQUIRE(mol);
auto molb = MolToV3KMolBlock(*mol);
CHECK(molb.find("ENDPTS=(3 1 2 3) ATTACH=ANY") != std::string::npos);
CHECK(molb.find("RXCTR=1") != std::string::npos);
}
}
TEST_CASE(
"Problems parsing SGroup abbreviations with multiple attachment points",
"[bug][parser]") {
std::string rdbase = getenv("RDBASE");
SECTION("basics") {
std::string fName =
rdbase + "/Code/GraphMol/FileParsers/test_data/sgroup_ap_bug.mol";
std::unique_ptr<RWMol> mol(MolFileToMol(fName));
REQUIRE(mol);
const auto &sgroups = getSubstanceGroups(*mol);
CHECK(sgroups.size() == 3);
CHECK(sgroups[0].hasProp("TYPE"));
CHECK(sgroups[0].getProp<std::string>("TYPE") == "SUP");
CHECK(sgroups[0].getAttachPoints().size() == 1);
CHECK(sgroups[1].hasProp("TYPE"));
CHECK(sgroups[1].getProp<std::string>("TYPE") == "SUP");
CHECK(sgroups[1].getAttachPoints().size() == 1);
CHECK(sgroups[2].hasProp("TYPE"));
CHECK(sgroups[2].getProp<std::string>("TYPE") == "SUP");
CHECK(sgroups[2].getAttachPoints().size() == 2);
}
}
TEST_CASE(
"github #3207: Attachment point info not being read from V2000 mol blocks",
"[ctab][bug]") {
SECTION("ATTCHPT") {
auto mol = R"CTAB(
Mrv1824 06092009122D
3 2 0 0 0 0 999 V2000
-8.9061 3.8393 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-8.1917 4.2518 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-7.4772 3.8393 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0
1 2 1 0 0 0 0
2 3 1 0 0 0 0
M APO 2 1 2 2 1
M END
)CTAB"_ctab;
REQUIRE(mol);
CHECK(mol->getAtomWithIdx(0)->getProp<int>(
common_properties::molAttachPoint) == 2);
CHECK(mol->getAtomWithIdx(1)->getProp<int>(
common_properties::molAttachPoint) == 1);
auto molb = MolToV3KMolBlock(*mol);
CHECK(molb.find("ATTCHPT=1") != std::string::npos);
CHECK(molb.find("ATTCHPT=2") != std::string::npos);
}
SECTION("Val=-1") {
auto mol = R"CTAB(
Mrv1824 06092009122D
3 2 0 0 0 0 999 V2000
-8.9061 3.8393 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-8.1917 4.2518 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-7.4772 3.8393 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0
1 2 1 0 0 0 0
2 3 1 0 0 0 0
M APO 2 1 3 2 1
M END
)CTAB"_ctab;
REQUIRE(mol);
CHECK(mol->getAtomWithIdx(0)->getProp<int>(
common_properties::molAttachPoint) == -1);
CHECK(mol->getAtomWithIdx(1)->getProp<int>(
common_properties::molAttachPoint) == 1);
auto molb = MolToV3KMolBlock(*mol);
CHECK(molb.find("ATTCHPT=1") != std::string::npos);
CHECK(molb.find("ATTCHPT=-1") != std::string::npos);
}
}
TEST_CASE("XBHEAD and XBCORR causing parser failures", "[bug][reader]") {
std::string rdbase = getenv("RDBASE");
SECTION("basics") {
std::string fName =
rdbase +
"/Code/GraphMol/FileParsers/sgroup_test_data/repeat_groups_query1.mol";
std::unique_ptr<RWMol> mol(MolFileToMol(fName));
REQUIRE(mol);
const auto &sgroups = getSubstanceGroups(*mol);
CHECK(sgroups.size() == 1);
CHECK(sgroups[0].hasProp("TYPE"));
CHECK(sgroups[0].getProp<std::string>("TYPE") == "SRU");
CHECK(sgroups[0].hasProp("XBHEAD"));
auto v = sgroups[0].getProp<std::vector<unsigned int>>("XBHEAD");
CHECK(v.size() == 2);
CHECK(v[0] == 5);
CHECK(v[1] == 0);
CHECK(sgroups[0].hasProp("XBCORR"));
CHECK(sgroups[0].getProp<std::vector<unsigned int>>("XBCORR").size() == 4);
auto mb = MolToV3KMolBlock(*mol);
CHECK(mb.find("XBHEAD=(2 6 1)") != std::string::npos);
CHECK(mb.find("XBCORR=(4 6 6 1 1)") != std::string::npos);
}
}
TEST_CASE("LINKNODE information being ignored", "[ctab][bug]") {
SECTION("v3000") {
auto mol = R"CTAB(
Mrv2007 06212005162D
0 0 0 0 0 999 V3000
M V30 BEGIN CTAB
M V30 COUNTS 5 5 0 0 0
M V30 BEGIN ATOM
M V30 1 C -3.25 12.2683 0 0
M V30 2 C -4.4959 11.3631 0 0
M V30 3 C -4.02 9.8986 0 0
M V30 4 C -2.48 9.8986 0 0
M V30 5 C -2.0041 11.3631 0 0
M V30 END ATOM
M V30 BEGIN BOND
M V30 1 1 1 2
M V30 2 1 2 3
M V30 3 1 3 4
M V30 4 1 4 5
M V30 5 1 1 5
M V30 END BOND
M V30 LINKNODE 1 3 2 1 2 1 5
M V30 LINKNODE 1 4 2 4 3 4 5
M V30 END CTAB
M END
)CTAB"_ctab;
REQUIRE(mol);
CHECK(mol->getProp<std::string>(common_properties::molFileLinkNodes) ==
"1 3 2 1 2 1 5|1 4 2 4 3 4 5");
auto molb = MolToV3KMolBlock(*mol);
CHECK(molb.find("LINKNODE 1 3 2 1 2 1 5") != std::string::npos);
CHECK(molb.find("LINKNODE 1 4 2 4 3 4 5") != std::string::npos);
}
SECTION("v2000") {
auto mol = R"CTAB(
Mrv2007 06222015182D
5 5 0 0 0 0 999 V2000
-1.7411 6.5723 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-2.4085 6.0874 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-2.1536 5.3028 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-1.3286 5.3028 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-1.0736 6.0874 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
1 2 1 0 0 0 0
2 3 1 0 0 0 0
3 4 1 0 0 0 0
4 5 1 0 0 0 0
1 5 1 0 0 0 0
M LIN 2 1 3 2 5 4 4 3 5
M END
)CTAB"_ctab;
REQUIRE(mol);
CHECK(mol->getProp<std::string>(common_properties::molFileLinkNodes) ==
"1 3 2 1 2 1 5|1 4 2 4 3 4 5");
auto molb = MolToV3KMolBlock(*mol);
CHECK(molb.find("LINKNODE 1 3 2 1 2 1 5") != std::string::npos);
CHECK(molb.find("LINKNODE 1 4 2 4 3 4 5") != std::string::npos);
}
}
TEST_CASE("more complex queries in CTAB parsers", "[ctab]") {
SECTION("v3000") {
auto mol = R"CTAB(*.*.*.*.*.*.*.* |$;Q_e;M_p;X_p;AH_p;QH_p;MH_p;XH_p$|
manual 06272007272D
0 0 0 0 0 999 V3000
M V30 BEGIN CTAB
M V30 COUNTS 8 0 0 0 0
M V30 BEGIN ATOM
M V30 1 A -3.2083 5.25 0 0
M V30 2 Q -0.25 6 0 0
M V30 3 M 4.5417 6.0417 0 0
M V30 4 X 1.2917 4.2083 0 0
M V30 5 AH -4.2083 5.25 0 0
M V30 6 QH -1.25 6 0 0
M V30 7 MH 3.5417 6.0417 0 0
M V30 8 XH 0.2917 4.2083 0 0
M V30 END ATOM
M V30 END CTAB
M END
)CTAB"_ctab;
REQUIRE(mol);
for (const auto atom : mol->atoms()) {
REQUIRE(atom->hasQuery());
CHECK(!atom->getQuery()->getTypeLabel().empty());
}
std::string pkl;
MolPickler::pickleMol(*mol, pkl);
ROMol cp(pkl);
for (const auto atom : cp.atoms()) {
REQUIRE(atom->hasQuery());
CHECK(!atom->getQuery()->getTypeLabel().empty());
CHECK(atom->getQuery()->getTypeLabel() ==
mol->getAtomWithIdx(atom->getIdx())->getQuery()->getTypeLabel());
}
auto molb = MolToV3KMolBlock(*mol);
CHECK(molb.find(" A ") != std::string::npos);
CHECK(molb.find(" AH ") != std::string::npos);
CHECK(molb.find(" Q ") != std::string::npos);
CHECK(molb.find(" QH ") != std::string::npos);
CHECK(molb.find(" M ") != std::string::npos);
CHECK(molb.find(" MH ") != std::string::npos);
CHECK(molb.find(" X ") != std::string::npos);
CHECK(molb.find(" XH ") != std::string::npos);
}
SECTION("v2000") {
auto mol = R"CTAB(*.*.*.*.*.*.*.* |$;Q_e;M_p;X_p;AH_p;QH_p;MH_p;XH_p$|
manual 06272007272D
8 0 0 0 0 0 999 V2000
-3.2083 5.2500 0.0000 A 0 0 0 0 0 0 0 0 0 0 0 0
-0.2500 6.0000 0.0000 Q 0 0 0 0 0 0 0 0 0 0 0 0
4.5417 6.0417 0.0000 M 0 0 0 0 0 0 0 0 0 0 0 0
1.2917 4.2083 0.0000 X 0 0 0 0 0 0 0 0 0 0 0 0
-4.2083 5.2500 0.0000 AH 0 0 0 0 0 0 0 0 0 0 0 0
-1.2500 6.0000 0.0000 QH 0 0 0 0 0 0 0 0 0 0 0 0
3.5417 6.0417 0.0000 MH 0 0 0 0 0 0 0 0 0 0 0 0
0.2917 4.2083 0.0000 XH 0 0 0 0 0 0 0 0 0 0 0 0
M END
)CTAB"_ctab;
REQUIRE(mol);
for (const auto atom : mol->atoms()) {
REQUIRE(atom->hasQuery());
CHECK(!atom->getQuery()->getTypeLabel().empty());
}
std::string pkl;
MolPickler::pickleMol(*mol, pkl);
ROMol cp(pkl);
for (const auto atom : cp.atoms()) {
REQUIRE(atom->hasQuery());
CHECK(!atom->getQuery()->getTypeLabel().empty());
CHECK(atom->getQuery()->getTypeLabel() ==
mol->getAtomWithIdx(atom->getIdx())->getQuery()->getTypeLabel());
}
auto molb = MolToMolBlock(*mol);
CHECK(molb.find(" A ") != std::string::npos);
CHECK(molb.find(" AH ") != std::string::npos);
CHECK(molb.find(" Q ") != std::string::npos);
CHECK(molb.find(" QH ") != std::string::npos);
CHECK(molb.find(" M ") != std::string::npos);
CHECK(molb.find(" MH ") != std::string::npos);
CHECK(molb.find(" X ") != std::string::npos);
CHECK(molb.find(" XH ") != std::string::npos);
/// SMARTS-based queries are not written for these:
CHECK(molb.find("V ") == std::string::npos);
}
}
TEST_CASE("read metadata from PNG", "[reader][PNG]") {
std::string rdbase = getenv("RDBASE");
SECTION("basics") {
std::string fname =
rdbase + "/Code/GraphMol/FileParsers/test_data/colchicine.png";
auto metadata = PNGFileToMetadata(fname);
auto iter =
std::find_if(metadata.begin(), metadata.end(),
[](const std::pair<std::string, std::string> &val) {
return boost::starts_with(val.first, PNGData::smilesTag);
});
REQUIRE(iter != metadata.end());
CHECK(
iter->second ==
"COc1cc2c(-c3ccc(OC)c(=O)cc3[C@@H](NC(C)=O)CC2)c(OC)c1OC "
"|(6.46024,1.03002,;5.30621,1.98825,;3.89934,1.46795,;2.74531,2.42618,;"
"1.33844,1.90588,;1.0856,0.427343,;-0.228013,-0.296833,;0.1857,-1."
"73865,;-0.683614,-2.96106,;-2.18134,-3.04357,;-2.75685,-4.42878,;-4."
"24422,-4.62298,;-3.17967,-1.92404,;-4.62149,-2.33775,;-2.92683,-0."
"445502,;-1.61322,0.278673,;-2.02693,1.72049,;-3.50547,1.97333,;-4."
"02577,3.3802,;-5.50431,3.63304,;-3.06754,4.53423,;-1.15762,2.9429,;0."
"340111,3.02541,;2.23963,-0.530891,;1.98679,-2.00943,;3.14082,-2.96766,"
";3.6465,-0.0105878,;4.80053,-0.968822,;4.54769,-2.44736,)|");
}
SECTION("no metadata") {
std::string fname =
rdbase +
"/Code/GraphMol/FileParsers/test_data/colchicine.no_metadata.png";
auto metadata = PNGFileToMetadata(fname);
REQUIRE(metadata.empty());
}
SECTION("bad PNG") {
std::string text = "NOT A PNG";
REQUIRE_THROWS_AS(PNGStringToMetadata(text), FileParseException);
}
SECTION("truncated PNG") {
std::string fname =
rdbase + "/Code/GraphMol/FileParsers/test_data/colchicine.png";
auto istr = std::ifstream(fname, std::ios_base::binary);
istr.seekg(0, istr.end);
auto sz = istr.tellg();
istr.seekg(0, istr.beg);
char *buff = new char[sz];
istr.read(buff, sz);
std::string data(buff, sz);
delete[] buff;
auto metadata = PNGStringToMetadata(data);
REQUIRE(!metadata.empty());
REQUIRE_THROWS_AS(PNGStringToMetadata(data.substr(1000)),
FileParseException);
}
#ifdef RDK_USE_BOOST_IOSTREAMS
SECTION("compressed metadata") {
std::string fname =
rdbase + "/Code/GraphMol/FileParsers/test_data/colchicine.mrv.png";
auto metadata = PNGFileToMetadata(fname);
auto iter =
std::find_if(metadata.begin(), metadata.end(),
[](const std::pair<std::string, std::string> &val) {
return val.first == "molSource";
});
REQUIRE(iter != metadata.end());
CHECK(iter->second.find("<MChemicalStruct>") != std::string::npos);
}
#endif
}
TEST_CASE("write metadata to PNG", "[writer][PNG]") {
std::string rdbase = getenv("RDBASE");
SECTION("basics") {
std::string fname =
rdbase +
"/Code/GraphMol/FileParsers/test_data/colchicine.no_metadata.png";
std::vector<std::pair<std::string, std::string>> metadata;
metadata.push_back(std::make_pair(
PNGData::smilesTag,
std::string(
"COc1cc2c(-c3ccc(OC)c(=O)cc3[C@@H](NC(C)=O)CC2)c(OC)c1OC "
"|(6.46024,1.03002,;5.30621,1.98825,;3.89934,1.46795,;2.74531,2."
"42618,;1.33844,1.90588,;1.0856,0.427343,;-0.228013,-0.296833,;0."
"1857,-1.73865,;-0.683614,-2.96106,;-2.18134,-3.04357,;-2.75685,-4."
"42878,;-4.24422,-4.62298,;-3.17967,-1.92404,;-4.62149,-2.33775,;-"
"2.92683,-0.445502,;-1.61322,0.278673,;-2.02693,1.72049,;-3.50547,"
"1.97333,;-4.02577,3.3802,;-5.50431,3.63304,;-3.06754,4.53423,;-1."
"15762,2.9429,;0.340111,3.02541,;2.23963,-0.530891,;1.98679,-2."
"00943,;3.14082,-2.96766,;3.6465,-0.0105878,;4.80053,-0.968822,;4."
"54769,-2.44736,)|")));
auto pngData = addMetadataToPNGFile(fname, metadata);
std::ofstream ofs("write_metadata.png");
ofs.write(pngData.c_str(), pngData.size());
ofs.flush();
auto ometadata = PNGStringToMetadata(pngData);
REQUIRE(ometadata.size() == metadata.size());
for (unsigned int i = 0; i < ometadata.size(); ++i) {
CHECK(ometadata[i].first == metadata[i].first);
CHECK(ometadata[i].second == metadata[i].second);
}
}
}
TEST_CASE("read molecule from PNG", "[reader][PNG]") {
std::string rdbase = getenv("RDBASE");
SECTION("smiles") {
std::string fname =
rdbase + "/Code/GraphMol/FileParsers/test_data/colchicine.png";
std::unique_ptr<ROMol> mol(PNGFileToMol(fname));
REQUIRE(mol);
CHECK(mol->getNumAtoms() == 29);
CHECK(mol->getNumConformers() == 1);
}
SECTION("mol") {
std::string fname =
rdbase + "/Code/GraphMol/FileParsers/test_data/colchicine.mol.png";
std::unique_ptr<ROMol> mol(PNGFileToMol(fname));
REQUIRE(mol);
CHECK(mol->getNumAtoms() == 29);
CHECK(mol->getNumConformers() == 1);
}
SECTION("no metadata") {
std::string fname =
rdbase +
"/Code/GraphMol/FileParsers/test_data/colchicine.no_metadata.png";
REQUIRE_THROWS_AS(PNGFileToMol(fname), FileParseException);
}
}
TEST_CASE("write molecule to PNG", "[writer][PNG]") {
std::string rdbase = getenv("RDBASE");
SECTION("basics") {
std::string fname =
rdbase +
"/Code/GraphMol/FileParsers/test_data/colchicine.no_metadata.png";
std::ifstream strm(fname, std::ios::in | std::ios::binary);
auto colchicine =
"COc1cc2c(c(OC)c1OC)-c1ccc(OC)c(=O)cc1[C@@H](NC(C)=O)CC2"_smiles;
REQUIRE(colchicine);
auto pngString = addMolToPNGStream(*colchicine, strm);
// read it back out
std::unique_ptr<ROMol> mol(PNGStringToMol(pngString));
REQUIRE(mol);
CHECK(mol->getNumAtoms() == 29);
CHECK(mol->getNumConformers() == 0);
}
SECTION("use SMILES") {
std::string fname =
rdbase +
"/Code/GraphMol/FileParsers/test_data/colchicine.no_metadata.png";
std::ifstream strm(fname, std::ios::in | std::ios::binary);
auto colchicine =
"COc1cc2c(c(OC)c1OC)-c1ccc(OC)c(=O)cc1[C@@H](NC(C)=O)CC2"_smiles;
REQUIRE(colchicine);
bool includePkl = false;
auto pngString = addMolToPNGStream(*colchicine, strm, includePkl);
// read it back out
std::unique_ptr<ROMol> mol(PNGStringToMol(pngString));
REQUIRE(mol);
CHECK(mol->getNumAtoms() == 29);
CHECK(mol->getNumConformers() == 0);
}
SECTION("use MOL") {
std::string fname =
rdbase +
"/Code/GraphMol/FileParsers/test_data/colchicine.no_metadata.png";
std::ifstream strm(fname, std::ios::in | std::ios::binary);
auto colchicine =
"COc1cc2c(c(OC)c1OC)-c1ccc(OC)c(=O)cc1[C@@H](NC(C)=O)CC2"_smiles;
REQUIRE(colchicine);
bool includePkl = false;
bool includeSmiles = false;
bool includeMol = true;
auto pngString = addMolToPNGStream(*colchicine, strm, includePkl,
includeSmiles, includeMol);
// read it back out
std::unique_ptr<ROMol> mol(PNGStringToMol(pngString));
REQUIRE(mol);
CHECK(mol->getNumAtoms() == 29);
CHECK(mol->getNumConformers() == 1);
}
}
TEST_CASE("multiple molecules in the PNG", "[writer][PNG]") {
std::string rdbase = getenv("RDBASE");
std::vector<std::string> smiles = {"c1ccccc1", "CCCOC", "c1ncccc1"};
std::vector<std::unique_ptr<ROMol>> mols;
for (const auto &smi : smiles) {
mols.emplace_back(SmilesToMol(smi));
}
SECTION("pickles") {
std::vector<std::pair<std::string, std::string>> metadata;
for (const auto &mol : mols) {
std::string pkl;
MolPickler::pickleMol(*mol, pkl);
metadata.push_back(std::make_pair(PNGData::pklTag, pkl));
}
// for the purposes of this test we'll add the metadata to an unrelated
// PNG
std::string fname =
rdbase +
"/Code/GraphMol/FileParsers/test_data/colchicine.no_metadata.png";
std::ifstream strm(fname, std::ios::in | std::ios::binary);
auto png = addMetadataToPNGStream(strm, metadata);
std::stringstream pngstrm(png);
auto molsRead = PNGStreamToMols(pngstrm);
REQUIRE(molsRead.size() == mols.size());
for (unsigned i = 0; i < molsRead.size(); ++i) {
CHECK(MolToSmiles(*molsRead[i]) == MolToSmiles(*mols[i]));
}
}
SECTION("SMILES") {
std::vector<std::pair<std::string, std::string>> metadata;
for (const auto &mol : mols) {
std::string pkl = "BOGUS";
// add bogus pickle data so we know that's not being read
metadata.push_back(std::make_pair(PNGData::pklTag, pkl));
metadata.push_back(std::make_pair(PNGData::smilesTag, MolToSmiles(*mol)));
}
// for the purposes of this test we'll add the metadata to an unrelated
// PNG
std::string fname =
rdbase +
"/Code/GraphMol/FileParsers/test_data/colchicine.no_metadata.png";
std::ifstream strm(fname, std::ios::in | std::ios::binary);
auto png = addMetadataToPNGStream(strm, metadata);
std::stringstream pngstrm(png);
auto molsRead = PNGStreamToMols(pngstrm, PNGData::smilesTag);
REQUIRE(molsRead.size() == mols.size());
for (unsigned i = 0; i < molsRead.size(); ++i) {
CHECK(MolToSmiles(*molsRead[i]) == MolToSmiles(*mols[i]));
}
}
}
TEST_CASE("multiple molecules in the PNG, second example", "[writer][PNG]") {
std::string rdbase = getenv("RDBASE");
std::vector<std::string> smiles = {"c1ccccc1", "CCO", "CC(=O)O", "c1ccccn1"};
std::vector<std::unique_ptr<ROMol>> mols;
for (const auto &smi : smiles) {
mols.emplace_back(SmilesToMol(smi));
}
SECTION("pickles") {
std::string fname =
rdbase + "/Code/GraphMol/FileParsers/test_data/multiple_mols.png";
std::ifstream strm(fname, std::ios::in | std::ios::binary);
auto molsRead = PNGStreamToMols(strm);
REQUIRE(molsRead.size() == mols.size());
for (unsigned i = 0; i < molsRead.size(); ++i) {
CHECK(MolToSmiles(*molsRead[i]) == MolToSmiles(*mols[i]));
}
}
SECTION("SMILES") {
std::vector<std::pair<std::string, std::string>> metadata;
for (const auto &mol : mols) {
std::string pkl = "BOGUS";
// add bogus pickle data so we know that's not being read
metadata.push_back(std::make_pair(PNGData::pklTag, pkl));
metadata.push_back(std::make_pair(PNGData::smilesTag, MolToSmiles(*mol)));
}
// for the purposes of this test we'll add the metadata to an unrelated
// PNG
std::string fname =
rdbase +
"/Code/GraphMol/FileParsers/test_data/colchicine.no_metadata.png";
std::ifstream strm(fname, std::ios::in | std::ios::binary);
auto png = addMetadataToPNGStream(strm, metadata);
std::stringstream pngstrm(png);
auto molsRead = PNGStreamToMols(pngstrm, PNGData::smilesTag);
REQUIRE(molsRead.size() == mols.size());
for (unsigned i = 0; i < molsRead.size(); ++i) {
CHECK(MolToSmiles(*molsRead[i]) == MolToSmiles(*mols[i]));
}
}
}
TEST_CASE("github #3413: V3K mol blocks with no atoms fail to parse", "[bug]") {
SECTION("basics") {
auto m = R"CTAB(6065
RDKit 2D
0 0 0 0 0 0 0 0 0 0999 V3000
M V30 BEGIN CTAB
M V30 COUNTS 0 0 0 0 0
M V30 BEGIN ATOM
M V30 END ATOM
M V30 END CTAB
M END)CTAB"_ctab;
REQUIRE(m);
CHECK(m->getNumAtoms() == 0);
CHECK(m->getNumBonds() == 0);
}
}
TEST_CASE("github #3415: problem parsing SGroup data containing \" ", "[bug]") {
SECTION("basics") {
auto m = R"CTAB(
Mrv2014 09172018222D
0 0 0 0 0 999 V3000
M V30 BEGIN CTAB
M V30 COUNTS 6 6 1 0 0
M V30 BEGIN ATOM
M V30 1 C 1.3337 2.31 0 0
M V30 2 C 2.6674 1.54 0 0
M V30 3 C 2.6674 -0 0 0
M V30 4 C 1.3337 -0.77 0 0
M V30 5 C 0 0 0 0
M V30 6 C 0 1.54 0 0
M V30 END ATOM
M V30 BEGIN BOND
M V30 1 2 1 2
M V30 2 1 2 3
M V30 3 2 3 4
M V30 4 1 4 5
M V30 5 2 5 6
M V30 6 1 1 6
M V30 END BOND
M V30 BEGIN SGROUP
M V30 1 DAT 0 ATOMS=(1 1) FIELDNAME=Tempstruct FIELDINFO="""" -
M V30 FIELDDISP=" 2.1037 1.5400 DA ALL 0 0" QUERYOP="""" -
M V30 FIELDDATA=Foo1
M V30 END SGROUP
M V30 END CTAB
M END
)CTAB"_ctab;
REQUIRE(m);
CHECK(m->getNumAtoms() == 6);
CHECK(m->getNumBonds() == 6);
auto sgs = getSubstanceGroups(*m);
REQUIRE(sgs.size() == 1);
CHECK(sgs[0].getProp<std::string>("TYPE") == "DAT");
CHECK(sgs[0].getProp<std::string>("FIELDINFO") == "\"");
CHECK(sgs[0].getProp<std::string>("QUERYOP") == "\"");
}
SECTION("empty string") {
auto m = R"CTAB(
Mrv2014 09172018222D
0 0 0 0 0 999 V3000
M V30 BEGIN CTAB
M V30 COUNTS 6 6 1 0 0
M V30 BEGIN ATOM
M V30 1 C 1.3337 2.31 0 0
M V30 2 C 2.6674 1.54 0 0
M V30 3 C 2.6674 -0 0 0
M V30 4 C 1.3337 -0.77 0 0
M V30 5 C 0 0 0 0
M V30 6 C 0 1.54 0 0
M V30 END ATOM
M V30 BEGIN BOND
M V30 1 2 1 2
M V30 2 1 2 3
M V30 3 2 3 4
M V30 4 1 4 5
M V30 5 2 5 6
M V30 6 1 1 6
M V30 END BOND
M V30 BEGIN SGROUP
M V30 1 DAT 0 ATOMS=(1 1) FIELDNAME=Tempstruct FIELDINFO="" -
M V30 FIELDDISP=" 2.1037 1.5400 DA ALL 0 0" QUERYOP="""" -
M V30 FIELDDATA=Foo1
M V30 END SGROUP
M V30 END CTAB
M END
)CTAB"_ctab;
REQUIRE(m);
CHECK(m->getNumAtoms() == 6);
CHECK(m->getNumBonds() == 6);
auto sgs = getSubstanceGroups(*m);
REQUIRE(sgs.size() == 1);
CHECK(sgs[0].getProp<std::string>("TYPE") == "DAT");
CHECK(sgs[0].getProp<std::string>("FIELDINFO").empty());
CHECK(sgs[0].getProp<std::string>("QUERYOP") == "\"");
}
}
TEST_CASE("github #3597: Scientific notation in SDF V3000 files", "[bug]") {
SECTION("basics") {
auto m = R"CTAB(
Mrv2020 11302014062D
2 1 0 0 0 0 999 V2000
-2.8125 1.9196 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-2.0980 2.3321 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
1 2 1 0 0 0 0
M END
)CTAB"_ctab;
REQUIRE(m);
m->getConformer().getAtomPos(0).z = 1e-6;
m->getConformer().getAtomPos(1).z = 1e-4;
auto mb = MolToV3KMolBlock(*m);
CHECK(mb.find("1e-06") == std::string::npos);
}
SECTION("toosmall") {
auto m = R"CTAB(
Mrv2020 11302014062D
2 1 0 0 0 0 999 V2000
-2.8125 1.9196 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-2.0980 2.3321 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
1 2 1 0 0 0 0
M END
)CTAB"_ctab;
REQUIRE(m);
m->getConformer().getAtomPos(0).z = 1e-17;
m->getConformer().getAtomPos(1).z = 1e-4;
auto mb = MolToV3KMolBlock(*m);
// std::cerr<<mb<<std::endl;
CHECK(mb.find("M V30 1 C -2.812500 1.919600 0.000000 0") !=
std::string::npos);
}
}
TEST_CASE("github #3620: V3K mol block parser not saving the chiral flag",
"[bug]") {
SECTION("basics") {
auto m = R"CTAB(
Mrv2014 12082009582D
0 0 0 0 0 999 V3000
M V30 BEGIN CTAB
M V30 COUNTS 4 3 0 0 1
M V30 BEGIN ATOM
M V30 1 C -1.875 6.0417 0 0 CFG=2
M V30 2 C -0.5413 6.8117 0 0
M V30 3 F -3.2087 6.8117 0 0
M V30 4 Cl -1.875 4.5017 0 0
M V30 END ATOM
M V30 BEGIN BOND
M V30 1 1 1 3
M V30 2 1 1 4
M V30 3 1 1 2 CFG=1
M V30 END BOND
M V30 END CTAB
M END
)CTAB"_ctab;
REQUIRE(m);
unsigned int chiralFlag = 0;
CHECK(
m->getPropIfPresent(common_properties::_MolFileChiralFlag, chiralFlag));
CHECK(chiralFlag == 1);
auto mb = MolToV3KMolBlock(*m);
CHECK(mb.find("4 3 0 0 1") != std::string::npos);
}
}
TEST_CASE("test bond flavors when writing PDBs", "[bug]") {
SECTION("basics") {
std::unique_ptr<RWMol> m{SequenceToMol("G")};
REQUIRE(m);
int confId = -1;
{
int flavor = 0;
auto pdb = MolToPDBBlock(*m, confId, flavor);
CHECK(pdb.find("CONECT 1 2\n") != std::string::npos);
CHECK(pdb.find("CONECT 3 4 4 5\n") != std::string::npos);
}
{
int flavor = 2;
auto pdb = MolToPDBBlock(*m, confId, flavor);
CHECK(pdb.find("CONECT 1 2\n") == std::string::npos);
CHECK(pdb.find("CONECT 3 4 4\n") != std::string::npos);
}
{
int flavor = 8;
auto pdb = MolToPDBBlock(*m, confId, flavor);
CHECK(pdb.find("CONECT 1 2\n") != std::string::npos);
CHECK(pdb.find("CONECT 3 4 5\n") != std::string::npos);
}
{
int flavor = 2 | 8;
auto pdb = MolToPDBBlock(*m, confId, flavor);
CHECK(pdb.find("CONECT") == std::string::npos);
}
}
}
|