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 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301
|
**************************************************************************
* This program is to identify the best alignment of two protein
* structures that gives the highest TM-score. Input structures must
* be in the PDB format. By default, TM-score is normalized by the
* second protein. Users can obtain a brief instruction by simply
* running the program without arguments. For comments/suggestions,
* please contact email: zhng@umich.edu.
*
* Reference to cite:
* Yang Zhang, Jeffrey Skolnick, Nucl. Acid Res. 2005 33: 2302-9
*
* Permission to use, copy, modify, and distribute this program for
* any purpose, with or without fee, is hereby granted, provided that
* the notices on the head, the reference information, and this
* copyright notice appear in all copies or substantial portions of
* the Software. It is provided "as is" without express or implied
* warranty.
************************ updating history ********************************
* 2005/06/01: A bug of two-point superposition was fixed.
* 2005/10/19: the program was reformed so that the alignment
* results are not dependent on the specific compilers.
* 2006/06/20: select 'A' if there is altLoc when reading PDB file.
* 2007/02/27: rotation matrix from Chain-1 to Chain-2 was added.
* 2007/04/18: added options with TM-score normalized by average
* length, shorter length, or longer length of two
* structures.
* 2007/05/23: added additional output file 'TM.sup_all' for showing
* full-chain C-alpha traces while 'TM.sup' is only for
* aligned regions.
* 2007/09/19: added a new feature alignment to deal with the problem
* of aligning fractional structures (e.g. protein
* interfaces).
* 2007/10/16: A bug for irregular bond-length models was fixed.
* 2009/03/14: A new initial alignment was added and previous initial
* alignments are further enhanced. This change increased
* accuracy by 4% but increases CPU cost by 40%.
* 2009/08/20: A bug for asymmetry alignment result was fixed.
* 2010/08/02: A new RMSD matrix was used to remove obsolete statements.
* Staled subroutines were deleted.
* 2011/01/03: The length of pdb file names were extended to 500.
* 2011/01/24: Fixed a bug on output file name created on 2011/01/03.
* 2011/01/30: An open source license is attached to the program.
* 2011/09/03: A new option "-d" is added to allow users to change
* TM-score normalization scale. A version number is attached
* to the program from now on.
* 2011/10/11: A new scale (d0) was introduced for alignment search. This
* is to mainly improve alignment selection for small proteins
* (e.g. L<50 residues) but also increase alignment coverage
* of larger proteins. Second, TM-align output format is changed
* and two TM-scores normalized by both chains are reported.
* 2011/10/12: Distance cutoff for gap is increased from 3.85A to 4.25A.
* Added 'TMalign -v' to allow user to check version number.
* 2012/01/24: Fix a bug for secondary structure definition
* 2012/04/16: Add an option to allow user to specify seed alignments, e.g.
* '-i align.txt'. This is used together with other inherent
* TM-align seeds. An example of the fasta file can be seen at
* http://zhanglab.ccmb.med.umich.edu/TM-align/align.txt.
* 2012/04/17: Add an option '-m matrix.txt' to output the rotation matrix
* in separate file, drop-off secondary-structure smooth
* procedure, and add one iteration in initial5. This change
* increases the alignment accuracy (TM-score) by 2%.
* 2012/04/19: Add additional output file 'TM.sup_atm' 'TM.sup_all_atm' for
* showing all-atom superposition while 'TM.sup' and 'TM.sup_all'
* are only for C-alpha traces.
* 2012/05/07: Improved RMSD calculation subroutine which speeds up TM-algin
* program by 10%.
* 2012/07/07: Add an option '-I align.txt' to allow user to STICK TO the
* inital alignment. This is different from '-i align.txt' where
* initial alignment can be optimized.
* 2013/05/08: Update TM-align so that it can read all alternate location
* indicators and residue insertions.
* 2013/05/11: Fixed a bug in array overflow.
* 2014/06/01: Added 'TM.sup_all_atm_lig' to display ligand structures
* 2015/09/14: optimized I/O which increased speed by ~100%
* 2016/05/21: fixed a bug on conformation output
* 2017/07/08: Added one iteration in initial4 to avoid asymmetric alignment
**************************************************************************
program TMalign
PARAMETER(nmax=5000) !maximum length of the sequence
PARAMETER(nmax2=10000) !for alignment output
COMMON/BACKBONE/XA(3,nmax,0:1)
common/dpc/score(nmax,nmax),gap_open,invmap(nmax)
common/alignrst/invmap0(nmax)
common/length/nseq1,nseq2
common/d0/d0,anseq
common/d0min/d0_min
common/d00/d00,d002
common/alignment/m_alignment,sequence(10),TM_ali,L_ali,rmsd_ali
common/alignment1/m_alignment_stick
character*10000 sequence
character ins1(nmax),ins2(nmax),ains1(90000),ains2(90000)
common/sequence/seq1(0:nmax),seq2(0:nmax)
character seq1,seq2,du1
character*500 fnam,pdb(100),outname,falign,fmatrix
character*3 aa(-1:20),aanam,ss1(nmax),ss2(nmax)
character*500 s,du,dum1,dum2
character*504 outnameall_tmp,outnameall
character aseq1(nmax2),aseq2(nmax2),aseq3(nmax2)
character*8 version
character*5000 s1 !maximum length of protein is 5000
dimension m1(nmax),m2(nmax)
dimension xtm1(nmax),ytm1(nmax),ztm1(nmax)
dimension xtm2(nmax),ytm2(nmax),ztm2(nmax)
common/init/invmap_i(nmax)
common/TM/TM,TMmax
common/d8/d8
common/initial4/mm1(nmax),mm2(nmax)
character*10 aa1,ra1,aa2,ra2,du2
dimension ia1(90000),aa1(90000),ra1(90000),ir1(90000)
dimension xa1(90000),ya1(90000),za1(90000)
dimension ia2(90000),aa2(90000),ra2(90000),ir2(90000)
dimension xa2(90000),ya2(90000),za2(90000)
dimension ma1(nmax),ma2(nmax)
dimension nc1(nmax),nc2(nmax)
dimension nres1(nmax,32:122),nres2(nmax,32:122) !number of atoms
character*500 atom1(nmax,30),atom2(nmax,30) !atom name
c here atom1(i,j) should be atom2(i,j,k) but will beyond dimension
ccc RMSD:
double precision r_1(3,nmax),r_2(3,nmax),w(nmax)
double precision u(3,3),t(3),rms !armsd is real
data w /nmax*1.0/
ccc
data aa/ 'BCK','GLY','ALA','SER','CYS',
& 'VAL','THR','ILE','PRO','MET',
& 'ASP','ASN','LEU','LYS','GLU',
& 'GLN','ARG','HIS','PHE','TYR',
& 'TRP','CYX'/
character*1 slc(-1:20)
data slc/'X','G','A','S','C',
& 'V','T','I','P','M',
& 'D','N','L','K','E',
& 'Q','R','H','F','Y',
& 'W','C'/
call getarg(1,fnam)
if(fnam.eq.' '.or.fnam.eq.'?'.or.fnam.eq.'-h')then
write(*,*)
write(*,*)'Brief instruction for running TM-align program:'
write(*,*)'(For detail: Zhang & Skolnick, Nucl. Acid. Res.',
& ' 33: 2302-9, 2005)'
write(*,*)
write(*,*)'1. Align ''chain_1.pdb'' and ''chain_2.pdb'':'
write(*,*)' >TMalign chain_1.pdb chain_2.pdb'
write(*,*)
write(*,*)'2. Ask TM-align to start with an alignment',
& ' specified in fasta file ''align.txt'':'
write(*,*)' >TMalign chain_1.pdb chain_2.pdb -i align.txt'
write(*,*)' or to stick the alignment to ''align.txt'':'
write(*,*)' >TMalign chain_1.pdb chain_2.pdb -I align.txt'
write(*,*)
write(*,*)'3. Output the superposition to ''TM.sup'', ',
& '''TM.sup_all'' and ''TM.sup_atm'':'
write(*,*)' >TMalign chain_1.pdb chain_2.pdb -o TM.sup'
write(*,*)' To view superimposed C-alpha traces of',
& ' aligned regions by rasmol:'
write(*,*)' >rasmol -script TM.sup'
write(*,*)' To view superimposed C-alpha traces of',
& ' all regions:'
write(*,*)' >rasmol -script TM.sup_all'
write(*,*)' To view superimposed full-atom structures of',
& ' aligned regions:'
write(*,*)' >rasmol -script TM.sup_atm'
write(*,*)' To view superimposed full-atom structures of',
& ' all regions:'
write(*,*)' >rasmol -script TM.sup_all_atm'
write(*,*)' To view superimposed full-atom structures of',
& ' all regions with ligands:'
write(*,*)' >rasmol -script TM.sup_all_atm_lig'
write(*,*)
write(*,*)'4. There are two TM-scores reported. You ',
& 'should use the one normalized by'
write(*,*)' the length of the protein you ',
& 'are interested in.'
write(*,*)' If you want TM-score normalized by the ',
& 'average length of two proteins:'
write(*,*)' >TMalign chain_1.pdb chain_2.pdb -a'
write(*,*)' or TM-score normalized by an ',
& 'assigned length (>L_min), e.g. 100 AA:'
write(*,*)' >TMalign chain_1.pdb chain_2.pdb -L 100'
write(*,*)' If you want TM-score scaled by an assigned d0,',
& ' e.g. 5 A:'
write(*,*)' >TMalign chain_1.pdb chain_2.pdb -d 5'
write(*,*)
write(*,*)'5. Output TM-align rotation matrix:'
write(*,*)' >TMalign chain_1.pdb chain_2.pdb -m matrix.txt'
write(*,*)
goto 9999
endif
version='20170708'
if(fnam.eq.'-v')then
write(*,*)'TM-align Version ',version
goto 9999
endif
******* options ----------->
m_out=-1 !decided output
m_fix=-1 !fixed length-scale only for output
m_ave=-1 !using average length
m_d0_min=-1 !diminum d0 for search
m_d0=-1 !given d0 for output
m_alignment=-1 !without initial alignment
m_alignment_stick=-1 !without initial alignment
m_matrix=-1 !no output of matrix
narg=iargc()
i=0
j=0
115 continue
i=i+1
call getarg(i,fnam)
if(fnam.eq.'-o')then
m_out=1
i=i+1
call getarg(i,outname)
elseif(fnam.eq.'-a')then !change superposed output but not the alignment
m_ave=1
i=i+1
elseif(fnam.eq.'-L')then !change both L_all and d0
m_fix=1
i=i+1
call getarg(i,fnam)
read(fnam,*)L_fix
elseif(fnam.eq.'-d')then
m_d0=1
i=i+1
call getarg(i,fnam)
read(fnam,*)d0_fix
elseif(fnam.eq.'-i')then
m_alignment=1
i=i+1
call getarg(i,fnam)
falign=fnam
elseif(fnam.eq.'-I')then
m_alignment_stick=1
i=i+1
call getarg(i,fnam)
falign=fnam
elseif(fnam.eq.'-m')then
m_matrix=1
i=i+1
call getarg(i,fnam)
fmatrix=fnam
else
j=j+1
pdb(j)=fnam
endif
if(i.lt.narg)goto 115
irmx=0 !no conformation output
if(m_matrix.eq.1.or.m_out.eq.1)then !we need to extract rotation matrix
irmx=1
endif
ccccccccc read data from first CA file:
if(m_out.eq.-1)then !no output so no need to read all atoms (time-saving)
open(unit=10,file=pdb(1),status='old')
i=0
do while (.true.)
read(10,9001,end=1013) s
if(i.gt.0.and.s(1:3).eq.'TER')goto 1013
if(s(1:3).eq.'ATO')then
if(s(13:16).eq.'CA '.or.s(13:16).eq.' CA '.or
& .s(13:16).eq.' CA')then
du1=s(27:27) !read insertion tag
mk=1
if(s(17:17).ne.' ')then !with Alternate atom
read(s(23:26),*)i8 !res ID
if(nres1(i8,ichar(du1)).ge.1)then
mk=-1 !this residue was already read
endif
endif
if(mk.eq.1)then
i=i+1
read(s,9000)du,ma1(i),du,aanam,du,mm1(i),du,
$ xa(1,i,0),xa(2,i,0),xa(3,i,0)
nres1(mm1(i),ichar(du1))=nres1(mm1(i),ichar(du1))+1
do j=-1,20
if(aanam.eq.aa(j))then
seq1(i)=slc(j)
goto 121
endif
enddo
seq1(i)=slc(-1)
121 continue
ss1(i)=aanam
if(i.ge.nmax)goto 1013
endif
endif
endif
enddo
1013 continue
close(10)
nseq1=i
open(unit=10,file=pdb(2),status='old')
i=0
do while (.true.)
read(10,9001,end=1014) s
if(i.gt.0.and.s(1:3).eq.'TER')goto 1014
if(s(1:3).eq.'ATO')then
if(s(13:16).eq.'CA '.or.s(13:16).eq.' CA '.or
& .s(13:16).eq.' CA')then
du1=s(27:27) !read insertion tag
mk=1
if(s(17:17).ne.' ')then !with Alternate atom
read(s(23:26),*)i8 !res ID
if(nres2(i8,ichar(du1)).ge.1)then
mk=-1 !this residue was already read
endif
endif
if(mk.eq.1)then
i=i+1
read(s,9000)du,ma2(i),du,aanam,du,mm2(i),du,
$ xa(1,i,1),xa(2,i,1),xa(3,i,1)
nres2(mm2(i),ichar(du1))=nres2(mm2(i),ichar(du1))+1
do j=-1,20
if(aanam.eq.aa(j))then
seq2(i)=slc(j)
goto 122
endif
enddo
seq2(i)=slc(-1)
122 continue
ss2(i)=aanam
if(i.ge.nmax)goto 1014
endif
endif
endif
enddo
1014 continue
close(10)
nseq2=i
goto 1017
endif
c^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
cccccccc read full-atom structure that is needed only for output ---->
open(unit=10,file=pdb(1),status='old')
i=0
na1=0
ntt=0
do while (.true.)
read(10,9001,end=1010) s
if(i.gt.0.and.s(1:3).eq.'TER')goto 1010
if(s(1:3).eq.'ATO')then
***
du1=s(27:27) !read insertion tag
mk=1
if(s(17:17).ne.' ')then !with Alternate atom
du2=s(13:16) !atom ID
read(s(23:26),*)i8 !res ID
do i1=1,nres1(i8,ichar(du1)) !#of atoms for res_insert
if(du2.eq.atom1(i8,i1))then !such atom was already read
mk=-1
endif
enddo
endif
if(mk.eq.1)then
***
ntt=ntt+1
if(ntt.ge.90000)goto 1010
na1=na1+1
read(s,8999)du,ia1(na1),du,aa1(na1),du,ra1(na1),du,
& ir1(na1),du,xa1(na1),ya1(na1),za1(na1)
i8=ir1(na1)
if(nres1(i8,ichar(du1)).lt.30)then
nres1(i8,ichar(du1))=nres1(i8,ichar(du1))+1 !#of atoms for res_ins
atom1(i8,nres1(i8,ichar(du1)))=aa1(na1) !atom ID
endif
ains1(na1)=du1
if(s(13:16).eq.'CA '.or.s(13:16).eq.' CA '.or
& .s(13:16).eq.' CA')then
i=i+1
read(s,9000)du,ma1(i),du,aanam,du,mm1(i),du,
$ xa(1,i,0),xa(2,i,0),xa(3,i,0)
ins1(i)=du1
do j=-1,20
if(aanam.eq.aa(j))then
seq1(i)=slc(j)
goto 21
endif
enddo
seq1(i)=slc(-1)
21 continue
ss1(i)=aanam
if(i.ge.nmax)goto 1010
endif
endif
endif
enddo
1010 continue
8999 format(a6,I5,a1,A4,a1,A3,a2,I4,a4,3F8.3)
9000 format(a6,I5,a6,A3,A2,i4,A4,3F8.3)
9001 format(A100)
close(10)
nseq1=i
c^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
ccccccccc read data from the second structure file:
open(unit=10,file=pdb(2),status='old')
i=0
na2=0
ntt=0
do while (.true.)
read(10,9001,end=1011) s
if(i.gt.0.and.s(1:3).eq.'TER')goto 1011
if(s(1:3).eq.'ATO')then
***
du1=s(27:27) !read insertion tag
mk=1
if(s(17:17).ne.' ')then
du2=s(13:16)
read(s(23:26),*)i8
do i1=1,nres2(i8,ichar(du1))
if(du2.eq.atom2(i8,i1))then
mk=-1
endif
enddo
endif
if(mk.eq.1)then
***
ntt=ntt+1
if(ntt.ge.90000)goto 1011
na2=na2+1
read(s,8999)du,ia2(na2),du,aa2(na2),du,ra2(na2),du,
& ir2(na2),du,xa2(na2),ya2(na2),za2(na2)
i8=ir2(na2)
if(nres2(i8,ichar(du1)).lt.30)then
nres2(i8,ichar(du1))=nres2(i8,ichar(du1))+1
atom2(i8,nres2(i8,ichar(du1)))=aa2(na2)
endif
ains2(na2)=du1
if(s(13:16).eq.'CA '.or.s(13:16).eq.' CA '.or.
& s(13:16).eq.' CA')then
i=i+1
read(s,9000)du,ma2(i),du,aanam,du,mm2(i),du,
$ xa(1,i,1),xa(2,i,1),xa(3,i,1)
ins2(i)=du1
do j=-1,20
if(aanam.eq.aa(j))then
seq2(i)=slc(j)
goto 22
endif
enddo
seq2(i)=slc(-1)
22 continue
ss2(i)=aanam
if(i.ge.nmax)goto 1011
endif
endif
endif
enddo
1011 continue
close(10)
nseq2=i
c^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1017 continue
ccccccccc read initial alignment file from 'alignment.txt':
if(m_alignment.eq.1.or.m_alignment_stick.eq.1)then
open(unit=10,file=falign,status='old')
n_p=0
do while (.true.)
read(10,9002,end=1012)s1
c write(*,*)'s1=',trim(s1)
if(s1(1:1).eq.">")then
n_p=n_p+1
sequence(n_p)=''
if(n_p.gt.2)goto 1012
else
if(n_p.gt.0)then
sequence(n_p)=sequence(n_p)(1:len_trim(sequence(n_p)))
& //s1(1:len_trim(s1))
c write(*,*)n_p,trim(sequence(n_p))
endif
endif
enddo
1012 continue
close(10)
c write(*,*)trim(sequence(1))
c write(*,*)trim(sequence(2))
if(n_p.lt.2)then
write(*,*)'ERROR: FASTA format is wrong, two proteins',
& ' should be included'
stop
endif
if(len_trim(sequence(1)).ne.len_trim(sequence(2)))then
write(*,*)'Warning: FASTA format may be wrong, the',
& ' length in alignment should be equal. But we',
& ' run it anyway'
endif
endif
9002 format(A5000)
c^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
* Scale of TM-score in search based on length of smaller protein --------->
anseq_min=min(nseq1,nseq2) !both search and d8_cut use nseq_min
anseq=anseq_min !length for defining TMscore in search
d8=1.5*anseq_min**0.3+3.5 !remove pairs with dis>d8 during search & final
if(anseq.gt.19)then !L=19, d0=0.168
d0=1.24*(anseq-15)**(1.0/3.0)-1.8 !scale for defining TM-score
else
d0=0.168
endif
d0_min=d0+0.8 !best for search, this should be changed when calculate real TM-score
if(d0.lt.d0_min)d0=d0_min !min d0 in search=0.968, min d0 in output=0.5
c write(*,*)'d0 in search=',d0
d00=d0 !for quickly calculate TM-score in searching
if(d00.gt.8)d00=8
if(d00.lt.4.5)d00=4.5
d002=d00**2
nseq=max(nseq1,nseq2)
***** do alignment **************************
CALL TM_align !to find invmap(j)
************************************************************
*** Refine alignment by cutting dis>d8 ------------------------>
n_al=0
do j=1,nseq2
if(invmap0(j).gt.0)then
i=invmap0(j)
n_al=n_al+1
xtm1(n_al)=xa(1,i,0)
ytm1(n_al)=xa(2,i,0)
ztm1(n_al)=xa(3,i,0)
xtm2(n_al)=xa(1,j,1)
ytm2(n_al)=xa(2,j,1)
ztm2(n_al)=xa(3,j,1)
m1(n_al)=i !for recording residue order
m2(n_al)=j
endif
enddo
d0_input=d0 !scaled by seq_min
call TMscore8(d0_input,n_al,xtm1,ytm1,ztm1,n_al,
& xtm2,ytm2,ztm2,TM,Rcomm,Lcomm) !TM-score with dis<d8 only
j=0
n_eq=0
do i=1,n_al
dis2=sqrt((xtm1(i)-xtm2(i))**2+(ytm1(i)-ytm2(i))**2+
& (ztm1(i)-ztm2(i))**2)
if(dis2.le.d8.or.m_alignment_stick.eq.1)then
j=j+1
xtm1(j)=xtm1(i)
ytm1(j)=ytm1(i)
ztm1(j)=ztm1(i)
xtm2(j)=xtm2(i)
ytm2(j)=ytm2(i)
ztm2(j)=ztm2(i)
r_1(1,j)=xtm1(i)
r_1(2,j)=ytm1(i)
r_1(3,j)=ztm1(i)
r_2(1,j)=xtm2(i)
r_2(2,j)=ytm2(i)
r_2(3,j)=ztm2(i)
m1(j)=m1(i) !record alignment
m2(j)=m2(i)
if(ss1(m1(i)).eq.ss2(m2(i)))then
n_eq=n_eq+1
endif
endif
enddo
n8_al=j
seq_id=float(n_eq)/(n8_al+0.00000001)
call u3b(w,r_1,r_2,n8_al,0,rms,u,t,ier)
rmsd=dsqrt(rms/n8_al)
c write(*,*)'---------',rms,n8_al,RMSD,u(1,1),t(1)
*^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
*^^^^^^^ alignment is done, all cutoffs were based on shorter chain^^^^^^^^
*^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
************************************************************
*** Output TM-score -------------------------->
d0_out=5 !only for showing residue-pair distance
d0_min=0.5 !for TM-score output, consistent stdrd TM-score
* Based on Chain_1===>
anseq=nseq1
if(anseq.gt.21)then
d0=1.24*(anseq-15)**(1.0/3.0)-1.8 !scale for defining TM-score
else
d0=d0_min
endif
if(d0.lt.d0_min)d0=d0_min
d0_input=d0
call TMscore(d0_input,n8_al,xtm1,ytm1,ztm1,n8_al,
& xtm2,ytm2,ztm2,TM8,Rcomm,Lcomm,0) !normal TMscore
TM1=TM8*n8_al/anseq
* Based on Chain_2===>
anseq=nseq2
if(anseq.gt.21)then
d0=1.24*(anseq-15)**(1.0/3.0)-1.8 !scale for defining TM-score
else
d0=d0_min
endif
if(d0.lt.d0_min)d0=d0_min
d0_input=d0
call TMscore(d0_input,n8_al,xtm1,ytm1,ztm1,n8_al,
& xtm2,ytm2,ztm2,TM8,Rcomm,Lcomm,irmx) !normal TMscore
TM2=TM8*n8_al/anseq
* Based on Average length===>
if(m_ave.eq.1)then
anseq=(nseq1+nseq2)/2.0
if(anseq.gt.21)then
d0=1.24*(anseq-15)**(1.0/3.0)-1.8 !scale for defining TM-score
else
d0=d0_min
endif
if(d0.lt.d0_min)d0=d0_min
d0_input=d0
call TMscore(d0_input,n8_al,xtm1,ytm1,ztm1,n8_al,
& xtm2,ytm2,ztm2,TM8,Rcomm,Lcomm,irmx) !normal TMscore
TM12=TM8*n8_al/anseq
endif
* Based on assigned length===>
if(m_fix.eq.1)then
anseq=L_fix !input length
if(anseq.gt.21)then
d0=1.24*(anseq-15)**(1.0/3.0)-1.8 !scale for defining TM-score
else
d0=d0_min
endif
if(d0.lt.d0_min)d0=d0_min
d0_input=d0
call TMscore(d0_input,n8_al,xtm1,ytm1,ztm1,n8_al,
& xtm2,ytm2,ztm2,TM8,Rcomm,Lcomm,irmx) !normal TMscore
TML=TM8*n8_al/anseq
endif
* Based on user-specified d0===>
if(m_d0.eq.1)then
d0=d0_fix
d0_out=d0_fix
d0_input=d0
call TMscore(d0_input,n8_al,xtm1,ytm1,ztm1,n8_al,
& xtm2,ytm2,ztm2,TM8,Rcomm,Lcomm,irmx) !normal TMscore
TMfix=TM8*n8_al/nseq2
endif
*********for output summary ******************************
write(*,*)
write(*,*)'*****************************************************',
& '*********************'
write(*,*)'* TM-align (Version ',version,
& ') *'
write(*,*)'* An algorithm for protein structure alignment and co',
& 'mparison *'
write(*,*)'* Based on statistics: ',
& ' *'
write(*,*)'* 0.0 < TM-score < 0.30, random structural simi',
& 'larity *'
write(*,*)'* 0.5 < TM-score < 1.00, in about the same fold',
& ' *'
write(*,*)'* Reference: Y Zhang and J Skolnick, Nucl Acids Res 3',
& '3, 2302-9 (2005) *'
write(*,*)'* Please email your comments and suggestions to: zhng',
& '@umich.edu *'
write(*,*)'*****************************************************',
& '*********************'
write(*,*)
write(*,101)pdb(1)
101 format('Name of Chain_1: ',A50)
write(*,102)pdb(2)
102 format('Name of Chain_2: ',A50)
write(*,103)nseq1
103 format('Length of Chain_1: ',I4,' residues')
write(*,201)nseq2
201 format('Length of Chain_2: ',I4,' residues')
if(m_alignment.eq.1.or.m_alignment_stick.eq.1)then
write(*,72)TM_ali,L_ali,rmsd_ali
72 format('User-specified initial alignment: TM/Lali/rmsd= ',
& f7.5,', ',I4,', ',f6.3)
endif
write(*,*)
write(*,203)n8_al,rmsd,seq_id
203 format('Aligned length= ',I4,', RMSD= ',f6.2,
& ', Seq_ID=n_identical/n_aligned= ',f5.3)
write(*,204)TM1
204 format('TM-score= ',f7.5,' (if normalized by length of Chain_1)')
write(*,205)TM2
205 format('TM-score= ',f7.5,' (if normalized by length of Chain_2)')
if(m_ave.eq.1)then
write(*,206)TM12,(nseq1+nseq2)/2.0
206 format('TM-score= ',f7.5,
& ' (if normalized by average length of chains =',f6.1,')')
endif
if(m_fix.eq.1)then
write(*,207)TML,L_fix
207 format('TM-score= ',f7.5,
& ' (if scaled by user-specified L=',I4,')')
endif
if(m_d0.eq.1)then
write(*,208)TMfix,d0_fix
208 format('TM-score= ',f7.5,
& ' (if scaled by user-specified d0=',f4.1,')')
endif
write(*,210)
210 format('(You should use TM-score normalized by length',
& ' of the reference protein)')
write(*,*)
********* extract rotation matrix based on TMscore8 ------------>
if(m_matrix.eq.1.or.m_out.eq.1)then !we need to extract rotation matrix
L=0
do i=1,n8_al
k=m1(i)
L=L+1
r_1(1,L)=xa(1,k,0)
r_1(2,L)=xa(2,k,0)
r_1(3,L)=xa(3,k,0)
r_2(1,L)=xtm1(i)
r_2(2,L)=ytm1(i)
r_2(3,L)=ztm1(i)
enddo
if(L.le.3)then
write(*,*)'Aligned length is too short,',
& ' no matrix outout'
goto 211
endif
call u3b(w,r_1,r_2,L,1,rms,u,t,ier) !u rotate r_1 to r_2, this will be used by whole-chain
211 continue
endif
********* output rotation matrix -------------------------->
if(m_matrix.eq.1)then
open(unit=1,file=fmatrix,status='unknown')
write(1,*)'-------- Rotation matrix to rotate Chain_1 to ',
& 'Chain_2 ------'
write(1,*)'m t(m) u(m,1) u(m,2) ',
& ' u(m,3)'
do i=1,3
write(1,209)i,t(i),u(i,1),u(i,2),u(i,3)
enddo
write(1,*)'Code for rotating Chain_1 from (x,y,z) to (X,Y,Z):'
write(1,*)' do i=1,L'
write(1,*)' X(i)=t(1)+u(1,1)*x(i)+u(1,2)*y(i)+u(1,3)*z(i)'
write(1,*)' Y(i)=t(2)+u(2,1)*x(i)+u(2,2)*y(i)+u(2,3)*z(i)'
write(1,*)' Z(i)=t(3)+u(3,1)*x(i)+u(3,2)*y(i)+u(3,3)*z(i)'
write(1,*)' enddo'
write(1,*)
close(1)
209 format(I2,f18.10,f15.10,f15.10,f15.10)
endif
********* output superposition ******************************
if(m_out.eq.1)then
c 11, output superimpostion in the aligned regions ------------->
1236 format('ATOM ',i5,' CA ',A3,' A',I4,A1,3X,3F8.3)
1237 format('ATOM ',i5,' CA ',A3,' B',I4,A1,3X,3F8.3)
1238 format('TER')
1239 format('CONECT',I5,I5)
900 format(A)
902 format('select ',I4,':A,',I4,':B')
903 format('REMARK TM-align Version ',A8,'')
104 format('REMARK Chain 1:',A10,' Size=',I4)
105 format('REMARK Chain 2:',A10,' Size=',I4,
& ' (TM-score is normalized by ',I4,', d0=',f6.2,')')
106 format('REMARK Aligned length=',I4,', RMSD=',f6.2,
& ', TM-score=',f7.5,', ID=',f5.3)
OPEN(unit=7,file=outname,status='unknown') !TM.sup=pdb1.aln + pdb2.aln
*** script:
write(7,900)'load inline'
write(7,900)'select *A'
write(7,900)'wireframe .45'
write(7,900)'select *B'
write(7,900)'wireframe .20'
write(7,900)'select all'
write(7,900)'color white'
do i=1,n8_al
dis2=sqrt((xtm1(i)-xtm2(i))**2+
& (ytm1(i)-ytm2(i))**2+(ztm1(i)-ztm2(i))**2)
if(dis2.le.d0_out)then
write(7,902)mm1(m1(i)),mm2(m2(i))
write(7,900)'color red'
endif
enddo
write(7,900)'select all'
write(7,900)'exit'
write(7,903)version
write(7,104)pdb(1),nseq1
write(7,105)pdb(2),nseq2,int(anseq),d0
write(7,106)n8_al,rmsd,TM2,seq_id
*** chain1:
do i=1,n8_al
write(7,1236)m1(i),ss1(m1(i)),mm1(m1(i)),ins1(m1(i)),
& xtm1(i),ytm1(i),ztm1(i)
enddo
write(7,1238) !TER
do i=2,n8_al
write(7,1239)m1(i-1),m1(i) !connect atoms
enddo
*** chain2:
do i=1,n8_al
write(7,1237)5000+m2(i),ss2(m2(i)),mm2(m2(i)),ins2(m2(i)),
$ xtm2(i),ytm2(i),ztm2(i)
enddo
write(7,1238)
do i=2,n8_al
write(7,1239)5000+m2(i-1),5000+m2(i)
enddo
close(7)
c 22, output CA-trace of whole chain in 'TM.sup_all' -------->
outnameall=outname(1:len_trim(outname))//'_all'
OPEN(unit=8,file=outnameall,status='unknown') !pdb1.aln + pdb2.aln
*** script:
write(8,900)'load inline'
write(8,900)'select *A'
write(8,900)'wireframe .45'
write(8,900)'select none'
write(8,900)'select *B'
write(8,900)'wireframe .20'
write(8,900)'color white'
do i=1,n8_al
dis2=sqrt((xtm1(i)-xtm2(i))**2+
& (ytm1(i)-ytm2(i))**2+(ztm1(i)-ztm2(i))**2)
if(dis2.le.d0_out)then
write(8,902)mm1(m1(i)),mm2(m2(i)) !select residue
write(8,900)'color red'
endif
enddo
write(8,900)'select all'
write(8,900)'exit'
write(8,903)version
write(8,104)pdb(1),nseq1
write(8,105)pdb(2),nseq2,int(anseq),d0
write(8,106)n8_al,rmsd,TM2,seq_id
*** chain1:
do i=1,nseq1
ax=t(1)+u(1,1)*xa(1,i,0)+u(1,2)*xa(2,i,0)+u(1,3)*xa(3,i,0)
ay=t(2)+u(2,1)*xa(1,i,0)+u(2,2)*xa(2,i,0)+u(2,3)*xa(3,i,0)
az=t(3)+u(3,1)*xa(1,i,0)+u(3,2)*xa(2,i,0)+u(3,3)*xa(3,i,0)
write(8,1236)i,ss1(i),mm1(i),ins1(i),ax,ay,az
enddo
write(8,1238) !TER
do i=2,nseq1
write(8,1239)i-1,i !CONECT atom numbers
enddo
*** chain2:
do i=1,nseq2
write(8,1237)5000+i,ss2(i),mm2(i),ins2(i),
$ xa(1,i,1),xa(2,i,1),xa(3,i,1)
enddo
write(8,1238)
do i=2,nseq2
write(8,1239)5000+i-1,5000+i
enddo
close(8)
c 33, output full-atomic structure of whole chain in 'TM.sup_atm' -------->
outnameall=outname(1:len_trim(outname))//'_atm'
OPEN(unit=8,file=outnameall,status='unknown') !pdb1.aln + pdb2.aln
*** script:
write(8,900)'load inline'
write(8,900)'select *A'
write(8,900)'color blue'
write(8,900)'select *B'
write(8,900)'color red'
write(8,900)'select all'
write(8,900)'cartoon'
write(8,900)'exit'
write(8,903)version
write(8,104)pdb(1),nseq1
write(8,105)pdb(2),nseq2,int(anseq),d0
write(8,106)n8_al,rmsd,TM2,seq_id
*** chain1:
do i=1,na1
do j=1,n8_al
if(ir1(i).eq.mm1(m1(j)))then !aligned residues
if(ains1(i).eq.ins1(m1(j)))then
ax=t(1)+u(1,1)*xa1(i)+u(1,2)*ya1(i)+u(1,3)*za1(i)
ay=t(2)+u(2,1)*xa1(i)+u(2,2)*ya1(i)+u(2,3)*za1(i)
az=t(3)+u(3,1)*xa1(i)+u(3,2)*ya1(i)+u(3,3)*za1(i)
write(8,8888)ia1(i),aa1(i),ra1(i),ir1(i),ains1(i),
& ax,ay,az
endif
endif
enddo
enddo
write(8,1238) !TER
*** chain2:
do i=1,na2
do j=1,n8_al
if(ir2(i).eq.mm2(m2(j)))then !aligned residues
if(ains2(i).eq.ins2(m2(j)))then
write(8,8889)ia2(i),aa2(i),ra2(i),ir2(i),ains2(i),
& xa2(i),ya2(i),za2(i)
endif
endif
enddo
enddo
write(8,1238) !TER
close(8)
c 44, output full-atomic structure of whole chain in 'TM.sup_all_atm' -------->
outnameall=outname(1:len_trim(outname))//'_all_atm'
OPEN(unit=8,file=outnameall,status='unknown') !pdb1.aln + pdb2.aln
*** script:
write(8,900)'load inline'
write(8,900)'select *A'
write(8,900)'color blue'
write(8,900)'select *B'
write(8,900)'color red'
write(8,900)'select all'
write(8,900)'cartoon'
write(8,900)'exit'
write(8,903)version
write(8,104)pdb(1),nseq1
write(8,105)pdb(2),nseq2,int(anseq),d0
write(8,106)n8_al,rmsd,TM2,seq_id
*** chain1:
do i=1,na1
ax=t(1)+u(1,1)*xa1(i)+u(1,2)*ya1(i)+u(1,3)*za1(i)
ay=t(2)+u(2,1)*xa1(i)+u(2,2)*ya1(i)+u(2,3)*za1(i)
az=t(3)+u(3,1)*xa1(i)+u(3,2)*ya1(i)+u(3,3)*za1(i)
write(8,8888)ia1(i),aa1(i),ra1(i),ir1(i),ains1(i),
& ax,ay,az
enddo
write(8,1238) !TER
*** chain2:
do i=1,na2
write(8,8889)ia2(i),aa2(i),ra2(i),ir2(i),ains2(i),
& xa2(i),ya2(i),za2(i)
enddo
write(8,1238) !TER
close(8)
c 55, output full-atomic structure of whole chain in 'TM.sup_all_atm_lig' ---->
outnameall=outname(1:len_trim(outname))//'_all_atm_lig'
OPEN(unit=8,file=outnameall,status='unknown') !pdb1.aln + pdb2.aln
*** script:
write(8,900)'load inline'
write(8,900)'select all'
write(8,900)'cartoon'
write(8,900)'select *A'
write(8,900)'color blue'
write(8,900)'select *B'
write(8,900)'color red'
write(8,900)'select ligand'
write(8,900)'wireframe 0.25'
write(8,900)'select solvent'
write(8,900)'spacefill 0.25'
write(8,900)'select all'
write(8,900)'exit'
write(8,903)version
write(8,104)pdb(1),nseq1
write(8,105)pdb(2),nseq2,int(anseq),d0
write(8,106)n8_al,rmsd,TM2,seq_id
*** chain1:
open(unit=10,file=pdb(1),status='old')
do while (.true.)
read(10,9001,end=1015) s
if(s(1:6).eq.'ATOM '.or.s(1:6).eq.'HETATM')then
read(s,8900)du,xxx,yyy,zzz
xxn=t(1)+u(1,1)*xxx+u(1,2)*yyy+u(1,3)*zzz
yyn=t(2)+u(2,1)*xxx+u(2,2)*yyy+u(2,3)*zzz
zzn=t(3)+u(3,1)*xxx+u(3,2)*yyy+u(3,3)*zzz
write(8,8901)du(1:21),'A',du(23:30),xxn,yyn,zzn
endif
enddo
1015 continue
close(10)
write(8,1238) !TER
*** chain2:
open(unit=10,file=pdb(2),status='old')
do while (.true.)
read(10,9001,end=1016) s
if(s(1:6).eq.'ATOM '.or.s(1:6).eq.'HETATM')then
read(s,8900)du,xxx,yyy,zzz
write(8,8901)du(1:21),'B',du(23:30),xxx,yyy,zzz
endif
enddo
1016 continue
close(10)
write(8,1238) !TER
close(8)
8888 format('ATOM ',I5,1x,A4,1x,A3,' A',I4,A1,3x,3F8.3)
8889 format('ATOM ',I5,1x,A4,1x,A3,' B',I4,A1,3x,3F8.3)
8900 format(a30,3F8.3)
8901 format(a21,a1,a8,3F8.3)
endif
*^^^^^^^^^^^^^^^^^^ output finished ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
************ output aligned sequences **************************
ii=0
i1_old=1
i2_old=1
do i=1,n8_al
do j=i1_old,m1(i)-1
ii=ii+1
aseq1(ii)=seq1(j)
aseq2(ii)='-'
aseq3(ii)=' '
enddo
do j=i2_old,m2(i)-1
ii=ii+1
aseq1(ii)='-'
aseq2(ii)=seq2(j)
aseq3(ii)=' '
enddo
ii=ii+1
aseq1(ii)=seq1(m1(i))
aseq2(ii)=seq2(m2(i))
dis2=sqrt((xtm1(i)-xtm2(i))**2+
& (ytm1(i)-ytm2(i))**2+(ztm1(i)-ztm2(i))**2)
if(dis2.le.d0_out)then
aseq3(ii)=':'
else
aseq3(ii)='.'
endif
i1_old=m1(i)+1
i2_old=m2(i)+1
enddo
do i=i1_old,nseq1
ii=ii+1
aseq1(ii)=seq1(i)
aseq2(ii)='-'
aseq3(ii)=' '
enddo
do i=i2_old,nseq2
ii=ii+1
aseq1(ii)='-'
aseq2(ii)=seq2(i)
aseq3(ii)=' '
enddo
write(*,50)d0_out
50 format('(":" denotes aligned residue pairs of d < ',f3.1,
& ' A, "." denotes other aligned residues)')
write(*,10)(aseq1(i),i=1,ii)
write(*,10)(aseq3(i),i=1,ii)
write(*,10)(aseq2(i),i=1,ii)
10 format(10000A1)
write(*,*)
c^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
9999 END
***********************************************************************
***********************************************************************
* Structure superposition
***********************************************************************
***********************************************************************
***********************************************************************
SUBROUTINE TM_align
PARAMETER(nmax=5000)
COMMON/BACKBONE/XA(3,nmax,0:1)
common/length/nseq1,nseq2
common/dpc/score(nmax,nmax),gap_open,invmap(nmax)
common/alignrst/invmap0(nmax)
common/zscore/zrms,n_al,rmsd_al
common/TM/TM,TMmax
common/init/invmap_i(nmax)
common/d0/d0,anseq
dimension gapp(100)
common/alignment/m_alignment,sequence(10),TM_ali,L_ali,rmsd_ali
common/alignment1/m_alignment_stick
character*10000 sequence
TMmax=0
n_gapp=2
gapp(1)=-0.6
gapp(2)=0
ddcc=0.4
if(anseq.le.40)then
ddcc=0.1
endif
ccc stick to the initial alignment -------------->
if(m_alignment_stick.eq.1)then
do j=1,nseq2
invmap(j)=-1
enddo
i1=0
i2=0
L1=LEN_TRIM(sequence(1))
L2=LEN_TRIM(sequence(2))
L=L1
if(L2.lt.L)L=L2
do 6661 i=1,L
if(sequence(1)(i:i).ne.'-')i1=i1+1
if(i1.gt.nseq1)then
goto 6661
endif
if(sequence(2)(i:i).ne.'-')then
i2=i2+1
if(i2.gt.nseq2)then
goto 6661
endif
if(sequence(1)(i:i).ne.'-')then
invmap(i2)=i1
endif
endif
6661 enddo
call standard_TMscore(TM_ali,L_ali,rmsd_ali) !calc TM-score from invmap, nmlzd by nseq2
ccc
call get_score !TM, matrix score(i,j)
if(TM.gt.TMmax)then
TMmax=TM
do j=1,nseq2
invmap0(j)=invmap(j)
enddo
endif
return
endif
*11111111111111111111111111111111111111111111111111111111
* get initial alignment from global gapless threading
**********************************************************
call get_initial1 !gapless threading
do i=1,nseq2
invmap(i)=invmap_i(i) !with highest zcore
enddo
call get_score !TM, matrix score(i,j)
if(TM.gt.TMmax)then
TMmax=TM
do j=1,nseq2
invmap0(j)=invmap(j)
enddo
endif
*****************************************************************
* initerative alignment, for different gap_open:
*****************************************************************
DO 1 i_gapp=1,n_gapp !different gap panalties
GAP_OPEN=gapp(i_gapp) !gap panalty
do 11 id=1,30 !maximum interation is 200
call DP(NSEQ1,NSEQ2) !produce alignment invmap(j)
* Input: score(i,j), and gap_open
* Output: invmap(j)
call get_score !calculate TM-score, score(i,j)
c record the best alignment in whole search ---------->
if(TM.gt.TMmax)then
TMmax=TM
do j=1,nseq2
invmap0(j)=invmap(j)
enddo
endif
if(id.gt.1)then
diff=abs(TM-TM_old)
if(diff.lt.0.000001)goto 111
endif
TM_old=TM
11 continue
111 continue
1 continue
*222222222222222222222222222222222222222222222222222222222
* get initial alignment from secondary structure alignment
**********************************************************
call get_initial2 !DP for secondary structure
do i=1,nseq2
invmap(i)=invmap_i(i) !with highest zcore
enddo
call get_score !TM, score(i,j)
if(TM.gt.TMmax)then
TMmax=TM
do j=1,nseq2
invmap0(j)=invmap(j)
enddo
endif
if(TM.le.TMmax*0.2)goto 2222
*****************************************************************
* initerative alignment, for different gap_open:
*****************************************************************
DO 2 i_gapp=1,n_gapp !different gap panalties
GAP_OPEN=gapp(i_gapp) !gap panalty
do 22 id=1,30 !maximum interation is 200
call DP(NSEQ1,NSEQ2) !produce alignment invmap(j)
* Input: score(i,j), and gap_open
* Output: invmap(j)
call get_score !calculate TM-score, score(i,j)
c write(*,21)gap_open,rmsd_al,n_al,TM
c record the best alignment in whole search ---------->
if(TM.gt.TMmax)then
TMmax=TM
do j=1,nseq2
invmap0(j)=invmap(j)
enddo
endif
if(id.gt.1)then
diff=abs(TM-TM_old)
if(diff.lt.0.000001)goto 222
endif
TM_old=TM
22 continue
222 continue
2 continue
2222 continue
*555555555555555555555555555555555555555555555555555555555555555555
* get initial alignment of local structure superposition
*******************************************************************
call get_initial5
do i=1,nseq2
invmap(i)=invmap_i(i) !with highest zcore
enddo
call get_score !TM, matrix score(i,j)
if(TM.gt.TMmax)then
TMmax=TM
do j=1,nseq2
invmap0(j)=invmap(j)
enddo
endif
if(TM.le.TMmax*ddcc)goto 5555
*****************************************************************
* initerative alignment, for different gap_open:
*****************************************************************
DO 5 i_gapp=1,n_gapp !different gap panalties
GAP_OPEN=gapp(i_gapp) !gap panalty
do 55 id=1,2 !maximum interation is 200
call DP(NSEQ1,NSEQ2) !produce alignment invmap(j)
* Input: score(i,j), and gap_open
* Output: invmap(j)
call get_score !calculate TM-score, score(i,j)
c record the best alignment in whole search ---------->
if(TM.gt.TMmax)then
TMmax=TM
do j=1,nseq2
invmap0(j)=invmap(j)
enddo
endif
if(id.gt.1)then
diff=abs(TM-TM_old)
if(diff.lt.0.000001)goto 555
endif
TM_old=TM
55 continue
555 continue
5 continue
5555 continue
*333333333333333333333333333333333333333333333333333333333333
* get initial alignment from invmap0+SS
*************************************************************
call get_initial3 !invmap0+SS
do i=1,nseq2
invmap(i)=invmap_i(i) !with highest zcore
enddo
call get_score !TM, score(i,j)
if(TM.gt.TMmax)then
TMmax=TM
do j=1,nseq2
invmap0(j)=invmap(j)
enddo
endif
if(TM.le.TMmax*ddcc)goto 3333
*****************************************************************
* initerative alignment, for different gap_open:
*****************************************************************
DO 3 i_gapp=1,n_gapp !different gap panalties
GAP_OPEN=gapp(i_gapp) !gap panalty
do 33 id=1,30 !maximum interation is 200
call DP(NSEQ1,NSEQ2) !produce alignment invmap(j)
* Input: score(i,j), and gap_open
* Output: invmap(j)
call get_score !calculate TM-score, score(i,j)
c write(*,21)gap_open,rmsd_al,n_al,TM
c record the best alignment in whole search ---------->
if(TM.gt.TMmax)then
TMmax=TM
do j=1,nseq2
invmap0(j)=invmap(j)
enddo
endif
if(id.gt.1)then
diff=abs(TM-TM_old)
if(diff.lt.0.000001)goto 333
endif
TM_old=TM
33 continue
333 continue
3 continue
3333 continue
*444444444444444444444444444444444444444444444444444444444
* initial alignment from gapless threading on largest continous fragments
**********************************************************
call get_initial4 !gapless threading
do i=1,nseq2
invmap(i)=invmap_i(i) !with highest zcore
enddo
call get_score !TM, matrix score(i,j)
if(TM.gt.TMmax)then
TMmax=TM
do j=1,nseq2
invmap0(j)=invmap(j)
enddo
endif
if(TM.le.TMmax*ddcc)goto 4444
*****************************************************************
* initerative alignment, for different gap_open:
*****************************************************************
DO 4 i_gapp=2,n_gapp !different gap panalties
GAP_OPEN=gapp(i_gapp) !gap panalty
do 44 id=1,2 !maximum interation is 200
call DP(NSEQ1,NSEQ2) !produce alignment invmap(j)
* Input: score(i,j), and gap_open
* Output: invmap(j)
call get_score !calculate TM-score, score(i,j)
c record the best alignment in whole search ---------->
if(TM.gt.TMmax)then
TMmax=TM
do j=1,nseq2
invmap0(j)=invmap(j)
enddo
endif
44 continue
4 continue
4444 continue
*666666666666666666666666666666666666666666666666666666666666
* get initial alignment from user's input:
*************************************************************
if(m_alignment.ne.1)goto 6666
do j=1,nseq2
invmap(j)=-1
enddo
i1=0
i2=0
L1=LEN_TRIM(sequence(1))
L2=LEN_TRIM(sequence(2))
c write(*,*)'seq1= ',trim(sequence(1))
c write(*,*)'seq2= ',trim(sequence(2))
L=L1
if(L2.lt.L)L=L2
do 666 i=1,L
c write(*,*)i,sequence(1)(i:i),sequence(2)(i:i)
if(sequence(1)(i:i).ne.'-')i1=i1+1
if(sequence(2)(i:i).ne.'-')then
i2=i2+1
if(i2.gt.nseq2)then
goto 666
endif
if(sequence(1)(i:i).ne.'-')then
invmap(i2)=i1
c write(*,*)i2,i1
endif
endif
666 enddo
ccc
c L_ali=0
c do j=1,nseq2
c write(*,*)j,invmap(j)
c if(invmap(j).gt.0)then
c L_ali=L_ali+1
c endif
c enddo
c write(*,*)'L_ali=',L_ali
call standard_TMscore(TM_ali,L_ali,rmsd_ali) !calc TM-score from invmap, nmlzd by nseq2
ccc
call get_score !TM, matrix score(i,j)
if(TM.gt.TMmax)then
TMmax=TM
do j=1,nseq2
invmap0(j)=invmap(j)
enddo
endif
*****************************************************************
* initerative alignment, for different gap_open:
*****************************************************************
DO 6 i_gapp=1,n_gapp !different gap panalties
GAP_OPEN=gapp(i_gapp) !gap panalty
do 66 id=1,30 !maximum interation is 200
call DP(NSEQ1,NSEQ2) !produce alignment invmap(j)
* Input: score(i,j), and gap_open
* Output: invmap(j)
call get_score !calculate TM-score, score(i,j)
c record the best alignment in whole search ---------->
if(TM.gt.TMmax)then
TMmax=TM
do j=1,nseq2
invmap0(j)=invmap(j)
enddo
endif
66 continue
6 continue
6666 continue
c^^^^^^^^^^^^^^^ best alignment invmap0(j) found ^^^^^^^^^^^^^^^^^^
RETURN
END
**************************************************************
* get initial alignment invmap0(i) from gapless threading
**************************************************************
subroutine get_initial1
PARAMETER(nmax=5000)
COMMON/BACKBONE/XA(3,nmax,0:1)
common/length/nseq1,nseq2
common/dpc/score(nmax,nmax),gap_open,invmap(nmax)
common/alignrst/invmap0(nmax)
common/zscore/zrms,n_al,rmsd_al
common/TM/TM,TMmax
common/init/invmap_i(nmax)
aL=min(nseq1,nseq2)
idel=aL/2.0 !minimum size of considered fragment
if(idel.le.5)idel=5
n1=-nseq2+idel
n2=nseq1-idel
GL_max=0
do ishift=n1,n2
L=0
do j=1,nseq2
i=j+ishift
if(i.ge.1.and.i.le.nseq1)then
L=L+1
invmap(j)=i
else
invmap(j)=-1
endif
enddo
if(L.ge.idel)then
call get_GL(GL)
if(GL.gt.GL_max)then
GL_max=GL
do i=1,nseq2
invmap_i(i)=invmap(i)
enddo
endif
endif
enddo
return
end
**************************************************************
* get initial alignment invmap0(i) from secondary structure
**************************************************************
subroutine get_initial2
PARAMETER(nmax=5000)
COMMON/BACKBONE/XA(3,nmax,0:1)
common/length/nseq1,nseq2
common/dpc/score(nmax,nmax),gap_open,invmap(nmax)
common/alignrst/invmap0(nmax)
common/zscore/zrms,n_al,rmsd_al
common/TM/TM,TMmax
common/sec/isec(nmax),jsec(nmax)
common/init/invmap_i(nmax)
********** assign secondary structures ***************
c 1->coil, 2->helix, 3->turn, 4->strand
do i=1,nseq1
isec(i)=1
j1=i-2
j2=i-1
j3=i
j4=i+1
j5=i+2
if(j1.ge.1.and.j5.le.nseq1)then
dis13=diszy(0,j1,j3)
dis14=diszy(0,j1,j4)
dis15=diszy(0,j1,j5)
dis24=diszy(0,j2,j4)
dis25=diszy(0,j2,j5)
dis35=diszy(0,j3,j5)
isec(i)=make_sec(dis13,dis14,dis15,dis24,dis25,dis35)
endif
enddo
do i=1,nseq2
jsec(i)=1
j1=i-2
j2=i-1
j3=i
j4=i+1
j5=i+2
if(j1.ge.1.and.j5.le.nseq2)then
dis13=diszy(1,j1,j3)
dis14=diszy(1,j1,j4)
dis15=diszy(1,j1,j5)
dis24=diszy(1,j2,j4)
dis25=diszy(1,j2,j5)
dis35=diszy(1,j3,j5)
jsec(i)=make_sec(dis13,dis14,dis15,dis24,dis25,dis35)
endif
enddo
********** score matrix **************************
do i=1,nseq1
do j=1,nseq2
if(isec(i).eq.jsec(j))then
score(i,j)=1
else
score(i,j)=0
endif
enddo
enddo
********** find initial alignment: invmap(j) ************
gap_open=-1.0 !should be -1
call DP(NSEQ1,NSEQ2) !produce alignment invmap(j)
do i=1,nseq2
invmap_i(i)=invmap(i)
enddo
*^^^^^^^^^^^^ initial alignment done ^^^^^^^^^^^^^^^^^^^^^^
return
end
**************************************************************
* get initial alignment invmap0(i) from secondary structure
* and previous alignments
**************************************************************
subroutine get_initial3
PARAMETER(nmax=5000)
COMMON/BACKBONE/XA(3,nmax,0:1)
common/length/nseq1,nseq2
common/dpc/score(nmax,nmax),gap_open,invmap(nmax)
common/alignrst/invmap0(nmax)
common/zscore/zrms,n_al,rmsd_al
common/TM/TM,TMmax
common/sec/isec(nmax),jsec(nmax)
common/init/invmap_i(nmax)
********** score matrix **************************
do i=1,nseq2
invmap(i)=invmap0(i)
enddo
call get_score1 !get score(i,j) using RMSD martix
do i=1,nseq1
do j=1,nseq2
if(isec(i).eq.jsec(j))then
score(i,j)=0.5+score(i,j)
else
score(i,j)=score(i,j)
endif
enddo
enddo
********** find initial alignment: invmap(j) ************
gap_open=-1.0 !should be -1
call DP(NSEQ1,NSEQ2) !produce alignment invmap(j)
do i=1,nseq2
invmap_i(i)=invmap(i)
enddo
*^^^^^^^^^^^^ initial alignment done ^^^^^^^^^^^^^^^^^^^^^^
return
end
**************************************************************
* get initial alignment invmap0(i) from fragment gapless threading
**************************************************************
subroutine get_initial4
PARAMETER(nmax=5000)
COMMON/BACKBONE/XA(3,nmax,0:1)
common/length/nseq1,nseq2
common/dpc/score(nmax,nmax),gap_open,invmap(nmax)
common/alignrst/invmap0(nmax)
common/zscore/zrms,n_al,rmsd_al
common/TM/TM,TMmax
common/init/invmap_i(nmax)
common/initial4/mm1(nmax),mm2(nmax)
logical contin
dimension ifr2(2,nmax,nmax),Lfr2(2,nmax),i_fr2(2)
dimension ifr(nmax)
dimension mm(2,nmax)
fra_min=4 !>=4,minimum fragment for search
fra_min1=fra_min-1 !cutoff for shift, save time
dcu0=4.25
do i=1,nseq1
mm(1,i)=mm1(i)
enddo
do i=1,nseq2
mm(2,i)=mm2(i)
enddo
GL_max=0
c do k=1,2 !k=1, fragment from protein1; k=2, fragment from protein2
do k=2,1,-1 !k=1, fragment from protein1; k=2, fragment from protein2
ccc Find the smallest continuous fragments on protein-k -------->
dcu=dcu0 !breaking bond-length
if(k.eq.1)then
nseq0=nseq1
r_min=nseq1/3.0 !minimum fragment, in case too small protein
else
nseq0=nseq2
r_min=nseq2/3.0 !minimum fragment, in case too small protein
endif
if(r_min.gt.fra_min)r_min=fra_min
20 nfr=1 !number of fragments
j=1 !number of residues at nfr-fragment
ifr2(k,nfr,j)=1 !residue ID of nfr-fragment
Lfr2(k,nfr)=j !length of the fragment
do i=2,nseq0
dis=diszy(k-1,i-1,i) !str,res,res
contin=.false.
if(dcu.gt.dcu0)then
if(dis.lt.dcu)then
contin=.true.
endif
elseif(mm(k,i).eq.(mm(k,i-1)+1))then
if(dis.lt.dcu)then
contin=.true.
endif
endif
if(contin)then
j=j+1
ifr2(k,nfr,j)=i
Lfr2(k,nfr)=j
else
nfr=nfr+1
j=1
ifr2(k,nfr,j)=i
Lfr2(k,nfr)=j
endif
enddo
Lfr_max=0
i_fr2(k)=1 !ID of the maximum piece
do i=1,nfr
if(Lfr_max.lt.Lfr2(k,i))then
Lfr_max=Lfr2(k,i)
i_fr2(k)=i
endif
enddo
if(Lfr_max.lt.r_min)then
dcu=dcu+0.01
goto 20
endif
L_fr=Lfr2(k,i_fr2(k)) !length of the maximum fragment
do i=1,L_fr
ifr(i)=ifr2(k,i_fr2(k),i)
enddo
ccc find the best initial alignment------------>
if(k.eq.1)then !using fragment from protein-1
if(L_fr.eq.nseq1)then !to make it different from initial1
n1=int(nseq1*0.1) !0
n2=int(nseq1*0.89) !2
j=0
do i=n1,n2
j=j+1
ifr(j)=ifr(n1+j)
enddo
L_fr=j
endif
nseq1_=L_fr
aL=min(nseq1_,nseq2)
idel=aL/2.5 !minimum size of considered fragment
if(idel.le.fra_min1)idel=fra_min1
n1=-nseq2+idel !shift1
n2=nseq1_-idel !shift2
c write(*,*)idel,aL,n1,n2,'aaa---'
do ishift=n1,n2
L=0
do j=1,nseq2
i=j+ishift
if(i.ge.1.and.i.le.nseq1_)then
L=L+1
invmap(j)=ifr(i)
else
invmap(j)=-1
endif
enddo
if(L.ge.idel)then
call get_GL(GL)
if(GL.gt.GL_max)then
GL_max=GL
do i=1,nseq2
invmap_i(i)=invmap(i)
enddo
endif
endif
enddo
c write(*,*)'GL_max=',GL_max
c do i=1,nseq2
c write(*,*)i,invmap_i(i),'111'
c enddo
else
if(L_fr.eq.nseq2)then !to make it different from initial1
n1=int(nseq2*0.1) !0
n2=int(nseq2*0.89) !2
j=0
do i=n1,n2
j=j+1
ifr(j)=ifr(n1+j)
enddo
L_fr=j
endif
nseq2_=L_fr
aL=min(nseq1,nseq2_)
idel=aL/2.5 !minimum size of considered fragment
if(idel.le.fra_min1)idel=fra_min1
n1=-nseq2_+idel
n2=nseq1-idel
c write(*,*)idel,aL,n1,n2,'bbb----'
do ishift=n1,n2
L=0
do j=1,nseq2
invmap(j)=-1
enddo
do j=1,nseq2_
i=j+ishift
if(i.ge.1.and.i.le.nseq1)then
L=L+1
invmap(ifr(j))=i
endif
enddo
if(L.ge.idel)then
call get_GL(GL)
if(GL.gt.GL_max)then
GL_max=GL
do i=1,nseq2
invmap_i(i)=invmap(i)
enddo
endif
endif
enddo
c write(*,*)'GL_max=',GL_max
c do i=1,nseq2
c write(*,*)i,invmap_i(i),'1112222'
c enddo
endif
enddo
c^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
return
end
**************************************************************
* fifth initial alignement. Using local structure super *
* position. *
**************************************************************
subroutine get_initial5
PARAMETER(nmax=5000)
COMMON/BACKBONE/XA(3,nmax,0:1)
common/length/nseq1,nseq2
common/dpc/score(nmax,nmax),gap_open,invmap(nmax)
common/alignrst/invmap0(nmax)
common/zscore/zrms,n_al,rmsd_al
common/TM/TM,TMmax
common/d0/d0,anseq
common/d0min/d0_min
common/init/invmap_i(nmax)
common/initial4/mm1(nmax),mm2(nmax)
common/sec/isec(nmax),jsec(nmax)
double precision r_1(3,nmax),r_2(3,nmax),w(nmax)
double precision u(3,3),t(3),rms
data w /nmax*1.0/
common/inv/invmap_a(nmax)
integer aL,m1,m2,n_frag
dimension n_frag(10)
***** setting parameters ************************************
d01=d0+1.5
if(d01.lt.d0_min)d01=d0_min
d02=d01*d01
GLmaxA=0
aL=min(nseq1,nseq2)
c jump on sequence1 -------------->
if(nseq1.gt.250)then
n_jump1=45
elseif(nseq1.gt.200)then
n_jump1=35
elseif(nseq1.gt.150)then
n_jump1=25
else
n_jump1=15
endif
if(n_jump1.gt.nseq1/3)n_jump1=nseq1/3
c jump on sequence2 -------------->
if(nseq2.gt.250)then
n_jump2=45
elseif(nseq2.gt.200)then
n_jump2=35
elseif(nseq2.gt.150)then
n_jump2=25
else
n_jump2=15
endif
if(n_jump2.gt.nseq2/3)n_jump2=nseq2/3
c fragment to superimpose -------------->
n_frag(1)=20
n_frag(2)=100
if(n_frag(1).gt.aL/3)n_frag(1)=aL/3
if(n_frag(2).gt.aL/2)n_frag(2)=aL/2
c start superimpose search -------------->
do i_frag=1,2
m1=nseq1-n_frag(i_frag)+1
m2=nseq2-n_frag(i_frag)+1
do ii=1,m1,n_jump1
do jj=1,m2,n_jump2
do k=1,n_frag(i_frag)
iii=ii+k-1
jjj=jj+k-1
r_1(1,k)=xa(1,iii,0)
r_1(2,k)=xa(2,iii,0)
r_1(3,k)=xa(3,iii,0)
r_2(1,k)=xa(1,jjj,1)
r_2(2,k)=xa(2,jjj,1)
r_2(3,k)=xa(3,jjj,1)
enddo
*********superpose the two structures and rotate it *****************
call u3b(w,r_1,r_2,n_frag(i_frag),1,rms,u,t,ier) !u rotate r_1 to r_2
do i1=1,nseq1
xx=t(1)+u(1,1)*xa(1,i1,0)+u(1,2)*xa(2,i1,0)+u(1,3)
& *xa(3,i1,0)
yy=t(2)+u(2,1)*xa(1,i1,0)+u(2,2)*xa(2,i1,0)+u(2,3)
& *xa(3,i1,0)
zz=t(3)+u(3,1)*xa(1,i1,0)+u(3,2)*xa(2,i1,0)+u(3,3)
& *xa(3,i1,0)
do j1=1,nseq2
dd=(xx-xa(1,j1,1))**2+(yy-xa(2,j1,1))**2+
& (zz-xa(3,j1,1))**2
score(i1,j1)=1/(1+dd/d02) ! changing
enddo
enddo
*********extract alignement with score(i,j) *****************
call DP(NSEQ1,NSEQ2)
call get_GL(GL)
if(GL.gt.GLmaxA)then
GLmaxA=GL
do j1=1,nseq2
invmap_i(j1)=invmap(j1)
enddo
endif
enddo
enddo
enddo
return
end
*************************************************************
* assign secondary structure:
*************************************************************
function diszy(i,i1,i2)
PARAMETER(nmax=5000)
COMMON/BACKBONE/XA(3,nmax,0:1)
diszy=sqrt((xa(1,i1,i)-xa(1,i2,i))**2
& +(xa(2,i1,i)-xa(2,i2,i))**2
& +(xa(3,i1,i)-xa(3,i2,i))**2)
return
end
*************************************************************
* assign secondary structure:
*************************************************************
function make_sec(dis13,dis14,dis15,dis24,dis25,dis35)
make_sec=1
delta=2.1
if(abs(dis15-6.37).lt.delta)then
if(abs(dis14-5.18).lt.delta)then
if(abs(dis25-5.18).lt.delta)then
if(abs(dis13-5.45).lt.delta)then
if(abs(dis24-5.45).lt.delta)then
if(abs(dis35-5.45).lt.delta)then
make_sec=2 !helix
return
endif
endif
endif
endif
endif
endif
delta=1.42
if(abs(dis15-13).lt.delta)then
if(abs(dis14-10.4).lt.delta)then
if(abs(dis25-10.4).lt.delta)then
if(abs(dis13-6.1).lt.delta)then
if(abs(dis24-6.1).lt.delta)then
if(abs(dis35-6.1).lt.delta)then
make_sec=4 !strand
return
endif
endif
endif
endif
endif
endif
if(dis15.lt.8)then
make_sec=3
endif
return
end
****************************************************************
* quickly calculate TM-score with given invmap(i) in 3 iterations
****************************************************************
subroutine get_GL(GL)
PARAMETER(nmax=5000)
common/length/nseq1,nseq2
COMMON/BACKBONE/XA(3,nmax,0:1)
common/dpc/score(nmax,nmax),gap_open,invmap(nmax)
common/zscore/zrms,n_al,rmsd_al
common/d0/d0,anseq
common/TM/TM,TMmax
common/d00/d00,d002
dimension xo1(nmax),yo1(nmax),zo1(nmax)
dimension xo2(nmax),yo2(nmax),zo2(nmax)
dimension dis2(nmax)
ccc RMSD:
double precision r_1(3,nmax),r_2(3,nmax),w(nmax)
double precision u(3,3),t(3),rms !armsd is real
data w /nmax*1.0/
ccc
c calculate RMSD between aligned structures and rotate the structures -->
n_al=0
do j=1,NSEQ2
i=invmap(j) !j aligned to i
if(i.gt.0)then
n_al=n_al+1
r_1(1,n_al)=xa(1,i,0)
r_1(2,n_al)=xa(2,i,0)
r_1(3,n_al)=xa(3,i,0)
r_2(1,n_al)=xa(1,j,1)
r_2(2,n_al)=xa(2,j,1)
r_2(3,n_al)=xa(3,j,1)
xo1(n_al)=xa(1,i,0)
yo1(n_al)=xa(2,i,0)
zo1(n_al)=xa(3,i,0)
xo2(n_al)=xa(1,j,1)
yo2(n_al)=xa(2,j,1)
zo2(n_al)=xa(3,j,1)
endif
enddo
call u3b(w,r_1,r_2,n_al,1,rms,u,t,ier) !u rotate r_1 to r_2
GL=0
do i=1,n_al
xx=t(1)+u(1,1)*xo1(i)+u(1,2)*yo1(i)+u(1,3)*zo1(i)
yy=t(2)+u(2,1)*xo1(i)+u(2,2)*yo1(i)+u(2,3)*zo1(i)
zz=t(3)+u(3,1)*xo1(i)+u(3,2)*yo1(i)+u(3,3)*zo1(i)
dis2(i)=(xx-xo2(i))**2+(yy-yo2(i))**2+(zz-zo2(i))**2
GL=GL+1/(1+dis2(i)/(d0**2))
enddo
ccc for next iteration------------->
d002t=d002
21 j=0
do i=1,n_al
if(dis2(i).le.d002t)then
j=j+1
r_1(1,j)=xo1(i)
r_1(2,j)=yo1(i)
r_1(3,j)=zo1(i)
r_2(1,j)=xo2(i)
r_2(2,j)=yo2(i)
r_2(3,j)=zo2(i)
endif
enddo
if(j.lt.3.and.n_al.gt.3)then
d002t=d002t+.5
goto 21
endif
L=j
call u3b(w,r_1,r_2,L,1,rms,u,t,ier) !u rotate r_1 to r_2
G2=0
do i=1,n_al
xx=t(1)+u(1,1)*xo1(i)+u(1,2)*yo1(i)+u(1,3)*zo1(i)
yy=t(2)+u(2,1)*xo1(i)+u(2,2)*yo1(i)+u(2,3)*zo1(i)
zz=t(3)+u(3,1)*xo1(i)+u(3,2)*yo1(i)+u(3,3)*zo1(i)
dis2(i)=(xx-xo2(i))**2+(yy-yo2(i))**2+(zz-zo2(i))**2
G2=G2+1/(1+dis2(i)/(d0**2))
enddo
ccc for next iteration------------->
d002t=d002+1
22 j=0
do i=1,n_al
if(dis2(i).le.d002t)then
j=j+1
r_1(1,j)=xo1(i)
r_1(2,j)=yo1(i)
r_1(3,j)=zo1(i)
r_2(1,j)=xo2(i)
r_2(2,j)=yo2(i)
r_2(3,j)=zo2(i)
endif
enddo
if(j.lt.3.and.n_al.gt.3)then
d002t=d002t+.5
goto 22
endif
L=j
call u3b(w,r_1,r_2,L,1,rms,u,t,ier) !u rotate r_1 to r_2
G3=0
do i=1,n_al
xx=t(1)+u(1,1)*xo1(i)+u(1,2)*yo1(i)+u(1,3)*zo1(i)
yy=t(2)+u(2,1)*xo1(i)+u(2,2)*yo1(i)+u(2,3)*zo1(i)
zz=t(3)+u(3,1)*xo1(i)+u(3,2)*yo1(i)+u(3,3)*zo1(i)
dis2(i)=(xx-xo2(i))**2+(yy-yo2(i))**2+(zz-zo2(i))**2
G3=G3+1/(1+dis2(i)/(d0**2))
enddo
if(G2.gt.GL)GL=G2
if(G3.gt.GL)GL=G3
c^^^^^^^^^^^^^^^^ GL done ^^^^^^^^^^^^^^^^^^^^^^^^^^^
return
end
****************************************************************
* with invmap(i) calculate TM-score and martix score(i,j) for rotation
****************************************************************
subroutine get_score
PARAMETER(nmax=5000)
common/length/nseq1,nseq2
COMMON/BACKBONE/XA(3,nmax,0:1)
common/dpc/score(nmax,nmax),gap_open,invmap(nmax)
common/zscore/zrms,n_al,rmsd_al
common/d0/d0,anseq
dimension xtm1(nmax),ytm1(nmax),ztm1(nmax)
dimension xtm2(nmax),ytm2(nmax),ztm2(nmax)
common/TM/TM,TMmax
common/ut/u,t
ccc RMSD:
double precision r_1(3,nmax),r_2(3,nmax),w(nmax)
double precision u(3,3),t(3),rms !armsd is real
data w /nmax*1.0/
ccc
c calculate RMSD between aligned structures and rotate the structures -->
n_al=0
do j=1,NSEQ2
i=invmap(j) !j aligned to i
if(i.gt.0)then
n_al=n_al+1
ccc for TM-score:
xtm1(n_al)=xa(1,i,0) !for TM-score
ytm1(n_al)=xa(2,i,0)
ztm1(n_al)=xa(3,i,0)
xtm2(n_al)=xa(1,j,1)
ytm2(n_al)=xa(2,j,1)
ztm2(n_al)=xa(3,j,1)
ccc for rotation matrix:
r_1(1,n_al)=xa(1,i,0)
r_1(2,n_al)=xa(2,i,0)
r_1(3,n_al)=xa(3,i,0)
endif
enddo
*** calculate TM-score for the given alignment----------->
d0_input=d0
call TMscore8_search(d0_input,n_al,xtm1,ytm1,ztm1,
& n_al,xtm2,ytm2,ztm2,TM,Rcomm,Lcomm) !simplified search engine
TM=TM*n_al/anseq !TM-score
*** calculate score matrix score(i,j)------------------>
do i=1,nseq1
xx=t(1)+u(1,1)*xa(1,i,0)+u(1,2)*xa(2,i,0)+u(1,3)*xa(3,i,0)
yy=t(2)+u(2,1)*xa(1,i,0)+u(2,2)*xa(2,i,0)+u(2,3)*xa(3,i,0)
zz=t(3)+u(3,1)*xa(1,i,0)+u(3,2)*xa(2,i,0)+u(3,3)*xa(3,i,0)
do j=1,nseq2
dd=(xx-xa(1,j,1))**2+(yy-xa(2,j,1))**2+(zz-xa(3,j,1))**2
score(i,j)=1/(1+dd/d0**2)
enddo
enddo
c^^^^^^^^^^^^^^^^ score(i,j) done ^^^^^^^^^^^^^^^^^^^^^^^^^^^
return
end
****************************************************************
* with invmap(i) calculate score(i,j) using RMSD rotation
****************************************************************
subroutine get_score1
PARAMETER(nmax=5000)
common/length/nseq1,nseq2
COMMON/BACKBONE/XA(3,nmax,0:1)
common/dpc/score(nmax,nmax),gap_open,invmap(nmax)
common/zscore/zrms,n_al,rmsd_al
common/d0/d0,anseq
common/d0min/d0_min
common/TM/TM,TMmax
ccc RMSD:
double precision r_1(3,nmax),r_2(3,nmax),w(nmax)
double precision u(3,3),t(3),rms !armsd is real
data w /nmax*1.0/
ccc
c calculate RMSD between aligned structures and rotate the structures -->
n_al=0
do j=1,NSEQ2
i=invmap(j) !j aligned to i
if(i.gt.0)then
n_al=n_al+1
ccc for rotation matrix:
r_1(1,n_al)=xa(1,i,0)
r_1(2,n_al)=xa(2,i,0)
r_1(3,n_al)=xa(3,i,0)
r_2(1,n_al)=xa(1,j,1)
r_2(2,n_al)=xa(2,j,1)
r_2(3,n_al)=xa(3,j,1)
endif
enddo
*** calculate score matrix score(i,j)------------------>
call u3b(w,r_1,r_2,n_al,1,rms,u,t,ier) !u rotate r_1 to r_2
d01=d0+1.5
if(d01.lt.d0_min)d01=d0_min
d02=d01*d01
do i=1,nseq1
xx=t(1)+u(1,1)*xa(1,i,0)+u(1,2)*xa(2,i,0)+u(1,3)*xa(3,i,0)
yy=t(2)+u(2,1)*xa(1,i,0)+u(2,2)*xa(2,i,0)+u(2,3)*xa(3,i,0)
zz=t(3)+u(3,1)*xa(1,i,0)+u(3,2)*xa(2,i,0)+u(3,3)*xa(3,i,0)
do j=1,nseq2
dd=(xx-xa(1,j,1))**2+(yy-xa(2,j,1))**2+(zz-xa(3,j,1))**2
score(i,j)=1/(1+dd/d02)
enddo
enddo
c^^^^^^^^^^^^^^^^ score(i,j) done ^^^^^^^^^^^^^^^^^^^^^^^^^^^
return
end
ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc
c calculate TM-score for a given alignment specified by invmap (Based on Chain_2)
ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc
subroutine standard_TMscore(TM2,L_ali,RMSD)
PARAMETER(nmax=5000) !maximum length of the sequence
common/length/nseq1,nseq2
common/dpc/score(nmax,nmax),gap_open,invmap(nmax)
COMMON/BACKBONE/XA(3,nmax,0:1)
dimension xtm1(nmax),ytm1(nmax),ztm1(nmax)
dimension xtm2(nmax),ytm2(nmax),ztm2(nmax)
common/d0min/d0_min
ccc RMSD:
double precision r_1(3,nmax),r_2(3,nmax),w(nmax)
double precision u(3,3),t(3),rms !armsd is real
data w /nmax*1.0/
ccc
d0_min=0.5 !for TM-score output, consistent stdrd TM-score
anseq=nseq2
if(anseq.gt.21)then
d0=1.24*(anseq-15)**(1.0/3.0)-1.8 !scale for defining TM-score
else
d0=d0_min
endif
if(d0.lt.d0_min)d0=d0_min
d0_input=d0 !scaled by seq_min
cccc collect aligned residues from invmap ------->
n_al=0
do j=1,nseq2
if(invmap(j).gt.0)then
i=invmap(j)
n_al=n_al+1
xtm1(n_al)=xa(1,i,0)
ytm1(n_al)=xa(2,i,0)
ztm1(n_al)=xa(3,i,0)
xtm2(n_al)=xa(1,j,1)
ytm2(n_al)=xa(2,j,1)
ztm2(n_al)=xa(3,j,1)
r_1(1,n_al)=xa(1,i,0)
r_1(2,n_al)=xa(2,i,0)
r_1(3,n_al)=xa(3,i,0)
r_2(1,n_al)=xa(1,j,1)
r_2(2,n_al)=xa(2,j,1)
r_2(3,n_al)=xa(3,j,1)
endif
enddo
call u3b(w,r_1,r_2,n_al,0,rms,u,t,ier)
L_ali=n_al
RMSD=dsqrt(rms/n_al)
c write(*,*)'---------',rms,n_al,RMSD,u(1,1),t(1)
call TMscore(d0_input,n_al,xtm1,ytm1,ztm1,n_al,
& xtm2,ytm2,ztm2,TM8,Rcomm,Lcomm,0) !normal TMscore
TM2=TM8*n_al/anseq
c^^^^^^^^^^ TM-score calculation is done ^^^^^^^^^^^^^^^^^^^^^^^^
return
end
*************************************************************************
*************************************************************************
* This is a subroutine to compare two structures and find the
* superposition that has the maximum TM-score.
*
* L1--Length of the first structure
* (x1(i),y1(i),z1(i))--coordinates of i'th residue at the first structure
* L2--Length of the second structure
* (x2(i),y2(i),z2(i))--coordinates of i'th residue at the second structure
* TM--TM-score of the comparison
* Rcomm--RMSD of two structures in the common aligned residues
* Lcomm--Length of the common aligned regions
*
* Note:
* 1, Always put native as the second structure, by which TM-score
* is normalized.
* 2, The returned (x1(i),y1(i),z1(i)) are the rotated structure after
* TM-score superposition.
*************************************************************************
*************************************************************************
*** dis<8, simplified search engine
subroutine TMscore8_search(dx,L1,x1,y1,z1,L2,x2,y2,z2,
& TM,Rcomm,Lcomm)
PARAMETER(nmax=5000)
common/stru/xt(nmax),yt(nmax),zt(nmax),xb(nmax),yb(nmax),zb(nmax)
common/nres/nseqA,nseqB
common/para/d,d0
common/d0min/d0_min
common/align/n_ali,iA(nmax),iB(nmax)
common/nscore/i_ali(nmax),n_cut ![1,n_ali],align residues for the score
dimension k_ali(nmax),k_ali0(nmax)
dimension L_ini(100)
common/scores/score
double precision score,score_max
dimension xa(nmax),ya(nmax),za(nmax)
dimension iL0(nmax)
common/ut/u,t
dimension x1(nmax),y1(nmax),z1(nmax)
dimension x2(nmax),y2(nmax),z2(nmax)
ccc RMSD:
double precision r_1(3,nmax),r_2(3,nmax),w(nmax)
double precision u(3,3),t(3),rms !armsd is real
data w /nmax*1.0/
ccc
********* convert input data ***************************
* because L1=L2 in this special case---------->
nseqA=L1
nseqB=L2
do i=1,nseqA
xa(i)=x1(i)
ya(i)=y1(i)
za(i)=z1(i)
xb(i)=x2(i)
yb(i)=y2(i)
zb(i)=z2(i)
iA(i)=i
iB(i)=i
enddo
n_ali=L1 !number of aligned residues
Lcomm=L1
************/////
* parameters:
*****************
*** d0------------->
d0=dx
if(d0.lt.d0_min)d0=d0_min
*** d0_search ----->
d0_search=d0
if(d0_search.gt.8)d0_search=8
if(d0_search.lt.4.5)d0_search=4.5
*** iterative parameters ----->
n_it=20 !maximum number of iterations
n_init_max=6 !maximum number of L_init
n_init=0
L_ini_min=4
if(n_ali.lt.4)L_ini_min=n_ali
do i=1,n_init_max-1
n_init=n_init+1
L_ini(n_init)=n_ali/2**(n_init-1)
if(L_ini(n_init).le.L_ini_min)then
L_ini(n_init)=L_ini_min
goto 402
endif
enddo
n_init=n_init+1
L_ini(n_init)=L_ini_min
402 continue
******************************************************************
* find the maximum score starting from local structures superposition
******************************************************************
score_max=-1 !TM-score
do 333 i_init=1,n_init
L_init=L_ini(i_init)
iL_max=n_ali-L_init+1
k=0
do i=1,iL_max,40 !this is the simplification!
k=k+1
iL0(k)=i
enddo
if(iL0(k).lt.iL_max)then
k=k+1
iL0(k)=iL_max
endif
n_shift=k
do 300 i_shift=1,n_shift
iL=iL0(i_shift)
LL=0
ka=0
do i=1,L_init
k=iL+i-1 ![1,n_ali] common aligned
r_1(1,i)=xa(iA(k))
r_1(2,i)=ya(iA(k))
r_1(3,i)=za(iA(k))
r_2(1,i)=xb(iB(k))
r_2(2,i)=yb(iB(k))
r_2(3,i)=zb(iB(k))
LL=LL+1
ka=ka+1
k_ali(ka)=k
enddo
call u3b(w,r_1,r_2,LL,1,rms,u,t,ier) !u rotate r_1 to r_2
Rcomm=0 !not used
do j=1,nseqA
xt(j)=t(1)+u(1,1)*xa(j)+u(1,2)*ya(j)+u(1,3)*za(j)
yt(j)=t(2)+u(2,1)*xa(j)+u(2,2)*ya(j)+u(2,3)*za(j)
zt(j)=t(3)+u(3,1)*xa(j)+u(3,2)*ya(j)+u(3,3)*za(j)
enddo
d=d0_search-1
call score_fun8 !init, get scores, n_cut+i_ali(i) for iteration
if(score_max.lt.score)then
score_max=score
ka0=ka
do i=1,ka0
k_ali0(i)=k_ali(i)
enddo
endif
*** iteration for extending ---------------------------------->
d=d0_search+1
do 301 it=1,n_it
LL=0
ka=0
do i=1,n_cut
m=i_ali(i) ![1,n_ali]
r_1(1,i)=xa(iA(m))
r_1(2,i)=ya(iA(m))
r_1(3,i)=za(iA(m))
r_2(1,i)=xb(iB(m))
r_2(2,i)=yb(iB(m))
r_2(3,i)=zb(iB(m))
ka=ka+1
k_ali(ka)=m
LL=LL+1
enddo
call u3b(w,r_1,r_2,LL,1,rms,u,t,ier) !u rotate r_1 to r_2
do j=1,nseqA
xt(j)=t(1)+u(1,1)*xa(j)+u(1,2)*ya(j)+u(1,3)*za(j)
yt(j)=t(2)+u(2,1)*xa(j)+u(2,2)*ya(j)+u(2,3)*za(j)
zt(j)=t(3)+u(3,1)*xa(j)+u(3,2)*ya(j)+u(3,3)*za(j)
enddo
call score_fun8 !get scores, n_cut+i_ali(i) for iteration
if(score_max.lt.score)then
score_max=score
ka0=ka
do i=1,ka
k_ali0(i)=k_ali(i)
enddo
endif
if(it.eq.n_it)goto 302
if(n_cut.eq.ka)then
neq=0
do i=1,n_cut
if(i_ali(i).eq.k_ali(i))neq=neq+1
enddo
if(n_cut.eq.neq)goto 302
endif
301 continue !for iteration
302 continue
300 continue !for shift
333 continue !for initial length, L_ali/M
******** return the final rotation ****************
LL=0
do i=1,ka0
m=k_ali0(i) !record of the best alignment
r_1(1,i)=xa(iA(m))
r_1(2,i)=ya(iA(m))
r_1(3,i)=za(iA(m))
r_2(1,i)=xb(iB(m))
r_2(2,i)=yb(iB(m))
r_2(3,i)=zb(iB(m))
LL=LL+1
enddo
call u3b(w,r_1,r_2,LL,1,rms,u,t,ier) !u rotate r_1 to r_2
do j=1,nseqA
x1(j)=t(1)+u(1,1)*xa(j)+u(1,2)*ya(j)+u(1,3)*za(j)
y1(j)=t(2)+u(2,1)*xa(j)+u(2,2)*ya(j)+u(2,3)*za(j)
z1(j)=t(3)+u(3,1)*xa(j)+u(3,2)*ya(j)+u(3,3)*za(j)
enddo
TM=score_max
c^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
return
END
*************************************************************************
*************************************************************************
* This is a subroutine to compare two structures and find the
* superposition that has the maximum TM-score.
*
* L1--Length of the first structure
* (x1(i),y1(i),z1(i))--coordinates of i'th residue at the first structure
* L2--Length of the second structure
* (x2(i),y2(i),z2(i))--coordinates of i'th residue at the second structure
* TM--TM-score of the comparison
* Rcomm--RMSD of two structures in the common aligned residues
* Lcomm--Length of the common aligned regions
*
* Note:
* 1, Always put native as the second structure, by which TM-score
* is normalized.
* 2, The returned (x1(i),y1(i),z1(i)) are the rotated structure after
* TM-score superposition.
*************************************************************************
*************************************************************************
*** dis<8, but same search engine
subroutine TMscore8(dx,L1,x1,y1,z1,L2,x2,y2,z2,
& TM,Rcomm,Lcomm)
PARAMETER(nmax=5000)
common/stru/xt(nmax),yt(nmax),zt(nmax),xb(nmax),yb(nmax),zb(nmax)
common/nres/nseqA,nseqB
common/para/d,d0
common/d0min/d0_min
common/align/n_ali,iA(nmax),iB(nmax)
common/nscore/i_ali(nmax),n_cut ![1,n_ali],align residues for the score
dimension k_ali(nmax),k_ali0(nmax)
dimension L_ini(100)
common/scores/score
double precision score,score_max
dimension xa(nmax),ya(nmax),za(nmax)
dimension x1(nmax),y1(nmax),z1(nmax)
dimension x2(nmax),y2(nmax),z2(nmax)
ccc RMSD:
double precision r_1(3,nmax),r_2(3,nmax),w(nmax)
double precision u(3,3),t(3),rms !armsd is real
data w /nmax*1.0/
ccc
********* convert input data ***************************
* because L1=L2 in this special case---------->
nseqA=L1
nseqB=L2
do i=1,nseqA
xa(i)=x1(i)
ya(i)=y1(i)
za(i)=z1(i)
xb(i)=x2(i)
yb(i)=y2(i)
zb(i)=z2(i)
iA(i)=i
iB(i)=i
enddo
n_ali=L1 !number of aligned residues
Lcomm=L1
************/////
* parameters:
*****************
*** d0------------->
d0=dx
if(d0.lt.d0_min)d0=d0_min
*** d0_search ----->
d0_search=d0
if(d0_search.gt.8)d0_search=8
if(d0_search.lt.4.5)d0_search=4.5
*** iterative parameters ----->
n_it=20 !maximum number of iterations
n_init_max=6 !maximum number of L_init
n_init=0
L_ini_min=4
if(n_ali.lt.4)L_ini_min=n_ali
do i=1,n_init_max-1
n_init=n_init+1
L_ini(n_init)=n_ali/2**(n_init-1)
if(L_ini(n_init).le.L_ini_min)then
L_ini(n_init)=L_ini_min
goto 402
endif
enddo
n_init=n_init+1
L_ini(n_init)=L_ini_min
402 continue
******************************************************************
* find the maximum score starting from local structures superposition
******************************************************************
score_max=-1 !TM-score
do 333 i_init=1,n_init
L_init=L_ini(i_init)
iL_max=n_ali-L_init+1
do 300 iL=1,iL_max !on aligned residues, [1,nseqA]
LL=0
ka=0
do i=1,L_init
k=iL+i-1 ![1,n_ali] common aligned
r_1(1,i)=xa(iA(k))
r_1(2,i)=ya(iA(k))
r_1(3,i)=za(iA(k))
r_2(1,i)=xb(iB(k))
r_2(2,i)=yb(iB(k))
r_2(3,i)=zb(iB(k))
LL=LL+1
ka=ka+1
k_ali(ka)=k
enddo
call u3b(w,r_1,r_2,LL,1,rms,u,t,ier) !u rotate r_1 to r_2
do j=1,nseqA
xt(j)=t(1)+u(1,1)*xa(j)+u(1,2)*ya(j)+u(1,3)*za(j)
yt(j)=t(2)+u(2,1)*xa(j)+u(2,2)*ya(j)+u(2,3)*za(j)
zt(j)=t(3)+u(3,1)*xa(j)+u(3,2)*ya(j)+u(3,3)*za(j)
enddo
d=d0_search-1
call score_fun8 !init, get scores, n_cut+i_ali(i) for iteration
if(score_max.lt.score)then
score_max=score
ka0=ka
do i=1,ka0
k_ali0(i)=k_ali(i)
enddo
endif
*** iteration for extending ---------------------------------->
d=d0_search+1
do 301 it=1,n_it
LL=0
ka=0
do i=1,n_cut
m=i_ali(i) ![1,n_ali]
r_1(1,i)=xa(iA(m))
r_1(2,i)=ya(iA(m))
r_1(3,i)=za(iA(m))
r_2(1,i)=xb(iB(m))
r_2(2,i)=yb(iB(m))
r_2(3,i)=zb(iB(m))
ka=ka+1
k_ali(ka)=m
LL=LL+1
enddo
call u3b(w,r_1,r_2,LL,1,rms,u,t,ier) !u rotate r_1 to r_2
do j=1,nseqA
xt(j)=t(1)+u(1,1)*xa(j)+u(1,2)*ya(j)+u(1,3)*za(j)
yt(j)=t(2)+u(2,1)*xa(j)+u(2,2)*ya(j)+u(2,3)*za(j)
zt(j)=t(3)+u(3,1)*xa(j)+u(3,2)*ya(j)+u(3,3)*za(j)
enddo
call score_fun8 !get scores, n_cut+i_ali(i) for iteration
if(score_max.lt.score)then
score_max=score
ka0=ka
do i=1,ka
k_ali0(i)=k_ali(i)
enddo
endif
if(it.eq.n_it)goto 302
if(n_cut.eq.ka)then
neq=0
do i=1,n_cut
if(i_ali(i).eq.k_ali(i))neq=neq+1
enddo
if(n_cut.eq.neq)goto 302
endif
301 continue !for iteration
302 continue
300 continue !for shift
333 continue !for initial length, L_ali/M
******** return the final rotation ****************
LL=0
do i=1,ka0
m=k_ali0(i) !record of the best alignment
r_1(1,i)=xa(iA(m))
r_1(2,i)=ya(iA(m))
r_1(3,i)=za(iA(m))
r_2(1,i)=xb(iB(m))
r_2(2,i)=yb(iB(m))
r_2(3,i)=zb(iB(m))
LL=LL+1
enddo
call u3b(w,r_1,r_2,LL,1,rms,u,t,ier) !u rotate r_1 to r_2
do j=1,nseqA
x1(j)=t(1)+u(1,1)*xa(j)+u(1,2)*ya(j)+u(1,3)*za(j)
y1(j)=t(2)+u(2,1)*xa(j)+u(2,2)*ya(j)+u(2,3)*za(j)
z1(j)=t(3)+u(3,1)*xa(j)+u(3,2)*ya(j)+u(3,3)*za(j)
enddo
TM=score_max
c^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
return
END
ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc
c 1, collect those residues with dis<d;
c 2, calculate score_GDT, score_maxsub, score_TM
ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc
subroutine score_fun8
PARAMETER(nmax=5000)
common/stru/xa(nmax),ya(nmax),za(nmax),xb(nmax),yb(nmax),zb(nmax)
common/nres/nseqA,nseqB
common/para/d,d0
common/align/n_ali,iA(nmax),iB(nmax)
common/nscore/i_ali(nmax),n_cut ![1,n_ali],align residues for the score
common/scores/score
double precision score
common/d8/d8
d_tmp=d
d_tmp2=d*d
d82=d8*d8
21 n_cut=0 !number of residue-pairs dis<d, for iteration
score_sum=0 !TMscore
do k=1,n_ali
i=iA(k) ![1,nseqA] reoder number of structureA
j=iB(k) ![1,nseqB]
dis2=(xa(i)-xb(j))**2+(ya(i)-yb(j))**2+(za(i)-zb(j))**2
if(dis2.lt.d_tmp2)then
n_cut=n_cut+1
i_ali(n_cut)=k ![1,n_ali], mark the residue-pairs in dis<d
endif
if(dis2.le.d82)then
score_sum=score_sum+1/(1+dis2/d0/d0)
endif
enddo
if(n_cut.lt.3.and.n_ali.gt.3)then
d_tmp=d_tmp+.5
d_tmp2=d_tmp*d_tmp
goto 21
endif
score=score_sum/float(nseqB) !TM-score
return
end
*************************************************************************
*************************************************************************
* This is a subroutine to compare two structures and find the
* superposition that has the maximum TM-score.
*
* L1--Length of the first structure
* (x1(i),y1(i),z1(i))--coordinates of i'th residue at the first structure
* L2--Length of the second structure
* (x2(i),y2(i),z2(i))--coordinates of i'th residue at the second structure
* TM--TM-score of the comparison
* Rcomm--RMSD of two structures in the common aligned residues
* Lcomm--Length of the common aligned regions
*
* Note:
* 1, Always put native as the second structure, by which TM-score
* is normalized.
* 2, The returned (x1(i),y1(i),z1(i)) are the rotated structure after
* TM-score superposition.
*************************************************************************
*************************************************************************
*** normal TM-score:
subroutine TMscore(dx,L1,x1,y1,z1,L2,x2,y2,z2,
& TM,Rcomm,Lcomm,irmx)
PARAMETER(nmax=5000)
common/stru/xt(nmax),yt(nmax),zt(nmax),xb(nmax),yb(nmax),zb(nmax)
common/nres/nseqA,nseqB
common/para/d,d0
common/d0min/d0_min
common/align/n_ali,iA(nmax),iB(nmax)
common/nscore/i_ali(nmax),n_cut ![1,n_ali],align residues for the score
dimension k_ali(nmax),k_ali0(nmax)
dimension L_ini(100)
common/scores/score
double precision score,score_max
dimension xa(nmax),ya(nmax),za(nmax)
dimension x1(nmax),y1(nmax),z1(nmax)
dimension x2(nmax),y2(nmax),z2(nmax)
ccc RMSD:
double precision r_1(3,nmax),r_2(3,nmax),w(nmax)
double precision u(3,3),t(3),rms !armsd is real
data w /nmax*1.0/
ccc
********* convert input data ***************************
* because L1=L2 in this special case---------->
nseqA=L1
nseqB=L2
do i=1,nseqA
xa(i)=x1(i)
ya(i)=y1(i)
za(i)=z1(i)
xb(i)=x2(i)
yb(i)=y2(i)
zb(i)=z2(i)
iA(i)=i
iB(i)=i
enddo
n_ali=L1 !number of aligned residues
Lcomm=L1
************/////
* parameters:
*****************
*** d0------------->
c d0=1.24*(nseqB-15)**(1.0/3.0)-1.8
d0=dx
if(d0.lt.d0_min)d0=d0_min
*** d0_search ----->
d0_search=d0
if(d0_search.gt.8)d0_search=8
if(d0_search.lt.4.5)d0_search=4.5
*** iterative parameters ----->
n_it=20 !maximum number of iterations
n_init_max=6 !maximum number of L_init
n_init=0
L_ini_min=4
if(n_ali.lt.4)L_ini_min=n_ali
do i=1,n_init_max-1
n_init=n_init+1
L_ini(n_init)=n_ali/2**(n_init-1)
if(L_ini(n_init).le.L_ini_min)then
L_ini(n_init)=L_ini_min
goto 402
endif
enddo
n_init=n_init+1
L_ini(n_init)=L_ini_min
402 continue
******************************************************************
* find the maximum score starting from local structures superposition
******************************************************************
score_max=-1 !TM-score
do 333 i_init=1,n_init
L_init=L_ini(i_init)
iL_max=n_ali-L_init+1
do 300 iL=1,iL_max !on aligned residues, [1,nseqA]
LL=0
ka=0
do i=1,L_init
k=iL+i-1 ![1,n_ali] common aligned
r_1(1,i)=xa(iA(k))
r_1(2,i)=ya(iA(k))
r_1(3,i)=za(iA(k))
r_2(1,i)=xb(iB(k))
r_2(2,i)=yb(iB(k))
r_2(3,i)=zb(iB(k))
LL=LL+1
ka=ka+1
k_ali(ka)=k
enddo
call u3b(w,r_1,r_2,LL,1,rms,u,t,ier) !u rotate r_1 to r_2
do j=1,nseqA
xt(j)=t(1)+u(1,1)*xa(j)+u(1,2)*ya(j)+u(1,3)*za(j)
yt(j)=t(2)+u(2,1)*xa(j)+u(2,2)*ya(j)+u(2,3)*za(j)
zt(j)=t(3)+u(3,1)*xa(j)+u(3,2)*ya(j)+u(3,3)*za(j)
enddo
d=d0_search-1
call score_fun !init, get scores, n_cut+i_ali(i) for iteration
if(score_max.lt.score)then
score_max=score
ka0=ka
do i=1,ka0
k_ali0(i)=k_ali(i)
enddo
endif
*** iteration for extending ---------------------------------->
d=d0_search+1
do 301 it=1,n_it
LL=0
ka=0
do i=1,n_cut
m=i_ali(i) ![1,n_ali]
r_1(1,i)=xa(iA(m))
r_1(2,i)=ya(iA(m))
r_1(3,i)=za(iA(m))
r_2(1,i)=xb(iB(m))
r_2(2,i)=yb(iB(m))
r_2(3,i)=zb(iB(m))
ka=ka+1
k_ali(ka)=m
LL=LL+1
enddo
call u3b(w,r_1,r_2,LL,1,rms,u,t,ier) !u rotate r_1 to r_2
do j=1,nseqA
xt(j)=t(1)+u(1,1)*xa(j)+u(1,2)*ya(j)+u(1,3)*za(j)
yt(j)=t(2)+u(2,1)*xa(j)+u(2,2)*ya(j)+u(2,3)*za(j)
zt(j)=t(3)+u(3,1)*xa(j)+u(3,2)*ya(j)+u(3,3)*za(j)
enddo
call score_fun !get scores, n_cut+i_ali(i) for iteration
if(score_max.lt.score)then
score_max=score
ka0=ka
do i=1,ka
k_ali0(i)=k_ali(i)
enddo
endif
if(it.eq.n_it)goto 302
if(n_cut.eq.ka)then
neq=0
do i=1,n_cut
if(i_ali(i).eq.k_ali(i))neq=neq+1
enddo
if(n_cut.eq.neq)goto 302
endif
301 continue !for iteration
302 continue
300 continue !for shift
333 continue !for initial length, L_ali/M
******** return the final rotation ****************
if(irmx.eq.1)then !we need coordinates for output structure
LL=0
do i=1,ka0
m=k_ali0(i) !record of the best alignment
r_1(1,i)=xa(iA(m))
r_1(2,i)=ya(iA(m))
r_1(3,i)=za(iA(m))
r_2(1,i)=xb(iB(m))
r_2(2,i)=yb(iB(m))
r_2(3,i)=zb(iB(m))
LL=LL+1
enddo
call u3b(w,r_1,r_2,LL,1,rms,u,t,ier) !u rotate r_1 to r_2
do j=1,nseqA
x1(j)=t(1)+u(1,1)*xa(j)+u(1,2)*ya(j)+u(1,3)*za(j)
y1(j)=t(2)+u(2,1)*xa(j)+u(2,2)*ya(j)+u(2,3)*za(j)
z1(j)=t(3)+u(3,1)*xa(j)+u(3,2)*ya(j)+u(3,3)*za(j)
enddo
endif
TM=score_max
c^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
return
END
ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc
c 1, collect those residues with dis<d;
c 2, calculate score_GDT, score_maxsub, score_TM
ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc
subroutine score_fun
PARAMETER(nmax=5000)
common/stru/xa(nmax),ya(nmax),za(nmax),xb(nmax),yb(nmax),zb(nmax)
common/nres/nseqA,nseqB
common/para/d,d0
common/align/n_ali,iA(nmax),iB(nmax)
common/nscore/i_ali(nmax),n_cut ![1,n_ali],align residues for the score
common/scores/score
double precision score
d_tmp=d
d_tmp2=d_tmp*d_tmp
21 n_cut=0 !number of residue-pairs dis<d, for iteration
score_sum=0 !TMscore
do k=1,n_ali
i=iA(k) ![1,nseqA] reoder number of structureA
j=iB(k) ![1,nseqB]
dis2=(xa(i)-xb(j))**2+(ya(i)-yb(j))**2+(za(i)-zb(j))**2
if(dis2.lt.d_tmp2)then
n_cut=n_cut+1
i_ali(n_cut)=k ![1,n_ali], mark the residue-pairs in dis<d
endif
score_sum=score_sum+1/(1+dis2/d0/d0)
enddo
if(n_cut.lt.3.and.n_ali.gt.3)then
d_tmp=d_tmp+.5
d_tmp2=d_tmp*d_tmp
goto 21
endif
score=score_sum/float(nseqB) !TM-score
return
end
********************************************************************
* Dynamic programming for alignment.
* Input: score(i,j), and gap_open
* Output: invmap(j)
*
* Please note this subroutine is not a correct implementation of
* the N-W dynamic programming because the score tracks back only
* one layer of the matrix. This code was exploited in TM-align
* because it is about 1.5 times faster than a complete N-W code
* and does not influence much the final structure alignment result.
* In 1/1000 case, it may result in asymmetry, i.e. A_to_B!=B_to_A
* For example, '1se9A.pdb' and '2edpA.pdb'
********************************************************************
SUBROUTINE DP(NSEQ1,NSEQ2)
PARAMETER(nmax=5000)
LOGICAL*1 DIR
common/dpc/score(nmax,nmax),gap_open,invmap(nmax)
dimension DIR(0:nmax,0:nmax),VAL(0:nmax,0:nmax)
REAL H,V
*** initialize the matrix:
val(0,0)=0
do i=1,nseq1
dir(i,0)=.false.
val(i,0)=0
enddo
do j=1,nseq2
dir(0,j)=.false.
val(0,j)=0
invmap(j)=-1
enddo
*** decide matrix and path:
DO j=1,NSEQ2
DO i=1,NSEQ1
D=VAL(i-1,j-1)+SCORE(i,j)
H=VAL(i-1,j)
if(DIR(i-1,j))H=H+GAP_OPEN
V=VAL(i,j-1)
if(DIR(i,j-1))V=V+GAP_OPEN
IF((D.GE.H).AND.(D.GE.V)) THEN
DIR(I,J)=.true.
VAL(i,j)=D
ELSE
DIR(I,J)=.false.
if(V.GE.H)then
val(i,j)=v
else
val(i,j)=h
end if
ENDIF
ENDDO
ENDDO
*** extract the alignment:
i=NSEQ1
j=NSEQ2
DO WHILE((i.GT.0).AND.(j.GT.0))
IF(DIR(i,j))THEN
invmap(j)=i
i=i-1
j=j-1
ELSE
H=VAL(i-1,j)
if(DIR(i-1,j))H=H+GAP_OPEN
V=VAL(i,j-1)
if(DIR(i,j-1))V=V+GAP_OPEN
IF(V.GE.H) THEN
j=j-1
ELSE
i=i-1
ENDIF
ENDIF
ENDDO
c^^^^^^^^^^^^^^^Dynamical programming done ^^^^^^^^^^^^^^^^^^^
return
END
cccccccccccccccc Calculate sum of (r_d-r_m)^2 cccccccccccccccccccccccccc
c w - w(m) is weight for atom pair c m (given)
c x - x(i,m) are coordinates of atom c m in set x (given)
c y - y(i,m) are coordinates of atom c m in set y (given)
c n - n is number of atom pairs (given)
c mode - 0:calculate rms only (given,short)
c 1:calculate u,t only (given,medium)
c 2:calculate rms,u,t (given,longer)
c rms - sum of w*(ux+t-y)**2 over all atom pairs (result)
c u - u(i,j) is rotation matrix for best superposition (result)
c t - t(i) is translation vector for best superposition (result)
c ier - 0: a unique optimal superposition has been determined(result)
c -1: superposition is not unique but optimal
c -2: no result obtained because of negative weights w
c or all weights equal to zero.
cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc
subroutine u3b(w, x, y, n, mode, rms, u, t, ier)
double precision w(*), x(3,*), y(3,*)
integer n, mode
double precision rms, u(3,3), t(3)
integer ier
integer i, j, k, l, m1, m
integer ip(9), ip2312(4)
double precision r(3,3), xc(3), yc(3), wc
double precision a(3,3), b(3,3), e(3), rr(6), ss(6)
double precision e0, d, spur, det, cof, h, g
double precision cth, sth, sqrth, p, sigma
double precision c1x, c1y, c1z, c2x, c2y, c2z
double precision s1x, s1y, s1z, s2x, s2y, s2z
double precision sxx, sxy, sxz, syx, syy, syz, szx, szy, szz
double precision sqrt3, tol, zero
data sqrt3 / 1.73205080756888d+00 /
data tol / 1.0d-2 /
data zero / 0.0d+00 /
data ip / 1, 2, 4, 2, 3, 5, 4, 5, 6 /
data ip2312 / 2, 3, 1, 2 /
wc = zero
rms = zero
e0 = zero
s1x = zero
s1y = zero
s1z = zero
s2x = zero
s2y = zero
s2z = zero
sxx = zero
sxy = zero
sxz = zero
syx = zero
syy = zero
syz = zero
szx = zero
szy = zero
szz = zero
do i=1, 3
xc(i) = zero
yc(i) = zero
t(i) = zero
do j=1, 3
r(i,j) = zero
u(i,j) = zero
a(i,j) = zero
if( i .eq. j ) then
u(i,j) = 1.0
a(i,j) = 1.0
end if
end do
end do
ier = -1
if( n .lt. 1 ) return
ier = -2
do m=1, n
c1x=x(1, m)
c1y=x(2, m)
c1z=x(3, m)
c2x=y(1, m)
c2y=y(2, m)
c2z=y(3, m)
s1x = s1x + c1x
s1y = s1y + c1y;
s1z = s1z + c1z;
s2x = s2x + c2x;
s2y = s2y + c2y;
s2z = s2z + c2z;
sxx = sxx + c1x*c2x;
sxy = sxy + c1x*c2y;
sxz = sxz + c1x*c2z;
syx = syx + c1y*c2x;
syy = syy + c1y*c2y;
syz = syz + c1y*c2z;
szx = szx + c1z*c2x;
szy = szy + c1z*c2y;
szz = szz + c1z*c2z;
end do
xc(1) = s1x/n;
xc(2) = s1y/n;
xc(3) = s1z/n;
yc(1) = s2x/n;
yc(2) = s2y/n;
yc(3) = s2z/n;
if(mode.eq.2.or.mode.eq.0) then ! need rmsd
do m=1, n
do i=1, 3
e0 = e0+ (x(i, m)-xc(i))**2 + (y(i, m)-yc(i))**2
end do
end do
endif
r(1, 1) = sxx-s1x*s2x/n;
r(2, 1) = sxy-s1x*s2y/n;
r(3, 1) = sxz-s1x*s2z/n;
r(1, 2) = syx-s1y*s2x/n;
r(2, 2) = syy-s1y*s2y/n;
r(3, 2) = syz-s1y*s2z/n;
r(1, 3) = szx-s1z*s2x/n;
r(2, 3) = szy-s1z*s2y/n;
r(3, 3) = szz-s1z*s2z/n;
det = r(1,1) * ( (r(2,2)*r(3,3)) - (r(2,3)*r(3,2)) )
& - r(1,2) * ( (r(2,1)*r(3,3)) - (r(2,3)*r(3,1)) )
& + r(1,3) * ( (r(2,1)*r(3,2)) - (r(2,2)*r(3,1)) )
sigma = det
m = 0
do j=1, 3
do i=1, j
m = m+1
rr(m) = r(1,i)*r(1,j) + r(2,i)*r(2,j) + r(3,i)*r(3,j)
end do
end do
spur = (rr(1)+rr(3)+rr(6)) / 3.0
cof = (((((rr(3)*rr(6) - rr(5)*rr(5)) + rr(1)*rr(6))
& - rr(4)*rr(4)) + rr(1)*rr(3)) - rr(2)*rr(2)) / 3.0
det = det*det
do i=1, 3
e(i) = spur
end do
if( spur .le. zero ) goto 40
d = spur*spur
h = d - cof
g = (spur*cof - det)/2.0 - spur*h
if( h .le. zero ) then
if( mode .eq. 0 ) then
goto 50
else
goto 30
end if
end if
sqrth = dsqrt(h)
d = h*h*h - g*g
if( d .lt. zero ) d = zero
d = datan2( dsqrt(d), -g ) / 3.0
cth = sqrth * dcos(d)
sth = sqrth*sqrt3*dsin(d)
e(1) = (spur + cth) + cth
e(2) = (spur - cth) + sth
e(3) = (spur - cth) - sth
if( mode .eq. 0 ) then
goto 50
end if
do l=1, 3, 2
d = e(l)
ss(1) = (d-rr(3)) * (d-rr(6)) - rr(5)*rr(5)
ss(2) = (d-rr(6)) * rr(2) + rr(4)*rr(5)
ss(3) = (d-rr(1)) * (d-rr(6)) - rr(4)*rr(4)
ss(4) = (d-rr(3)) * rr(4) + rr(2)*rr(5)
ss(5) = (d-rr(1)) * rr(5) + rr(2)*rr(4)
ss(6) = (d-rr(1)) * (d-rr(3)) - rr(2)*rr(2)
if( dabs(ss(1)) .ge. dabs(ss(3)) ) then
j=1
if( dabs(ss(1)) .lt. dabs(ss(6)) ) j = 3
else if( dabs(ss(3)) .ge. dabs(ss(6)) ) then
j = 2
else
j = 3
end if
d = zero
j = 3 * (j - 1)
do i=1, 3
k = ip(i+j)
a(i,l) = ss(k)
d = d + ss(k)*ss(k)
end do
if( d .gt. zero ) d = 1.0 / dsqrt(d)
do i=1, 3
a(i,l) = a(i,l) * d
end do
end do
d = a(1,1)*a(1,3) + a(2,1)*a(2,3) + a(3,1)*a(3,3)
if ((e(1) - e(2)) .gt. (e(2) - e(3))) then
m1 = 3
m = 1
else
m1 = 1
m = 3
endif
p = zero
do i=1, 3
a(i,m1) = a(i,m1) - d*a(i,m)
p = p + a(i,m1)**2
end do
if( p .le. tol ) then
p = 1.0
do 21 i=1, 3
if (p .lt. dabs(a(i,m))) goto 21
p = dabs( a(i,m) )
j = i
21 continue
k = ip2312(j)
l = ip2312(j+1)
p = dsqrt( a(k,m)**2 + a(l,m)**2 )
if( p .le. tol ) goto 40
a(j,m1) = zero
a(k,m1) = -a(l,m)/p
a(l,m1) = a(k,m)/p
else
p = 1.0 / dsqrt(p)
do i=1, 3
a(i,m1) = a(i,m1)*p
end do
end if
a(1,2) = a(2,3)*a(3,1) - a(2,1)*a(3,3)
a(2,2) = a(3,3)*a(1,1) - a(3,1)*a(1,3)
a(3,2) = a(1,3)*a(2,1) - a(1,1)*a(2,3)
30 do l=1, 2
d = zero
do i=1, 3
b(i,l) = r(i,1)*a(1,l) + r(i,2)*a(2,l) + r(i,3)*a(3,l)
d = d + b(i,l)**2
end do
if( d .gt. zero ) d = 1.0 / dsqrt(d)
do i=1, 3
b(i,l) = b(i,l)*d
end do
end do
d = b(1,1)*b(1,2) + b(2,1)*b(2,2) + b(3,1)*b(3,2)
p = zero
do i=1, 3
b(i,2) = b(i,2) - d*b(i,1)
p = p + b(i,2)**2
end do
if( p .le. tol ) then
p = 1.0
do 22 i=1, 3
if(p.lt.dabs(b(i,1)))goto 22
p = dabs( b(i,1) )
j = i
22 continue
k = ip2312(j)
l = ip2312(j+1)
p = dsqrt( b(k,1)**2 + b(l,1)**2 )
if( p .le. tol ) goto 40
b(j,2) = zero
b(k,2) = -b(l,1)/p
b(l,2) = b(k,1)/p
else
p = 1.0 / dsqrt(p)
do i=1, 3
b(i,2) = b(i,2)*p
end do
end if
b(1,3) = b(2,1)*b(3,2) - b(2,2)*b(3,1)
b(2,3) = b(3,1)*b(1,2) - b(3,2)*b(1,1)
b(3,3) = b(1,1)*b(2,2) - b(1,2)*b(2,1)
do i=1, 3
do j=1, 3
u(i,j) = b(i,1)*a(j,1) + b(i,2)*a(j,2) + b(i,3)*a(j,3)
end do
end do
40 do i=1, 3
t(i) = ((yc(i) - u(i,1)*xc(1)) - u(i,2)*xc(2)) - u(i,3)*xc(3)
end do
50 do i=1, 3
if( e(i) .lt. zero ) e(i) = zero
e(i) = dsqrt( e(i) )
end do
ier = 0
if( e(2) .le. (e(1) * 1.0d-05) ) ier = -1
d = e(3)
if( sigma .lt. 0.0 ) then
d = - d
if( (e(2) - e(3)) .le. (e(1) * 1.0d-05) ) ier = -1
end if
d = (d + e(2)) + e(1)
if(mode .eq. 2.or.mode.eq.0) then ! need rmsd
rms = (e0 - d) - d
if( rms .lt. 0.0 ) rms = 0.0
endif
return
end
|