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 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098
|
###########################################################################
#
# File: mmcif_ddl.dic
# Date: Mon Aug 9 02:48:08 EDT 2004
#
# Created from files in CVS module dict-mmcif_ddl.dic unless noted:
# mmcif_ddl-header.dic
# mmcif_ddl-data.dic
# mmcif_ddl-def-1.dic
# mmcif_ddl-def-2.dic
#
###########################################################################
###########################################################################
#
# File: mmcif_ddl-header.dic
#
# mmCIF DDL Core Dictionary with NDB extensions
#
# This DDL dictionary is a mirror of ddl_core.dic-org with all implicit
# data items fully expanded and with NDB extensions added.
#
# Header Section
#
#
###########################################################################
data_mmcif_ddl.dic
_datablock.id mmcif_ddl.dic
_datablock.description
;
This data block holds the core DDL.
;
_dictionary.datablock_id mmcif_ddl.dic
_dictionary.title mmcif_ddl.dic
_dictionary.version 2.1.6
loop_
_dictionary_history.version
_dictionary_history.update
_dictionary_history.revision
1.1 1994-07-25
;
DDL 1.1 from Syd Hall et. al.
;
1.2.1 1994-09-18
;
Changes:.........etc. etc. John Westbrook
;
1.2.9 1994-10-05
;
Reflect the results of the Treaty of Brussels. JW.
;
2.0.1 1994-10-15
;
Adapted for closer mapping to DDL1.3 and clearer presentation. SRH/NS.
;
2.0.2 1994-10-16
;
Even closer................... SRH/NS.
;
2.0.3 1994-10-17
;
Coming to grips with the links and dependencies..... SRH/NS.
;
2.0.4 1994-10-20
;
Backed in changes from mm-ddl 1.2.12
Many other changes ... (JW)
;
2.0.5 1994-10-20
;
Some small adjustments..........SRH.
;
2.0.6 1994-10-20
;
More small adjustments..........JW.
;
2.0.7 1994-11-03
;
Changes: (JW)
+ Place all item and item_linked category definitions with the parent
item.
+ Fixed a number of not so trivial typos.
+ Corrected errors in the data type conversion table.
+ Corrected key item inconsistencies.
+ Added the item_aliases category.
;
2.0.8 1994-11-10
;
Miscellaneous corrections: (JW)
+ defined sub_category_group
+ corrected typo in category_examples.id definition
+ added _item_type_conditions.name in item category
+ added _item_structure.name in item category
+ corrected typo in item_aliases category definition
+ corrected typo in sub_category.method_id definition
;
2.0.9 1994-11-14
;
Changes: (JW)
+ added ITEM_UNITS, ITEM_UNITS_LIST, and UNITS_CONVERSION
categories.
+ added an additional primitive type for character type items
for which comparisons must be case insensitive.
Since it is customary to permit item names and category
identifiers to be specified in mixed case, it is necessary
to declare that case should NOT be considered in any
comparisons of these items.
;
2.0.10 1994-11-23
;
Changes: (JW)
+ Several name category changes for the sake of consistency:
enumeration -> item_enumeration
enumeration_default -> item_enumeration_default
enumeration_limit -> item_enumeration_limit
units_conversion -> item_units_conversion
+ Added _item_related.function_code alternate_exclusive
to identify mutually exclusive alternative declarations
of the same item.
+ Added structure options for real symmetric matrices.
+ Changed from zero based indices to one based indices
for compatibility with existing matrix component
definitions.
+ Add _item_linked.parent_name to the key of the item_linked
category.
+ Reorder items in the DDL so be alphabetical within
category groups.
;
2.0.11 1994-11-28
;
Changes: (JW)
+ Corrected spelling error for the data type code in
the DICTIONARY_HISTORY category.
+ Add category BLOCK to hold the data block name and data
block description. The block identifier was also added
to the key of the item category. The block identifier
can be implicitly derived from the STAR "data_" delimiter.
This identifier is required to form the key for categories
which are conceptually related to the data block as a
whole.
;
2.0.12 1994-11-30
;
Changes: (JW)
+ Added a data item _block.scope to indicate the scope of
data item names defined within included data blocks.
;
2.0.13 1994-12-12
;
Changes: (JW)
+ Deleted data item _block.scope.
+ Changed DICTIONARY category key to _dictionary.block_id
to guarantee only one dictionary definition per block.
+ Deleted data item _item.block_id as this will be replaced
by an item address syntax that will include block, save
frame, and url.
;
2.0.14 1994-12-15
;
Changes: (JW)
+ Made some terminology changes suggested by PMDF
_item_enumeration.code -> _item_enumeration.value
ITEM_ENUMERATION_DEFAULT -> ITEM_DEFAULT
ITEM_ENUMERATION_LIMIT -> ITEM_RANGE
+ Added item _item_type_list.detail
+ Version 2.0.14 is being frozen and exported.
;
2.0.15 1995-02-13
;
Changes: (JW)
+ Added '_' prefix to all data item save frame names.
References to data item names now always include
a leading underscore independent of the usage context.
+ A few miscellaneous corrections.
;
2.0.16 1995-06-18
;
Changes: (JW)
+ Revised the block level categories in the following ways:
Changed category BLOCK to DATA_BLOCK.
Added connection from _data_block.id to _category.implicit_key
in order to provide a formal means of merging the contents
of categories between data blocks.
+ Moved ennumerations for _method_list.code and
method_list.language to examples.
+ Removed symmetric matrix options from the ennumerations
for _item_structure.organization.
+ Added _item_related.function codes for 'associated_value',
'associated_esd', 'replaces' and 'replacedby'
+ Added data items _item_aliases.dictionary and
_item_aliases.dictionary_version.
+ Reorganized method categories such that multiple methods can
be applied at each level of data structure. Introduced a
consistent set of categories to hold method associations:
ITEM_METHODS, CATEGORY_METHODS, SUB_CATEGORY_METHODS, and
DATA_BLOCK_METHODS. Removed data items _category.method_id
_sub_category.method_id.
;
2.0.17 1995-06-22
;
Changes: (JW)
+ Quoted data vaules containing the leading string 'data_'.
;
2.1.0 1995-07-20
;
Changes: (JW)
Final adjustments before the first release of the mmCIF dictionary:
+ changed data_block to datablock to avoid any problems with
the STAR data_ reserved token.
+ created new category to hold item subcategory associations
and deleted the subcategory attribute from ITEM category.
+ modified regular expressions to reflect limitations observed
on several platforms.
+ expanded the ennumeration of _item_related.function_code.
+ removed default value from _item.manadatory_code.
+ removed type construct for date and changed date data type
to yyyy-mm-dd
+ added less restrictive data type for alias names.
;
2.1.1 1995-09-26
;
Changes: (JW)
+ Changed regular expressions for type code to permit
single quote.
+ Corrected regular expression syntax for type name and
type date.
+ Corrected lower bound description for item_range.minimum.
The incorrect <= condition is changed to <.
+ _item_mandatory.code has been now a mandatory item.
+ _item_aliases.dictionary and _item_aliases.dictionary_version
are added to the composite key for category ITEM_ALIASES.
+ _datablock.id data type changes to type code.
+ Shortened the name _item_aliases.dictionary_version to
_item_aliases.version
;
2.1.2 1997-01-24
;
Changes: (JW)
+ Added associated_error to the enumeration list of
_item_related.function_code.
;
2.1.3 2000-10-16
;
Changes: (JW)
+ Changed data type for regular expression in
_item_type_list.construct to type text.
;
2.1.5 2003-06-23
; Changes: (JW)
+ NDB extensions adopted into ddl_core
+ New partitioning scheme implemented
;
2.1.6 2004-04-15
; Changes: (JW)
+ Name changed to mmcif_ddl.dic
;
### EOF mmcif_ddl-header.dic ####
###########################################################################
#
# File: mmcif_ddl-data.dic
#
# mmCIF DDL Core Dictionary with NDB extensions
#
# This DDL dictionary is a mirror of ddl_core.dic-org with all implicit
# data items fully expanded and with NDB extensions added.
#
# Data Section
#
#
###########################################################################
# DATA TYPE CONVERSION TABLE
# --------------------------
loop_
_item_type_list.code
_item_type_list.primitive_code
_item_type_list.detail
_item_type_list.construct
code char 'A single word'
'[^\t\n "]*'
char char 'A single line of text'
'[^\n]*'
text char 'Text which may span lines'
'.*'
int numb 'Unsigned integer data'
'[0-9]+'
name uchar 'A data item name (restrictive type)'
'_[_A-Za-z0-9]+[.][][_A-Za-z0-9\<\>%/-]+'
aliasname uchar 'A DDL 1.4 data item name (less restrictive type)'
'_[^\t\n "]+'
idname uchar 'A data item name component or identifier'
'[_A-Za-z0-9]+'
any char 'Any data type'
'.*'
yyyy-mm-dd char 'A date format'
'[0-9][0-9][0-9][0-9]-[0-9]?[0-9]-[0-9][0-9]'
#
loop_
_category_group_list.id
_category_group_list.parent_id
_category_group_list.description
'ddl_group' .
;
Component categories of the macromolecular DDL
;
'datablock_group' 'ddl_group'
;
Categories that describe the characteristics of data blocks.
;
'category_group' 'ddl_group'
;
Categories that describe the characteristics of categories.
;
'sub_category_group' 'ddl_group'
;
Categories that describe the characteristics of subcategories.
;
'item_group' 'ddl_group'
;
Categories that describe the characteristics of data items.
;
'dictionary_group' 'ddl_group'
;
Categories that describe the dictionary.
;
'compliance_group' 'ddl_group'
;
Categories that are retained specifically for compliance with
older versions of the DDL.
;
### EOF mmcif_ddl-data.dic
###########################################################################
#
# File: mmcif_ddl-def-1.dic
#
# mmCIF DDL Core Dictionary with NDB extensions
#
# This DDL dictionary is a mirror of ddl_core.dic-org with all implicit
# data items fully expanded and with NDB extensions added.
#
# Definition Section 1.
# (Core Definitions)
#
#
###########################################################################
# ----------------------------------------------------------------------------
save_DATABLOCK
_category.description
;
Attributes defining the characteristics of a data block.
;
_category.id datablock
_category.mandatory_code no
_category.implicit_key mmcif_ddl.dic
_category_key.id datablock
_category_key.name '_datablock.id'
loop_
_category_group.id
_category_group.category_id
'ddl_group' datablock
'datablock_group' datablock
save_
save__datablock.id
_item_description.name '_datablock.id'
_item_description.description
;
The identity of the data block.
;
_item.name '_datablock.id'
_item.category_id datablock
_item.mandatory_code implicit
_item_type.name '_datablock.id'
_item_type.code code
loop_
_item_linked.parent_name
_item_linked.child_name
'_datablock.id' '_datablock_methods.datablock_id'
'_datablock.id' '_dictionary.datablock_id'
'_datablock.id' '_category.implicit_key'
save_
save__datablock.description
_item_description.name '_datablock.description'
_item_description.description
;
Text description of the data block.
;
_item.name '_datablock.description'
_item.category_id datablock
_item.mandatory_code yes
_item_type.name '_datablock.description'
_item_type.code text
save_
# ----------------------------------------------------------------------------
save_DATABLOCK_METHODS
_category.description
;
Attributes specifying the association between data blocks and methods.
;
_category.id datablock_methods
_category.mandatory_code no
_category.implicit_key mmcif_ddl.dic
loop_
_category_key.id
_category_key.name
datablock_methods '_datablock_methods.method_id'
datablock_methods '_datablock_methods.datablock_id'
loop_
_category_group.id
_category_group.category_id
'ddl_group' datablock_methods
'datablock_group' datablock_methods
save_
save__datablock_methods.datablock_id
_item_description.name '_datablock_methods.datablock_id'
_item_description.description
;
Identifier of data block.
;
_item.name '_datablock_methods.datablock_id'
_item.category_id datablock_methods
_item.mandatory_code implicit
_item_type.name '_datablock_methods.datablock_id'
_item_type.code code
save_
save__datablock_methods.method_id
_item_description.name '_datablock_methods.method_id'
_item_description.description
;
Unique method identifier associated with a data block.
;
_item.name '_datablock_methods.method_id'
_item.category_id datablock_methods
_item.mandatory_code yes
_item_type.name '_datablock_methods.method_id'
_item_type.code idname
save_
# ----------------------------------------------------------------------------
save_CATEGORY
_category.description
;
Attributes defining the functionality for the entire category.
;
_category.id category
_category.mandatory_code no
_category.implicit_key mmcif_ddl.dic
_category_key.id category
_category_key.name '_category.id'
loop_
_category_group.id
_category_group.category_id
'ddl_group' category
'category_group' category
save_
save__category.id
_item_description.name '_category.id'
_item_description.description
;
The identity of the data category. Data items may only be looped
with items of the same category.
;
_item.name '_category.id'
_item.category_id category
_item.mandatory_code yes
_item_type.name '_category.id'
_item_type.code idname
loop_
_item_linked.child_name
_item_linked.parent_name
'_category_examples.id' '_category.id'
'_category_group.category_id' '_category.id'
'_category_key.id' '_category.id'
'_category_methods.category_id' '_category.id'
'_item.category_id' '_category.id'
save_
save__category.description
_item_description.name '_category.description'
_item_description.description
;
Text description of a category.
;
_item.name '_category.description'
_item.category_id category
_item.mandatory_code yes
_item_type.name '_category.description'
_item_type.code text
save_
save__category.implicit_key
_item_description.name '_category.implicit_key'
_item_description.description
;
An identifier that may be used to distinguish the contents of
like categories between data blocks.
;
_item.name '_category.implicit_key'
_item.category_id category
_item.mandatory_code implicit
_item_type.name '_category.implicit_key'
_item_type.code code
save_
save__category.mandatory_code
_item_description.name '_category.mandatory_code'
_item_description.description
;
Whether the category must be specified in a dictionary.
;
_item.name '_category.mandatory_code'
_item.category_id category
_item.mandatory_code yes
_item_type.name '_category.mandatory_code'
_item_type.code code
save_
# ----------------------------------------------------------------------------
save_CATEGORY_EXAMPLES
_category.description
;
Example applications and descriptions of data items in this category.
;
_category.id category_examples
_category.mandatory_code no
_category.implicit_key mmcif_ddl.dic
loop_
_category_key.id
_category_key.name
category_examples '_category_examples.id'
category_examples '_category_examples.case'
save_
save__category_examples.id
_item_description.name '_category_examples.id'
_item_description.description
;
The name of category.
;
_item.name '_category_examples.id'
_item.category_id category_examples
_item.mandatory_code implicit
_item_type.name '_category_examples.id'
_item_type.code idname
save_
save__category_examples.case
_item_description.name '_category_examples.case'
_item_description.description
;
A case of examples involving items in this category.
;
_item.name '_category_examples.case'
_item.category_id category_examples
_item.mandatory_code yes
_item_type.name '_category_examples.case'
_item_type.code text
save_
save__category_examples.detail
_item_description.name '_category_examples.detail'
_item_description.description
;
A description of an example _category_examples.case
;
_item.name '_category_examples.detail'
_item.category_id category_examples
_item.mandatory_code no
_item_type.name '_category_examples.detail'
_item_type.code text
save_
# ----------------------------------------------------------------------------
save_CATEGORY_KEY
_category.description
;
This category holds a list of the item names that uniquely
identify the elements of the category.
;
_category.id category_key
_category.mandatory_code no
_category.implicit_key mmcif_ddl.dic
loop_
_category_key.id
_category_key.name
category_key '_category_key.name'
category_key '_category_key.id'
loop_
_category_group.id
_category_group.category_id
'ddl_group' category_key
'category_group' category_key
save_
save__category_key.name
_item_description.name '_category_key.name'
_item_description.description
;
The name of a data item that serves as a key identifier for the
category (eg. a component of the primary key).
;
_item.name '_category_key.name'
_item.category_id category_key
_item.mandatory_code yes
_item_type.name '_category_key.name'
_item_type.code name
save_
save__category_key.id
_item_description.name '_category_key.id'
_item_description.description
;
The identifier of the category (eg. a component of the primary key).
;
_item.name '_category_key.id'
_item.category_id category_key
_item.mandatory_code implicit
_item_type.name '_category_key.id'
_item_type.code idname
save_
# ----------------------------------------------------------------------------
save_CATEGORY_GROUP
_category.description
;
Provides a list of category groups to which the base category
belongs.
;
_category.id category_group
_category.mandatory_code no
_category.implicit_key mmcif_ddl.dic
loop_
_category_key.id
_category_key.name
category_group '_category_group.id'
category_group '_category_group.category_id'
loop_
_category_group.id
_category_group.category_id
'ddl_group' category_group
'category_group' category_group
save_
save__category_group.id
_item_description.name '_category_group.id'
_item_description.description
;
The name of a category group ...
;
_item.name '_category_group.id'
_item.category_id category_group
_item.mandatory_code yes
_item_type.name '_category_group.id'
_item_type.code idname
save_
save__category_group.category_id
_item_description.name '_category_group.category_id'
_item_description.description
;
The name of a category ...
;
_item.name '_category_group.category_id'
_item.category_id category_group
_item.mandatory_code implicit
_item_type.name '_category_group.category_id'
_item_type.code idname
save_
# ----------------------------------------------------------------------------
save_CATEGORY_GROUP_LIST
_category.description
;
This category provides the definition of each category group.
A category group is a collection of related categories.
;
_category.id category_group_list
_category.mandatory_code no
_category.implicit_key mmcif_ddl.dic
_category_key.id category_group_list
_category_key.name '_category_group_list.id'
loop_
_category_group.id
_category_group.category_id
'ddl_group' category_group_list
'category_group' category_group_list
save_
save__category_group_list.id
_item_description.name '_category_group_list.id'
_item_description.description
;
The name of a category group ...
;
_item.name '_category_group_list.id'
_item.category_id category_group_list
_item.mandatory_code yes
_item_type.name '_category_group_list.id'
_item_type.code idname
loop_
_item_linked.child_name
_item_linked.parent_name
'_category_group.id' '_category_group_list.id'
'_category_group_list.parent_id' '_category_group_list.id'
save_
save__category_group_list.description
_item_description.name '_category_group_list.description'
_item_description.description
;
Text description of a category group...
;
_item.name '_category_group_list.description'
_item.category_id category_group_list
_item.mandatory_code yes
_item_type.name '_category_group_list.description'
_item_type.code text
save_
save__category_group_list.parent_id
_item_description.name '_category_group_list.parent_id'
_item_description.description
;
The name of the optional parent category group.
;
_item.name '_category_group_list.parent_id'
_item.category_id category_group_list
_item.mandatory_code no
_item_type.name '_category_group_list.parent_id'
_item_type.code idname
save_
# ----------------------------------------------------------------------------
save_CATEGORY_METHODS
_category.description
;
Attributes specifying the association between categories and methods.
;
_category.id category_methods
_category.mandatory_code no
_category.implicit_key mmcif_ddl.dic
loop_
_category_key.id
_category_key.name
category_methods '_category_methods.method_id'
category_methods '_category_methods.category_id'
loop_
_category_group.id
_category_group.category_id
'ddl_group' category_methods
'category_group' category_methods
save_
save__category_methods.category_id
_item_description.name '_category_methods.category_id'
_item_description.description
;
The name of the category
;
_item.name '_category_methods.category_id'
_item.category_id category_methods
_item.mandatory_code implicit
_item_type.name '_category_methods.category_id'
_item_type.code idname
save_
save__category_methods.method_id
_item_description.name '_category_methods.method_id'
_item_description.description
;
The name of the method
;
_item.name '_category_methods.method_id'
_item.category_id category_methods
_item.mandatory_code yes
_item_type.name '_category_methods.method_id'
_item_type.code idname
save_
# ----------------------------------------------------------------------------
save_SUB_CATEGORY
_category.description
;
The purpose of a sub-category is to define an association between
data items within a category and optionally provide a method to
validate the collection of items. The sub-category named
'cartesian' might be applied to the data items for the coordinates
x, y, and z.
;
_category.id sub_category
_category.mandatory_code no
_category.implicit_key mmcif_ddl.dic
_category_key.id sub_category
_category_key.name '_sub_category.id'
loop_
_category_group.id
_category_group.category_id
'ddl_group' sub_category
'sub_category_group' sub_category
save_
save__sub_category.id
_item_description.name '_sub_category.id'
_item_description.description
;
The identity of the sub-category.
;
_item.name '_sub_category.id'
_item.category_id sub_category
_item.mandatory_code yes
_item_type.name '_sub_category.id'
_item_type.code idname
loop_
_item_linked.child_name
_item_linked.parent_name
'_sub_category_examples.id' '_sub_category.id'
'_sub_category_methods.sub_category_id' '_sub_category.id'
'_item_sub_category.id' '_sub_category.id'
save_
save__sub_category.description
_item_description.name '_sub_category.description'
_item_description.description
;
Description of the sub-category.
;
_item.name '_sub_category.description'
_item.category_id sub_category
_item.mandatory_code yes
_item_type.name '_sub_category.description'
_item_type.code text
save_
# ----------------------------------------------------------------------------
save_SUB_CATEGORY_EXAMPLES
_category.description
;
Example applications and descriptions of data items in this subcategory.
;
_category.id sub_category_examples
_category.mandatory_code no
_category.implicit_key mmcif_ddl.dic
loop_
_category_key.id
_category_key.name
sub_category_examples '_sub_category_examples.id'
sub_category_examples '_sub_category_examples.case'
loop_
_category_group.id
_category_group.category_id
'ddl_group' sub_category_examples
'sub_category_group' sub_category_examples
save_
save__sub_category_examples.id
_item_description.name '_sub_category_examples.id'
_item_description.description
;
The name for the subcategory.
;
_item.name '_sub_category_examples.id'
_item.category_id sub_category_examples
_item.mandatory_code yes
_item_type.name '_sub_category_examples.id'
_item_type.code idname
save_
save__sub_category_examples.case
_item_description.name '_sub_category_examples.case'
_item_description.description
;
An example involving items in this subcategory.
;
_item.name '_sub_category_examples.case'
_item.category_id sub_category_examples
_item.mandatory_code yes
_item_type.name '_sub_category_examples.case'
_item_type.code text
save_
save__sub_category_examples.detail
_item_description.name '_sub_category_examples.detail'
_item_description.description
;
A description of an example _sub_category_examples.case
;
_item.name '_sub_category_examples.detail'
_item.category_id sub_category_examples
_item.mandatory_code no
_item_type.name '_sub_category_examples.detail'
_item_type.code text
save_
# ----------------------------------------------------------------------------
save_SUB_CATEGORY_METHODS
_category.description
;
Attributes specifying the association between subcategories and methods.
;
_category.id sub_category_methods
_category.mandatory_code no
_category.implicit_key mmcif_ddl.dic
loop_
_category_key.id
_category_key.name
sub_category_methods '_sub_category_methods.method_id'
sub_category_methods '_sub_category_methods.sub_category_id'
loop_
_category_group.id
_category_group.category_id
'ddl_group' sub_category_methods
'sub_category_group' sub_category_methods
save_
save__sub_category_methods.sub_category_id
_item_description.name '_sub_category_methods.sub_category_id'
_item_description.description
;
The name of the subcategory
;
_item.name '_sub_category_methods.sub_category_id'
_item.category_id sub_category_methods
_item.mandatory_code yes
_item_type.name '_sub_category_methods.sub_category_id'
_item_type.code idname
save_
save__sub_category_methods.method_id
_item_description.name '_sub_category_methods.method_id'
_item_description.description
;
The name of the method
;
_item.name '_sub_category_methods.method_id'
_item.category_id sub_category_methods
_item.mandatory_code yes
_item_type.name '_sub_category_methods.method_id'
_item_type.code idname
save_
# ----------------------------------------------------------------------------
save_ITEM
_category.description
;
Attributes which describe the characteristics of a data item.
;
_category.id item
_category.mandatory_code no
_category.implicit_key mmcif_ddl.dic
_category_key.id item
_category_key.name '_item.name'
loop_
_category_group.id
_category_group.category_id
'ddl_group' item
'item_group' item
save_
save__item.name
_item_description.name '_item.name'
_item_description.description
;
Data name of the defined item.
;
_item_type.name '_item.name'
_item_type.code name
_item.name '_item.name'
_item.category_id item
_item.mandatory_code implicit
loop_
_item_linked.child_name
_item_linked.parent_name
'_category_key.name' '_item.name'
'_item_aliases.name' '_item.name'
'_item_default.name' '_item.name'
'_item_dependent.name' '_item.name'
'_item_dependent.dependent_name' '_item.name'
'_item_description.name' '_item.name'
'_item_enumeration.name' '_item.name'
'_item_examples.name' '_item.name'
'_item_linked.child_name' '_item.name'
'_item_linked.parent_name' '_item.name'
'_item_methods.name' '_item.name'
'_item_range.name' '_item.name'
'_item_related.name' '_item.name'
'_item_related.related_name' '_item.name'
'_item_type.name' '_item.name'
'_item_type_conditions.name' '_item.name'
'_item_structure.name' '_item.name'
'_item_sub_category.name' '_item.name'
'_item_units.name' '_item.name'
save_
save__item.mandatory_code
_item_description.name '_item.mandatory_code'
_item_description.description
;
Signals if the defined item is mandatory for the proper description
of its category.
;
_item.name '_item.mandatory_code'
_item.category_id item
_item.mandatory_code yes
_item_type.name '_item.mandatory_code'
_item_type.code code
loop_
_item_enumeration.name
_item_enumeration.value
_item_enumeration.detail
'_item.mandatory_code'
yes 'required item in this category'
'_item.mandatory_code'
no 'optional item in this category'
'_item.mandatory_code'
implicit 'required item but may be determined from context'
save_
save__item.category_id
_item_description.name '_item.category_id'
_item_description.description
;
This is category id of the item.
;
_item.name '_item.category_id'
_item.category_id item
_item.mandatory_code implicit
_item_type.name '_item.category_id'
_item_type.code idname
save_
# ----------------------------------------------------------------------------
save_ITEM_ALIASES
_category.description
;
This category holds a list of possible alias names or synonyms for
each data item. Each alias name is identified by the name and
version of the dictionary to which it belongs.
;
_category.id item_aliases
_category.mandatory_code no
_category.implicit_key mmcif_ddl.dic
loop_
_category_key.id
_category_key.name
item_aliases '_item_aliases.alias_name'
item_aliases '_item_aliases.dictionary'
item_aliases '_item_aliases.version'
save_
save__item_aliases.name
_item_description.name '_item_aliases.name'
_item_description.description
;
Name for the data item.
;
_item.name '_item_aliases.name'
_item.category_id item_aliases
_item.mandatory_code implicit
_item_type.name '_item_aliases.name'
_item_type.code name
save_
save__item_aliases.alias_name
_item_description.name '_item_aliases.alias_name'
_item_description.description
;
Alias name for the data item.
;
_item.name '_item_aliases.alias_name'
_item.category_id item_aliases
_item.mandatory_code yes
_item_type.name '_item_aliases.alias_name'
_item_type.code aliasname
save_
save__item_aliases.dictionary
_item_description.name '_item_aliases.dictionary'
_item_description.description
;
The dictionary in which the alias name is defined.
;
_item.name '_item_aliases.dictionary'
_item.category_id item_aliases
_item.mandatory_code yes
_item_type.name '_item_aliases.dictionary'
_item_type.code char
save_
save__item_aliases.version
_item_description.name '_item_aliases.version'
_item_description.description
;
The version of the dictionary in which the alias name is defined.
;
_item.name '_item_aliases.version'
_item.category_id item_aliases
_item.mandatory_code yes
_item_type.name '_item_aliases.version'
_item_type.code char
save_
# ----------------------------------------------------------------------------
save_ITEM_DEFAULT
_category.description
;
Attributes specifying the default value for a data item.
;
_category.id item_default
_category.mandatory_code no
_category.implicit_key mmcif_ddl.dic
_category_key.id item_default
_category_key.name '_item_default.name'
loop_
_category_group.id
_category_group.category_id
'ddl_group' item_default
'item_group' item_default
save_
save__item_default.name
_item_description.name '_item_default.name'
_item_description.description
;
The name of item for which the default value is defined
;
_item.name '_item_default.name'
_item.category_id item_default
_item.mandatory_code implicit
_item_type.name '_item_default.name'
_item_type.code name
save_
save__item_default.value
_item_description.name '_item_default.value'
_item_description.description
;
The default value for the defined item if it is not specified
explicitly. If a data value is not declared, the default is
assumed to be the most likely or natural value.
;
_item.name '_item_default.value'
_item.category_id item_default
_item.mandatory_code no
_item_type.name '_item_default.value'
_item_type.code any
save_
# ----------------------------------------------------------------------------
save_ITEM_DEPENDENT
_category.description
;
Attributes which identify other data items that must be specified
for the defined data item to be valid.
;
_category.id item_dependent
_category.mandatory_code no
_category.implicit_key mmcif_ddl.dic
loop_
_category_key.id
_category_key.name
item_dependent '_item_dependent.name'
item_dependent '_item_dependent.dependent_name'
save_
save__item_dependent.name
_item_description.name '_item_dependent.name'
_item_description.description
;
Item name of a dependent item.
;
_item.name '_item_dependent.name'
_item.category_id item_dependent
_item.mandatory_code implicit
_item_type.name '_item_dependent.name'
_item_type.code name
save_
save__item_dependent.dependent_name
_item_description.name '_item_dependent.dependent_name'
_item_description.description
;
Data name of a dependent item.
;
_item.name '_item_dependent.dependent_name'
_item.category_id item_dependent
_item.mandatory_code yes
_item_type.name '_item_dependent.dependent_name'
_item_type.code name
save_
# ----------------------------------------------------------------------------
save_ITEM_DESCRIPTION
_category.description
;
This category holds the descriptions of each data item.
;
_category.id item_description
_category.mandatory_code yes
_category.implicit_key mmcif_ddl.dic
loop_
_category_key.id
_category_key.name
item_description '_item_description.name'
item_description '_item_description.description'
loop_
_category_group.id
_category_group.category_id
'ddl_group' item_description
'item_group' item_description
save_
save__item_description.name
_item_description.name '_item_description.name'
_item_description.description
;
Tne name of data item.
;
_item.name '_item_description.name'
_item.category_id item_description
_item.mandatory_code implicit
_item_type.name '_item_description.name'
_item_type.code name
save_
save__item_description.description
_item_description.name '_item_description.description'
_item_description.description
;
Text decription of the defined data item.
;
_item.name '_item_description.description'
_item.category_id item_description
_item.mandatory_code yes
_item_type.name '_item_description.description'
_item_type.code text
save_
# ----------------------------------------------------------------------------
save_ITEM_ENUMERATION
_category.description
;
Attributes which specify the permitted enumeration of the items.
;
_category.id item_enumeration
_category.mandatory_code no
_category.implicit_key mmcif_ddl.dic
loop_
_category_key.id
_category_key.name
item_enumeration '_item_enumeration.name'
item_enumeration '_item_enumeration.value'
loop_
_category_group.id
_category_group.category_id
'ddl_group' item_enumeration
'item_group' item_enumeration
save_
save__item_enumeration.name
_item_description.name '_item_enumeration.name'
_item_description.description
;
Name of data item.
;
_item.name '_item_enumeration.name'
_item.category_id item_enumeration
_item.mandatory_code implicit
_item_type.name '_item_enumeration.name'
_item_type.code name
save_
save__item_enumeration.value
_item_description.name '_item_enumeration.value'
_item_description.description
;
A permissible value, character or number, for the defined item.
;
_item.name '_item_enumeration.value'
_item.category_id item_enumeration
_item.mandatory_code yes
_item_type.name '_item_enumeration.value'
_item_type.code any
save_
save__item_enumeration.detail
_item_description.name '_item_enumeration.detail'
_item_description.description
;
A description of a permissible value for the defined item.
;
_item.name '_item_enumeration.detail'
_item.category_id item_enumeration
_item.mandatory_code no
_item_type.name '_item_enumeration.detail'
_item_type.code text
save_
# ----------------------------------------------------------------------------
save_ITEM_EXAMPLES
_category.description
;
Attributes for describing application examples of the data item.
;
_category.id item_examples
_category.mandatory_code no
_category.implicit_key mmcif_ddl.dic
loop_
_category_key.id
_category_key.name
item_examples '_item_examples.name'
item_examples '_item_examples.case'
loop_
_category_group.id
_category_group.category_id
'ddl_group' item_examples
'item_group' item_examples
save_
save__item_examples.name
_item_description.name '_item_examples.name'
_item_description.description
;
The name of data item for the example.
;
_item.name '_item_examples.name'
_item.category_id item_examples
_item.mandatory_code implicit
_item_type.name '_item_examples.name'
_item_type.code name
save_
save__item_examples.case
_item_description.name '_item_examples.case'
_item_description.description
;
An example application of the defined data item.
;
_item.name '_item_examples.case'
_item.category_id item_examples
_item.mandatory_code no
_item_type.name '_item_examples.case'
_item_type.code text
save_
save__item_examples.detail
_item_description.name '_item_examples.detail'
_item_description.description
;
A description of an example specified in _item_example.case
;
_item.name '_item_examples.detail'
_item.category_id item_examples
_item.mandatory_code no
_item_type.name '_item_examples.detail'
_item_type.code text
save_
# ----------------------------------------------------------------------------
save_ITEM_LINKED
_category.description
;
Attributes which describe how equivalent data items are linked
within categories and across different categories.
;
_category.id item_linked
_category.mandatory_code no
_category.implicit_key mmcif_ddl.dic
loop_
_category_key.id
_category_key.name
item_linked '_item_linked.child_name'
item_linked '_item_linked.parent_name'
loop_
_category_group.id
_category_group.category_id
'ddl_group' item_linked
'item_group' item_linked
save_
save__item_linked.child_name
_item_description.name '_item_linked.child_name'
_item_description.description
;
Name of the child data item.
;
_item.name '_item_linked.child_name'
_item.category_id item_linked
_item.mandatory_code yes
_item_type.name '_item_linked.child_name'
_item_type.code name
save_
save__item_linked.parent_name
_item_description.name '_item_linked.parent_name'
_item_description.description
;
Name of the parent data item.
;
_item.name '_item_linked.parent_name'
_item.category_id item_linked
_item.mandatory_code implicit
_item_type.name '_item_linked.parent_name'
_item_type.code name
save_
# ----------------------------------------------------------------------------
save_ITEM_METHODS
_category.description
;
Attributes specifying the association between data items and methods.
;
_category.id item_methods
_category.mandatory_code no
_category.implicit_key mmcif_ddl.dic
loop_
_category_key.id
_category_key.name
item_methods '_item_methods.method_id'
item_methods '_item_methods.name'
loop_
_category_group.id
_category_group.category_id
'ddl_group' item_methods
'item_group' item_methods
save_
save__item_methods.name
_item_description.name '_item_methods.name'
_item_description.description
;
The name of the item
;
_item.name '_item_methods.name'
_item.category_id item_methods
_item.mandatory_code implicit
_item_type.name '_item_methods.name'
_item_type.code name
save_
save__item_methods.method_id
_item_description.name '_item_methods.method_id'
_item_description.description
;
The name of itemthe method
;
_item.name '_item_methods.method_id'
_item.category_id item_methods
_item.mandatory_code yes
_item_type.name '_item_methods.method_id'
_item_type.code idname
save_
# ----------------------------------------------------------------------------
save_ITEM_RANGE
_category.description
;
The range of permissible values of a data item. When multiple
ranges are specified they are interpreted sequentially
using a logical OR. To specify that an item value may be
equal to a boundary value, specify an item range where the
maximum and mimimum values equal the boundary value.
;
_category.id item_range
_category.mandatory_code no
_category.implicit_key mmcif_ddl.dic
loop_
_category_key.id
_category_key.name
item_range '_item_range.name'
item_range '_item_range.minimum'
item_range '_item_range.maximum'
loop_
_category_group.id
_category_group.category_id
'ddl_group' item_range
'item_group' item_range
save_
save__item_range.name
_item_description.name '_item_range.name'
_item_description.description
;
Name of data item ...
;
_item.name '_item_range.name'
_item.category_id item_range
_item.mandatory_code implicit
_item_type.name '_item_range.name'
_item_type.code name
save_
save__item_range.minimum
_item_description.name '_item_range.minimum'
_item_description.description
;
Minimum permissible value of a data item or the lower bound
of a permissible range. ( minimum value < data value)
;
_item.name '_item_range.minimum'
_item.category_id item_range
_item.mandatory_code no
_item_type.name '_item_range.minimum'
_item_type.code any
save_
save__item_range.maximum
_item_description.name '_item_range.maximum'
_item_description.description
;
Maximum permissible value of a data item or the upper bound
of a permissible range. ( maximum value > data value)
;
_item.name '_item_range.maximum'
_item.category_id item_range
_item.mandatory_code no
_item_type.name '_item_range.maximum'
_item_type.code any
save_
# ----------------------------------------------------------------------------
save_ITEM_RELATED
_category.description
;
Attributes which specify recognized relationships between data items.
;
_category.id item_related
_category.mandatory_code no
_category.implicit_key mmcif_ddl.dic
loop_
_category_key.id
_category_key.name
item_related '_item_related.name'
item_related '_item_related.related_name'
item_related '_item_related.function_code'
loop_
_category_group.id
_category_group.category_id
'ddl_group' item_related
'item_group' item_related
save_
save__item_related.name
_item_description.name '_item_related.name'
_item_description.description
;
Identifies a defined data item ...
;
_item.name '_item_related.name'
_item.category_id item_related
_item.mandatory_code implicit
_item_type.name '_item_related.name'
_item_type.code name
save_
save__item_related.related_name
_item_description.name '_item_related.related_name'
_item_description.description
;
Identifies a data item by name which is closely related to the
defined data item by the manner described by _item_related.function_code
;
_item.name '_item_related.related_name'
_item.category_id item_related
_item.mandatory_code yes
_item_type.name '_item_related.related_name'
_item_type.code name
save_
save__item_related.function_code
_item_description.name '_item_related.function_code'
_item_description.description
;
The code for the type of relationship of the item identified by
_item_related.name and the defined item.
ALTERNATE indicates that the item identified in
_item_related.related_name is an alternative expression in terms
of its application and attributes to the item in this definition.
ALTERNATE_EXCLUSIVE indicates that the item identified in
_item_related.related_name is an alternative expression in terms
of its application and attributes to the item in this definition.
Only one of the alternative forms may be specified.
CONVENTION indicates that the item identified in
_item_related.related_name differs from the defined item only
in terms of a convention in its expression.
CONVERSION_CONSTANT indicates that the item identified in
_item_related.related_name differs from the defined item only
by a known constant.
CONVERSION_ARBITRARY indicates that the item identified in
_item_related.related_name differs from the defined item only
by a arbitrary constant.
REPLACES indicates that the defined item replaces the item identified
in _item_related.related_name.
REPLACEDBY indicates that the defined item is replaced by the
item identified in _item_related.related_name.
ASSOCIATED_VALUE indicates that the item identified in
_item_related.related_name is meaningful when associated with the
defined item.
ASSOCIATED_ESD indicates that the item identified in
_item_related.related_name is the estimated standard deviation of
of the defined item.
;
_item.name '_item_related.function_code'
_item.category_id item_related
_item.mandatory_code yes
_item_type.name '_item_related.function_code'
_item_type.code code
loop_
_item_enumeration.name
_item_enumeration.value
_item_enumeration.detail
'_item_related.function_code'
alternate 'alternate form of the item'
'_item_related.function_code'
alternate_exclusive 'mutually exclusive alternate form of the item'
'_item_related.function_code'
convention 'depends on defined convention'
'_item_related.function_code'
conversion_constant 'related by a known conversion factor'
'_item_related.function_code'
conversion_arbitrary 'related by a arbitrary conversion factor'
'_item_related.function_code'
replaces 'a replacement definition'
'_item_related.function_code'
replacedby 'an obsolete definition'
'_item_related.function_code'
associated_value 'a meaningful value when related to the item'
'_item_related.function_code'
associated_esd 'an estimated standard deviation of the item'
'_item_related.function_code'
associated_error 'an estimated error of the item'
save_
# ----------------------------------------------------------------------------
save_ITEM_STRUCTURE
_category.description
;
This category holds the association between data items and
named vector/matrix declarations.
;
_category.id item_structure
_category.mandatory_code no
_category.implicit_key mmcif_ddl.dic
_category_key.id item_structure
_category_key.name '_item_structure.name'
loop_
_category_group.id
_category_group.category_id
'ddl_group' item_structure
'item_group' item_structure
save_
save__item_structure.name
_item_description.name '_item_structure.name'
_item_description.description
;
The name of data item
;
_item.name '_item_structure.name'
_item.category_id item_structure
_item.mandatory_code implicit
_item_type.name '_item_structure.name'
_item_type.code name
save_
save__item_structure.code
_item_description.name '_item_structure.code'
_item_description.description
;
Provides an indirect reference into the list of structure
type definition in category item_structure_list.
;
_item.name '_item_structure.code'
_item.category_id item_structure
_item.mandatory_code yes
_item_type.name '_item_structure.code'
_item_type.code code
save_
save__item_structure.organization
_item_description.name '_item_structure.organization'
_item_description.description
;
Identifies if the struct is defined in column or row major order.
Only the unique elements of symmetric matrices are specified.
;
_item.name '_item_structure.organization'
_item.category_id item_structure
_item.mandatory_code yes
_item_type.name '_item_structure.organization'
_item_type.code code
loop_
_item_enumeration.name
_item_enumeration.value
_item_enumeration.detail
'_item_structure.organization' 'columnwise' 'column major order'
'_item_structure.organization' 'rowwise' 'row major order'
save_
# ----------------------------------------------------------------------------
save_ITEM_STRUCTURE_LIST
_category.description
;
This category holds a description for each structure type.
;
_category.id item_structure_list
_category.mandatory_code no
_category.implicit_key mmcif_ddl.dic
loop_
_category_key.id
_category_key.name
item_structure_list '_item_structure_list.code'
item_structure_list '_item_structure_list.index'
loop_
_category_group.id
_category_group.category_id
'ddl_group' item_structure_list
'item_group' item_structure_list
save_
save__item_structure_list.code
_item_description.name '_item_structure_list.code'
_item_description.description
;
The name of the matrix/vector structure declaration.
;
_item.name '_item_structure_list.code'
_item.category_id item_structure_list
_item.mandatory_code yes
_item_linked.parent_name '_item_structure_list.code'
_item_linked.child_name '_item_structure.code'
_item_type.name '_item_structure_list.code'
_item_type.code code
save_
save__item_structure_list.index
_item_description.name '_item_structure_list.index'
_item_description.description
;
Identifies the one based index of a row/column of the structure.
;
_item.name '_item_structure_list.index'
_item.category_id item_structure_list
_item.mandatory_code yes
loop_
_item_range.name
_item_range.minimum
_item_range.maximum
'_item_structure_list.index' 1 1
'_item_structure_list.index' 1 .
_item_type.name '_item_structure_list.index'
_item_type.code int
save_
save__item_structure_list.dimension
_item_description.name '_item_structure_list.dimension'
_item_description.description
;
Identifies the length of this row/column of the structure.
;
_item.name '_item_structure_list.dimension'
_item.category_id item_structure_list
_item.mandatory_code yes
loop_
_item_range.name
_item_range.minimum
_item_range.maximum
'_item_structure_list.dimension' 1 1
'_item_structure_list.dimension' 1 .
_item_type.name '_item_structure_list.dimension'
_item_type.code int
save_
# ----------------------------------------------------------------------------
save_ITEM_SUB_CATEGORY
_category.description
;
This category assigns data items to subcategories.
;
_category.id item_sub_category
_category.mandatory_code no
_category.implicit_key mmcif_ddl.dic
loop_
_category_key.id
_category_key.name
item_sub_category '_item_sub_category.id'
item_sub_category '_item_sub_category.name'
loop_
_category_group.id
_category_group.category_id
'sub_category_group' item_sub_category
'item_group' item_sub_category
save_
save__item_sub_category.name
_item_description.name '_item_sub_category.name'
_item_description.description
;
The name of data item
;
_item.name '_item_sub_category.name'
_item.category_id item_sub_category
_item.mandatory_code implicit
_item_type.name '_item_sub_category.name'
_item_type.code name
save_
save__item_sub_category.id
_item_description.name '_item_sub_category.id'
_item_description.description
;
The identifier of subcategory
;
_item.name '_item_sub_category.id'
_item.category_id item_sub_category
_item.mandatory_code yes
_item_type.name '_item_sub_category.id'
_item_type.code idname
save_
# ----------------------------------------------------------------------------
save_ITEM_TYPE
_category.description
;
Attributes for specifying the data type code for each data item.
;
_category.id item_type
_category.mandatory_code no
_category.implicit_key mmcif_ddl.dic
_category_key.id item_type
_category_key.name '_item_type.name'
loop_
_category_group.id
_category_group.category_id
'ddl_group' item_type
'item_group' item_type
save_
save__item_type.name
_item_description.name '_item_type.name'
_item_description.description
;
The name of data item
;
_item.name '_item_type.name'
_item.category_id item_type
_item.mandatory_code implicit
_item_type.name '_item_type.name'
_item_type.code name
save_
save__item_type.code
_item_description.name '_item_type.code'
_item_description.description
;
Data type of defined data item
;
_item.name '_item_type.code'
_item.category_id item_type
_item.mandatory_code yes
_item_type.name '_item_type.code'
_item_type.code code
save_
# ----------------------------------------------------------------------------
save_ITEM_TYPE_CONDITIONS
_category.description
;
Attributes for specifying additional conditions associated with
the data type of the item.
;
_category.id item_type_conditions
_category.mandatory_code no
_category.implicit_key mmcif_ddl.dic
_category_key.id item_type_conditions
_category_key.name '_item_type_conditions.name'
loop_
_category_group.id
_category_group.category_id
'ddl_group' item_type_conditions
'item_group' item_type_conditions
'compliance_group' item_type_conditions
save_
save__item_type_conditions.name
_item_description.name '_item_type_conditions.name'
_item_description.description
;
The name of data item
;
_item.name '_item_type_conditions.name'
_item.category_id item_type_conditions
_item.mandatory_code implicit
_item_type.name '_item_type_conditions.name'
_item_type.code name
save_
save__item_type_conditions.code
_item_description.name '_item_type_conditions.code'
_item_description.description
;
Codes defining conditions on the _item_type.code specification.
'esd' permits a number string to contain an appended standard
deviation number enclosed within parentheses. E.g. 4.37(5)
'seq' permits data to be declared as a sequence of values
separated by a comma <,> or a colon <:>.
* The sequence v1,v2,v3,. signals that v1, v2, v3, etc.
are alternative values or the data item.
* The sequence v1:v2 signals that v1 and v2 are the boundary
values of a continuous range of values. This mechanism
was used to specify permitted ranges of an item in
previous DDL versions.
Combinations of alternate and range sequences are permitted.
;
_item.name '_item_type_conditions.code'
_item.category_id item_type_conditions
_item.mandatory_code yes
_item_type.name '_item_type_conditions.code'
_item_type.code code
loop_
_item_enumeration.name
_item_enumeration.value
_item_enumeration.detail
'_item_type_conditions.code'
none 'no extra conditions apply to this data item'
'_item_type_conditions.code'
esd 'numbers may have esd values appended within ()'
'_item_type_conditions.code'
seq 'data may be declared as a comma or colon separated sequence'
save_
# ----------------------------------------------------------------------------
save_ITEM_TYPE_LIST
_category.description
;
Attributes which define each type code.
;
_category.id item_type_list
_category.mandatory_code no
_category.implicit_key mmcif_ddl.dic
_category_key.id item_type_list
_category_key.name '_item_type_list.code'
loop_
_category_group.id
_category_group.category_id
'ddl_group' item_type_list
'item_group' item_type_list
save_
save__item_type_list.code
_item_description.name '_item_type_list.code'
_item_description.description
;
The codes specifying the nature of the data value.
;
_item.name '_item_type_list.code'
_item.category_id item_type_list
_item.mandatory_code yes
_item_type.name '_item_type_list.code'
_item_type.code code
_item_linked.child_name '_item_type.code'
_item_linked.parent_name '_item_type_list.code'
save_
save__item_type_list.primitive_code
_item_description.name '_item_type_list.primitive_code'
_item_description.description
;
The codes specifying the primitive type of the data value.
;
_item.name '_item_type_list.primitive_code'
_item.category_id item_type_list
_item.mandatory_code yes
_item_type.name '_item_type_list.primitive_code'
_item_type.code code
loop_
_item_enumeration.name
_item_enumeration.value
_item_enumeration.detail
'_item_type_list.primitive_code'
numb 'numerically-interpretable string'
'_item_type_list.primitive_code'
char 'character or text string (case-sensitive)'
'_item_type_list.primitive_code'
uchar 'character or text string (case-insensitive)'
'_item_type_list.primitive_code'
null 'for dictionary purposes only'
save_
save__item_type_list.construct
_item_description.name '_item_type_list.construct'
_item_description.description
;
When a data value can be defined as a pre-determined sequence of
characters, or optional characters, or data names (for which the
definition is also available), it is specified as a construction.
The rules of construction conform to the the regular expression
(REGEX) specificatiopns detailed in the IEEE document P1003.2
Draft 11.2 Sept 1991 (ftp file '/doc/POSIX/1003.2/p121-140').
Resolved data names for which _item_type_list.construct
specifications exist are replaced by these constructions,
otherwise the data name string is not replaced.
;
_item.name '_item_type_list.construct'
_item.category_id item_type_list
_item.mandatory_code no
_item_type.name '_item_type_list.construct'
_item_type.code text
_item_examples.name '_item_type_list.construct'
_item_examples.case '{_year}-{_month}-{_day}'
_item_examples.detail 'typical construction for _date'
save_
save__item_type_list.detail
_item_description.name '_item_type_list.detail'
_item_description.description
;
An optional description of the data type
;
_item.name '_item_type_list.detail'
_item.category_id item_type_list
_item.mandatory_code no
_item_type.name '_item_type_list.detail'
_item_type.code text
save_
# ----------------------------------------------------------------------------
save_ITEM_UNITS
_category.description
;
Specifies the physical units in which data items are expressed.
;
_category.id item_units
_category.mandatory_code no
_category.implicit_key mmcif_ddl.dic
_category_key.id item_units
_category_key.name '_item_units.name'
loop_
_category_group.id
_category_group.category_id
'ddl_group' item_units
'item_group' item_units
save_
save__item_units.name
_item_description.name '_item_units.name'
_item_description.description
;
The name of data item
;
_item.name '_item_units.name'
_item.category_id item_units
_item.mandatory_code implicit
_item_type.name '_item_units.name'
_item_type.code name
save_
save__item_units.code
_item_description.name '_item_units.code'
_item_description.description
;
The identifier of unit in which the data item is expressed.
;
_item.name '_item_units.code'
_item.category_id item_units
_item.mandatory_code yes
_item_type.name '_item_units.code'
_item_type.code code
save_
# ----------------------------------------------------------------------------
save_ITEM_UNITS_CONVERSION
_category.description
;
Conversion factors between the various units of measure defined
in the ITEM_UNITS_LIST category.
;
_category.id item_units_conversion
_category.mandatory_code no
_category.implicit_key mmcif_ddl.dic
loop_
_category_key.id
_category_key.name
item_units_conversion '_item_units_conversion.from_code'
item_units_conversion '_item_units_conversion.to_code'
loop_
_category_group.id
_category_group.category_id
'ddl_group' item_units_conversion
'item_group' item_units_conversion
save_
save__item_units_conversion.from_code
_item_description.name '_item_units_conversion.from_code'
_item_description.description
;
The unit system on which the conversion operation is applied
to produce the unit system specified in _item_units_conversion.to_code.
<to_code> = <from_code> <operator> <factor>
;
_item.name '_item_units_conversion.from_code'
_item.category_id item_units_conversion
_item.mandatory_code yes
_item_type.name '_item_units_conversion.from_code'
_item_type.code code
save_
save__item_units_conversion.to_code
_item_description.name '_item_units_conversion.to_code'
_item_description.description
;
The unit system produced after an operation is applied to the unit
system specified by _item_units_conversion.from_code.
<to_code> = <from_code> <operator> <factor>
;
_item.name '_item_units_conversion.to_code'
_item.category_id item_units_conversion
_item.mandatory_code yes
_item_type.name '_item_units_conversion.to_code'
_item_type.code code
save_
save__item_units_conversion.operator
_item_description.name '_item_units_conversion.operator'
_item_description.description
;
The arithmetic operator required to convert between the
unit systems:
<to_code> = <from_code> <operator> <factor>
;
_item.name '_item_units_conversion.operator'
_item.category_id item_units_conversion
_item.mandatory_code yes
_item_type.name '_item_units_conversion.operator'
_item_type.code code
loop_
_item_enumeration.name
_item_enumeration.value
_item_enumeration.detail
'_item_units_conversion.operator' '+' 'addition'
'_item_units_conversion.operator' '-' 'subtraction'
'_item_units_conversion.operator' '*' 'multiplication'
'_item_units_conversion.operator' '/' 'division'
save_
save__item_units_conversion.factor
_item_description.name '_item_units_conversion.factor'
_item_description.description
;
The arithmetic operation required to convert between the
unit systems:
<to_code> = <from_code> <operator> <factor>
;
_item.name '_item_units_conversion.factor'
_item.category_id item_units_conversion
_item.mandatory_code yes
_item_type.name '_item_units_conversion.factor'
_item_type.code any
save_
# ----------------------------------------------------------------------------
save_ITEM_UNITS_LIST
_category.description
;
Attributes which describe the physical units of measure
in which data items may be expressed.
;
_category.id item_units_list
_category.mandatory_code no
_category.implicit_key mmcif_ddl.dic
_category_key.id item_units_list
_category_key.name '_item_units_list.code'
loop_
_category_group.id
_category_group.category_id
'ddl_group' item_units_list
'item_group' item_units_list
save_
save__item_units_list.code
_item_description.name '_item_units_list.code'
_item_description.description
;
The code specifying the name of the unit of measure.
;
_item.name '_item_units_list.code'
_item.category_id item_units_list
_item.mandatory_code yes
_item_type.name '_item_units_list.code'
_item_type.code code
loop_
_item_linked.child_name
_item_linked.parent_name
'_item_units.code' '_item_units_list.code'
'_item_units_conversion.from_code' '_item_units_list.code'
'_item_units_conversion.to_code' '_item_units_list.code'
save_
save__item_units_list.detail
_item_description.name '_item_units_list.detail'
_item_description.description
;
A description of the unit of measure.
;
_item.name '_item_units_list.detail'
_item.category_id item_units_list
_item.mandatory_code no
_item_type.name '_item_units_list.detail'
_item_type.code text
save_
# ----------------------------------------------------------------------------
save_METHOD_LIST
_category.description
;
Attributes specifying the list of methods applicable to data items,
sub-categories, and categories.
;
_category.id method_list
_category.mandatory_code no
_category.implicit_key mmcif_ddl.dic
_category_key.id method_list
_category_key.name '_method_list.id'
loop_
_category_group.id
_category_group.category_id
'ddl_group' method_list
'item_group' method_list
'category_group' method_list
save_
save__method_list.id
_item_description.name '_method_list.id'
_item_description.description
;
Identity of method in the list referenced by _method.id
;
_item.name '_method_list.id'
_item.category_id method_list
_item.mandatory_code yes
_item_type.name '_method_list.id'
_item_type.code idname
loop_
_item_linked.child_name
_item_linked.parent_name
'_item_methods.method_id' '_method_list.id'
'_category_methods.method_id' '_method_list.id'
'_sub_category_methods.method_id' '_method_list.id'
'_datablock_methods.method_id' '_method_list.id'
save_
save__method_list.detail
_item_description.name '_method_list.detail'
_item_description.description
;
Description of application method in _method_list.id
;
_item.name '_method_list.detail'
_item.category_id method_list
_item.mandatory_code no
_item_type.name '_method_list.detail'
_item_type.code text
save_
save__method_list.inline
_item_description.name '_method_list.inline'
_item_description.description
;
Inline text of a method associated with the data item.
;
_item.name '_method_list.inline'
_item.category_id method_list
_item.mandatory_code yes
_item_type.name '_method_list.inline'
_item_type.code text
save_
save__method_list.code
_item_description.name '_method_list.code'
_item_description.description
;
A code that describes the function of the method.
;
_item.name '_method_list.code'
_item.category_id method_list
_item.mandatory_code yes
_item_type.name '_method_list.code'
_item_type.code code
loop_
_item_examples.name
_item_examples.case
_item_examples.detail
'_method_list.code' calculation 'method to calculate the item '
'_method_list.code' verification 'method to verify the data item '
'_method_list.code' cast 'method to provide cast conversion '
'_method_list.code' addition 'method to define item + item '
'_method_list.code' division 'method to define item / item '
'_method_list.code' multiplication 'method to define item * item '
'_method_list.code' equivalence 'method to define item = item '
'_method_list.code' other 'miscellaneous method '
save_
save__method_list.language
_item_description.name '_method_list.language'
_item_description.description
;
Language in which the method is expressed.
;
_item.name '_method_list.language'
_item.category_id method_list
_item.mandatory_code yes
_item_type.name '_method_list.language'
_item_type.code code
loop_
_item_examples.name
_item_examples.case
_item_examples.detail
'_method_list.language' BNF ?
'_method_list.language' C ?
'_method_list.language' C++ ?
'_method_list.language' FORTRAN ?
'_method_list.language' LISP ?
'_method_list.language' PASCAL ?
'_method_list.language' PEARL ?
'_method_list.language' TCL ?
'_method_list.language' OTHER ?
save_
# ----------------------------------------------------------------------------
save_DICTIONARY
_category.description
;
Attributes for specifying the dictionary title, version and
data block identifier.
;
_category.id dictionary
_category.mandatory_code yes
_category.implicit_key mmcif_ddl.dic
_category_key.id dictionary
_category_key.name '_dictionary.datablock_id'
loop_
_category_group.id
_category_group.category_id
'ddl_group' dictionary
'datablock_group' dictionary
'dictionary_group' dictionary
save_
save__dictionary.datablock_id
_item_description.name '_dictionary.datablock_id'
_item_description.description
;
The identifier for the data block containing the dictionary.
;
_item.name '_dictionary.datablock_id'
_item.category_id dictionary
_item.mandatory_code implicit
_item_type.name '_dictionary.datablock_id'
_item_type.code code
save_
save__dictionary.title
_item_description.name '_dictionary.title'
_item_description.description
;
Title identification of the dictionary.
;
_item.name '_dictionary.title'
_item.category_id dictionary
_item.mandatory_code yes
_item_type.name '_dictionary.title'
_item_type.code char
save_
save__dictionary.version
_item_description.name '_dictionary.version'
_item_description.description
;
A unique version identifier for the dictionary.
;
_item.name '_dictionary.version'
_item.category_id dictionary
_item.mandatory_code yes
_item_type.name '_dictionary.version'
_item_type.code char
save_
# ----------------------------------------------------------------------------
save_DICTIONARY_HISTORY
_category.description
;
Attributes for specifying the revision history of the dictionary.
;
_category.id dictionary_history
_category.mandatory_code no
_category.implicit_key mmcif_ddl.dic
_category_key.id dictionary_history
_category_key.name '_dictionary_history.version'
loop_
_category_group.id
_category_group.category_id
'ddl_group' dictionary_history
'dictionary_group' dictionary_history
save_
save__dictionary_history.version
_item_description.name '_dictionary_history.version'
_item_description.description
;
A unique version identifier for the dictionary revision.
;
_item.name '_dictionary_history.version'
_item.category_id dictionary_history
_item.mandatory_code yes
_item_type.name '_dictionary_history.version'
_item_type.code char
_item_linked.child_name '_dictionary.version'
_item_linked.parent_name '_dictionary_history.version'
save_
save__dictionary_history.update
_item_description.name '_dictionary_history.update'
_item_description.description
;
The date that the last dictionary revision took place.
;
_item.name '_dictionary_history.update'
_item.category_id dictionary_history
_item.mandatory_code yes
_item_type.name '_dictionary_history.update'
_item_type.code yyyy-mm-dd
save_
save__dictionary_history.revision
_item_description.name '_dictionary_history.revision'
_item_description.description
;
Text description of the dictionary revision.
;
_item.name '_dictionary_history.revision'
_item.category_id dictionary_history
_item.mandatory_code yes
_item_type.name '_dictionary_history.revision'
_item_type.code text
save_
### EOF mmcif_ddl-def-1.dic
###########################################################################
#
# File: mmcif_ddl-def-1.dic
#
# mmCIF DDL Core Dictionary with NDB extensions
#
# This DDL dictionary is a mirror of ddl_core.dic-org with all implicit
# data items fully expanded and with NDB extensions added.
#
# Definition Section 2.
# (NDB Extension Definitions)
#
#
###########################################################################
save_NDB_CATEGORY_DESCRIPTION
_category.description
;
NDB description of data items in this category.
;
_category.id ndb_category_description
_category.mandatory_code no
_category.implicit_key mmcif_ddl.dic
loop_
_category_key.id
_category_key.name
ndb_category_description '_ndb_category_description.id'
ndb_category_description '_ndb_category_description.description'
save_
save__ndb_category_description.id
_item.name '_ndb_category_description.id'
_item.category_id ndb_category_description
_item.mandatory_code implicit
_item_type.name '_ndb_category_description.id'
_item_type.code idname
_item_linked.child_name '_ndb_category_description.id'
_item_linked.parent_name '_category.id'
save_
save__ndb_category_description.description
_item_description.name '_ndb_category_description.description'
_item_description.description
;
NDB text description of a category.
;
_item.name '_ndb_category_description.description'
_item.category_id ndb_category_description
_item.mandatory_code yes
_item_type.name '_ndb_category_description.description'
_item_type.code text
save_
# --------------------------------------------------------------------------
save_NDB_CATEGORY_EXAMPLES
_category.description
;
NDB example applications and descriptions of data items in this
category.
;
_category.id ndb_category_examples
_category.mandatory_code no
_category.implicit_key mmcif_ddl.dic
loop_
_category_key.id
_category_key.name
ndb_category_examples '_ndb_category_examples.id'
ndb_category_examples '_ndb_category_examples.case'
save_
save__ndb_category_examples.id
_item.name '_ndb_category_examples.id'
_item.category_id ndb_category_examples
_item.mandatory_code implicit
_item_type.name '_ndb_category_examples.id'
_item_type.code idname
_item_linked.child_name '_ndb_category_examples.id'
_item_linked.parent_name '_category.id'
save_
save__ndb_category_examples.case
_item_description.name '_ndb_category_examples.case'
_item_description.description
;
NDB case of examples involving items in this category.
;
_item.name '_ndb_category_examples.case'
_item.category_id ndb_category_examples
_item.mandatory_code yes
_item_type.name '_ndb_category_examples.case'
_item_type.code text
save_
save__ndb_category_examples.detail
_item_description.name '_ndb_category_examples.detail'
_item_description.description
;
NDB description of an example _category_examples.case
;
_item.name '_ndb_category_examples.detail'
_item.category_id ndb_category_examples
_item.mandatory_code no
_item_type.name '_ndb_category_examples.detail'
_item_type.code text
save_
#--------------------------------------------------------------------------
save_NDB_ITEM_DESCRIPTION
_category.description
;
This category holds the NDB descriptions of each data item.
;
_category.id ndb_item_description
_category.mandatory_code no
_category.implicit_key mmcif_ddl.dic
loop_
_category_key.id
_category_key.name
ndb_item_description '_ndb_item_description.name'
ndb_item_description '_ndb_item_description.description'
loop_
_category_group.id
_category_group.category_id
'ddl_group' ndb_item_description
'item_group' ndb_item_description
save_
save__ndb_item_description.name
_item_description.name '_ndb_item_description.name'
_item_description.description
;
Data name of the defined item.
;
_item.name '_ndb_item_description.name'
_item.category_id ndb_item_description
_item.mandatory_code implicit
_item_type.name '_ndb_item_description.name'
_item_type.code name
_item_linked.child_name '_ndb_item_description.name'
_item_linked.parent_name '_item.name'
save_
save__ndb_item_description.description
_item_description.name '_ndb_item_description.description'
_item_description.description
;
NDB text description of the defined data item.
;
_item.name '_ndb_item_description.description'
_item.category_id ndb_item_description
_item.mandatory_code yes
_item_type.name '_ndb_item_description.description'
_item_type.code text
save_
# --------------------------------------------------------------------------
save_NDB_ITEM_ENUMERATION
_category.description
;
Attributes which specify the permitted enumeration of the items.
;
_category.id ndb_item_enumeration
_category.mandatory_code no
_category.implicit_key mmcif_ddl.dic
loop_
_category_key.id
_category_key.name
ndb_item_enumeration '_ndb_item_enumeration.name'
ndb_item_enumeration '_ndb_item_enumeration.value'
loop_
_category_group.category_id
_category_group.id
ndb_item_enumeration 'ddl_group'
ndb_item_enumeration 'item_group'
save_
save__ndb_item_enumeration.name
_item.name '_ndb_item_enumeration.name'
_item.category_id ndb_item_enumeration
_item.mandatory_code implicit
_item_type.name '_ndb_item_enumeration.name'
_item_type.code name
_item_linked.child_name '_ndb_item_enumeration.name'
_item_linked.parent_name '_item.name'
save_
save__ndb_item_enumeration.value
_item_description.name '_ndb_item_enumeration.value'
_item_description.description
;
A permissible value, character or number, for the defined item.
;
_item.name '_ndb_item_enumeration.value'
_item.category_id ndb_item_enumeration
_item.mandatory_code yes
_item_type.name '_ndb_item_enumeration.value'
_item_type.code any
save_
save__ndb_item_enumeration.detail
_item_description.name '_ndb_item_enumeration.detail'
_item_description.description
;
A description of a permissible value for the defined item.
;
_item.name '_ndb_item_enumeration.detail'
_item.category_id ndb_item_enumeration
_item.mandatory_code no
_item_type.name '_ndb_item_enumeration.detail'
_item_type.code text
save_
# --------------------------------------------------------------------------
save_NDB_ITEM_EXAMPLES
_category.description
;
Attributes for describing application examples of the data item.
;
_category.id ndb_item_examples
_category.mandatory_code no
_category.implicit_key mmcif_ddl.dic
loop_
_category_key.id
_category_key.name
ndb_item_examples '_ndb_item_examples.name'
ndb_item_examples '_ndb_item_examples.case'
loop_
_category_group.id
_category_group.category_id
'ddl_group' ndb_item_examples
'item_group' ndb_item_examples
save_
save__ndb_item_examples.case
_item_description.name '_ndb_item_examples.case'
_item_description.description
;
NDB example application of the defined data item.
;
_item.name '_ndb_item_examples.case'
_item.category_id ndb_item_examples
_item.mandatory_code yes
_item_type.name '_ndb_item_examples.case'
_item_type.code text
save_
save__ndb_item_examples.detail
_item_description.name '_ndb_item_examples.detail'
_item_description.description
;
NDB description of an example specified in _ndb_item_example.case
;
_item.name '_ndb_item_examples.detail'
_item.category_id ndb_item_examples
_item.mandatory_code yes
_item_type.name '_ndb_item_examples.detail'
_item_type.code text
save_
save__ndb_item_examples.name
_item.name '_ndb_item_examples.name'
_item.category_id ndb_item_examples
_item.mandatory_code implicit
_item_type.name '_ndb_item_examples.name'
_item_type.code name
_item_linked.child_name '_ndb_item_examples.name'
_item_linked.parent_name '_item.name'
save_
#### EOF mmcif_ddl-def-2.dic
|