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 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368
|
/* $Id: samutil.c,v 1.79 2016/06/21 21:42:36 kans Exp $
* ===========================================================================
*
* PUBLIC DOMAIN NOTICE
* National Center for Biotechnology Information (NCBI)
*
* This software/database is a "United States Government Work" under the
* terms of the United States Copyright Act. It was written as part of
* the author's official duties as a United States Government employee and
* thus cannot be copyrighted. This software/database is freely available
* to the public for use. The National Library of Medicine and the U.S.
* Government do not place any restriction on its use or reproduction.
* We would, however, appreciate having the NCBI and the author cited in
* any work or product based on this material
*
* Although all reasonable efforts have been taken to ensure the accuracy
* and reliability of the software and data, the NLM and the U.S.
* Government do not and cannot warrant the performance or results that
* may be obtained by using this software or data. The NLM and the U.S.
* Government disclaim all warranties, express or implied, including
* warranties of performance, merchantability or fitness for any particular
* purpose.
*
* ===========================================================================
*
* File Name: $Id: samutil.c,v 1.79 2016/06/21 21:42:36 kans Exp $
*
* Author: Lewis Geer
*
* Version Creation Date: 8/12/99
*
* $Revision: 1.79 $
*
* File Description: Utility functions for AlignIds and SeqAlignLocs
*
* Modifications:
* --------------------------------------------------------------------------
*
* ==========================================================================
*/
#include <samutil.h>
#include <sequtil.h>
/*****************************************************************************
Function: SAM_ReplaceGI()
Purpose: Tries to replace all gi's in a seqalign with the best accession ID's
Parameters: salp, the seqalign to be worked over.
Returns: This function only works on a non-indexed list of seqaligns
*****************************************************************************/
NLM_EXTERN void SAM_ReplaceGI(SeqAlign *salp)
{
DenseSegPtr dsp;
DenseDiagPtr ddp;
SeqId *sip, *sipBest, *sipPrev, *wholesip;
BIG_ID gi;
for(;salp != NULL; salp = salp->next) {
if (salp->segtype == SAS_DENSEG) {
dsp = (DenseSegPtr)(salp->segs);
sipPrev = NULL;
for(sip = dsp->ids; sip != NULL; sipPrev = sip, sip = sip->next) {
gi = GetGIForSeqId(sip);
wholesip = GetSeqIdForGI(gi);
if(wholesip == NULL) continue;
sipBest = SeqIdFindBestAccession(wholesip);
if(sipBest == NULL) {
SeqIdFree(wholesip);
continue;
}
sipBest = SeqIdDup(sipBest);
if(sipPrev == NULL) dsp->ids = sipBest;
else sipPrev->next = sipBest;
sipBest->next = sip->next;
sip->next = NULL;
SeqIdFree(sip);
SeqIdFree(wholesip);
sip = sipBest;
}
} else if (salp->segtype == SAS_DENDIAG) {
ddp = (DenseDiagPtr)(salp->segs);
while (ddp != NULL)
{
sipPrev = NULL;
for(sip = ddp->id; sip != NULL; sipPrev = sip, sip = sip->next) {
gi = GetGIForSeqId(sip);
wholesip = GetSeqIdForGI(gi);
if(wholesip == NULL) continue;
sipBest = SeqIdFindBestAccession(wholesip);
if(sipBest == NULL) {
SeqIdFree(wholesip);
continue;
}
sipBest = SeqIdDup(sipBest);
if(sipPrev == NULL) ddp->id = sipBest;
else sipPrev->next = sipBest;
sipBest->next = sip->next;
sip->next = NULL;
SeqIdFree(sip);
SeqIdFree(wholesip);
sip = sipBest;
}
ddp = ddp->next;
}
}
}
}
/*****************************************************************************
Function: SAM_ExtractSips()
Purpose: Return a ValNode list containing a SeqId for each Bioseq
contained in a SeqEntry.
Parameters: sep, pointer to the SeqEntry to explore
Returns: ValNode list of pointers to SeqId's. Do NOT deallocate, these are
not duplicates!
*****************************************************************************/
typedef struct _SAM_ExtractStruc {
ValNode *sips;
} SAM_ExtractStruc;
static void SAM_ExtractSipsCallback(SeqEntryPtr sep, Pointer mydata,
Int4 index, Int2 indent)
{
Bioseq *bsp;
SAM_ExtractStruc *pExtract;
pExtract = (SAM_ExtractStruc *) mydata;
if(sep == NULL || pExtract == NULL) return;
bsp = (BioseqPtr) sep->data.ptrvalue;
if(bsp == NULL) return;
ValNodeAddPointer(&pExtract->sips, 0, bsp->id);
}
ValNode * SAM_ExtractSips(SeqEntry *sep)
{
SAM_ExtractStruc Extract;
Extract.sips = NULL;
BioseqExplore(sep, (void *)&Extract, SAM_ExtractSipsCallback);
return Extract.sips;
}
/*****************************************************************************
Function: SAM_MakeViewerFree()
Purpose: Set an object to use OM_OPT_FREE_IF_NO_VIEW flag.
Parameters: data, pointer to the object to be flagged.
Returns: 1 if OK, 0 otherwise.
*****************************************************************************/
NLM_EXTERN Int4 SAM_MakeViewerFree (void *data)
{
ObjMgrData *omdp;
ObjMgr *omp;
Uint2 entityID;
Uint2 options;
omp = ObjMgrReadLock();
if(omp == NULL) ThrowError;
omdp = ObjMgrFindByData(omp, data);
if(omdp == NULL) ThrowError;
if(!ObjMgrUnlock()) ThrowError;
entityID = omdp->EntityID;
options = ObjMgrGetOptions(entityID);
options |= OM_OPT_FREE_IF_NO_VIEW;
ObjMgrSetOptions(options, entityID);
return 1;
error:
ErrPostEx(SEV_ERROR, 0, 0, "Error");
return 0;
}
/*****************************************************************************
Function: SAM_MakeTemp()
Purpose: Make an object temporary loaded.
Parameters: data, pointer to the object to be flagged.
Returns: 1 if OK, 0 otherwise.
*****************************************************************************/
NLM_EXTERN Int4 SAM_MakeTemp (void *data)
{
ObjMgr *omp;
omp = ObjMgrWriteLock();
if(omp == NULL) ThrowError;
if(!ObjMgrSetTempLoad (omp, data)) ThrowError;
if(!ObjMgrUnlock()) ThrowError;
return 1;
error:
ErrPostEx(SEV_ERROR, 0, 0, "Error");
return 0;
}
/*****************************************************************************
Function: SAM_ValNodePut()
Purpose: Put a ValNode in a list of ValNodes by cardinal order.
Parameters: ppvnHead, pointer to head of ValNode list
Num, the number of the ValNode to insert before. begins with 0.
pvnInsert, the valnode to insert
Returns: 1 if OK, 0 otherwise.
Notes: Hangs on loops that don't include the head.
*****************************************************************************/
NLM_EXTERN Int4 SAM_ValNodePut
(ValNode **ppvnHead, ValNode *pvnInsert, Int4 Num)
{
ValNode *pvn, *pvnPrevious = NULL;
Boolean First = TRUE;
Int4 i;
if(ppvnHead == NULL || pvnInsert == NULL) return 0;
for(pvn = *ppvnHead, i = 0; pvn != NULL && i != Num;
pvn = pvn->next, i++) {
if(!First && pvn == *ppvnHead) return 0; /* loop */
First = FALSE;
pvnPrevious = pvn;
}
if(pvn == NULL && i != Num) return 0; /* nobody home */
if(pvn == NULL && i == Num) { /* at the end */
pvnPrevious->next = pvnInsert;
pvnInsert->next = NULL;
return 1;
}
if(i == 0) { /* at the beginning */
pvnInsert->next = *ppvnHead;
*ppvnHead = pvnInsert;
return 1;
}
/* somewhere in the middle */
pvnPrevious->next = pvnInsert;
pvnInsert->next = pvn;
return 1;
}
/*****************************************************************************
Function: SAM_ValNodeExtract()
Purpose: Takes a ValNode out of a list of ValNodes by cardinal order.
Parameters: ppvnHead, pointer to head of ValNode list
Num, the number of the ValNode to extract (the 2nd, 3rd, etc.)
Returns: The extracted ValNode. NULL otherwise.
Notes: Hangs on loops that don't include the head.
*****************************************************************************/
NLM_EXTERN ValNode * SAM_ValNodeExtract(ValNode **ppvnHead, Int4 Num)
{
ValNode *pvn, *pvnPrevious = NULL;
Boolean First = TRUE;
Int4 i;
if(ppvnHead == NULL) return NULL;
for(pvn = *ppvnHead, i = 0; pvn != NULL; pvn = pvn->next, i++) {
if(!First && pvn == *ppvnHead) return NULL; /* loop */
First = FALSE;
if (i == Num) break;
pvnPrevious = pvn;
}
if(pvn == NULL) return NULL; /* nobody home */
if(pvnPrevious != NULL) pvnPrevious->next = pvn->next;
else *ppvnHead = pvn->next;
pvn->next = NULL;
return pvn;
}
/*****************************************************************************
Function: SAM_ValNodeByPosition()
Purpose: Return pointer to ValNode in a list of ValNodes by cardinal order.
Parameters: ppvnHead, pointer to head of ValNode list
Num, the number of the ValNode to get (the 2nd, 3rd, etc.).
starts at 0.
Returns: The ValNode at position NUM. NULL otherwise.
Notes: Hangs on loops that don't include the head.
*****************************************************************************/
NLM_EXTERN ValNode * SAM_ValNodeByPosition(ValNode **ppvnHead, Int4 Num)
{
ValNode *pvn;
Boolean First = TRUE;
Int4 i;
if(ppvnHead == NULL) return NULL;
for(pvn = *ppvnHead, i = 0; pvn != NULL; pvn = pvn->next, i++) {
if(!First && pvn == *ppvnHead) return NULL; /* loop */
First = FALSE;
if (i == Num) break;
}
return pvn;
}
/*****************************************************************************
Function: SAM_SeqAlignExtract()
Purpose: Takes a SeqAlign out of a list of SeqAligns. The extracted SeqAlign
is the first one pointer matches the passed SeqAlign pointer.
Parameters: psalpHead, pointer to head of SeqAlign list
salpCheck, points to the SeqAlign to be extracted
Returns: The extracted SeqAlign. NULL otherwise
Notes: Hangs on loops that don't include the head.
*****************************************************************************/
NLM_EXTERN SeqAlign * SAM_SeqAlignExtract
(SeqAlign **psalpHead, SeqAlign *salpCheck)
{
SeqAlign *salp, *salpPrevious = NULL;
Boolean fFirst = TRUE;
if(psalpHead == NULL) return NULL;
for(salp = *psalpHead; salp != NULL; salp = salp->next) {
if(!fFirst && salp == *psalpHead) return NULL; /* loop */
fFirst = FALSE;
if (salp == salpCheck) break;
salpPrevious = salp;
}
if(salp == NULL) return NULL; /* nobody home */
if(salpPrevious != NULL) salpPrevious->next = salp->next;
else *psalpHead = salp->next;
salp->next = NULL;
return salp;
}
/*****************************************************************************
*
* Adds a SeqAlign newnode to the end of a SeqAlign chain started by head.
*
* If the head is NULL, makes the newnode the head.
* Returns the head of the SeqAlign chain, otherwise returns NULL on error.
*
*****************************************************************************/
NLM_EXTERN SeqAlign * SAM_Add2SeqAlign(SeqAlign ** head, SeqAlign *newnode)
{
SeqAlign *salp;
if (head == NULL)
return NULL;
salp = *head;
if (salp != NULL ) {
while (salp->next != NULL) salp = salp->next;
salp->next = newnode;
}
else
*head = newnode;
return *head;
}
/*****************************************************************************
*
* Frees a list of SeqId's. Returns the remaining SeqId * if fails,
* Otherwise NULL.
*
*****************************************************************************/
NLM_EXTERN SeqId * SAM_FreeSeqIdSet(SeqId *sip)
{
for(;sip != NULL; sip = sip->next) {
if(SeqIdFree(sip) != NULL) return sip;
}
return NULL;
}
/*****************************************************************************
*
* Retrieves SeqIds from a set of seqlocs, duplicates the first SeqId, then
* appends it to a list of SeqId's, which is returned.
*
* Returns NULL if the seqlocs are of any type other that SEQLOC_INT or the
* SeqLoc doesn't contain a SeqId.
*
*****************************************************************************/
NLM_EXTERN SeqId * SAM_SeqIdFromSeqLoc(SeqLoc *slp, Int4 * NumSeqs)
{
SeqInt *pSeqInt;
SeqId *sip, *sipHead;
sip = NULL;
sipHead = NULL;
*NumSeqs = 0;
for(; slp != NULL; slp = slp->next) {
if(slp->choice != SEQLOC_INT) goto error;
pSeqInt = (SeqInt *)slp->data.ptrvalue;
if (pSeqInt == NULL || pSeqInt->id == NULL) goto error;
sip = SeqIdDup(pSeqInt->id);
if(sip == NULL) goto error;
sip->next = NULL;
ValNodeLink(&sipHead, sip);
(*NumSeqs)++;
}
return sipHead;
error:
ErrPostEx(SEV_ERROR, 0, 0,
"SAM_SeqIdFromSeqLoc: Error");
SAM_FreeSeqIdSet(sipHead);
return NULL;
}
/*****************************************************************************
Function: SAM_NewDenseSeg()
Purpose: Constructs a new DenseSeg, all arrays initialized to sizes based on
NumSeqs and NumSegs
Parameters: NumSeqs, the number of sequences
NumSegs, the number of Segments
Strands, if TRUE, initialize the strands array.
Returns: The new DenseSeg. NULL otherwise.
*****************************************************************************/
NLM_EXTERN DenseSeg *SAM_NewDenseSeg
(Int4 NumSeqs, Int4 NumSegs, Boolean Strands)
{
DenseSeg *pDenseSeg = NULL;
pDenseSeg = DenseSegNew();
if(pDenseSeg == NULL) goto error;
pDenseSeg->starts = MemNew(sizeof(Int4)*NumSeqs*NumSegs);
pDenseSeg->lens = MemNew(sizeof(Int4)*NumSegs);
if(pDenseSeg->starts == NULL || pDenseSeg->lens == NULL) goto error;
if(Strands) {
pDenseSeg->strands = MemNew(sizeof(Uint1)*NumSeqs);
if(pDenseSeg->strands == NULL) goto error;
}
else pDenseSeg->strands = NULL;
pDenseSeg->dim = NumSeqs;
pDenseSeg->numseg = NumSegs;
pDenseSeg->scores = NULL;
pDenseSeg->ids = NULL;
return pDenseSeg;
error:
ErrPostEx(SEV_ERROR, 0, 0,
"SAM_NewDenseSeg: Error");
DenseSegFree(pDenseSeg);
return NULL;
}
/*****************************************************************************
*
* Constructs a new SeqAlign of type type and segment type segtype. Add segs
* to the seg pointer and sets the dimension of the SeqAlign to dim.
*
* Returns NULL on error
*
*****************************************************************************/
NLM_EXTERN SeqAlign *SAM_NewSeqAlign
(Uint1 type, Uint1 segtype, Pointer segs, Int2 dim)
{
SeqAlign *pSeqAlign;
pSeqAlign = MemNew(sizeof(SeqAlign));
pSeqAlign->type = type;
pSeqAlign->segtype = segtype;
pSeqAlign->dim = dim;
pSeqAlign->segs = segs;
pSeqAlign->score = NULL;
pSeqAlign->next = NULL;
pSeqAlign->bounds = NULL;
pSeqAlign->master = NULL;
pSeqAlign->saip = NULL;
pSeqAlign->idx.entityID = 0;
pSeqAlign->idx.itemID = 0;
pSeqAlign->idx.itemtype = 0;
return pSeqAlign;
}
/*****************************************************************************
*
* Checks to see how a postion is inside or is in front of or in back of a
* range.
* If it is inside, return SAM_TOTALLAP
* If it doesn't, return SAM_NOLAP & SAM_NOLAPFRONT if in front
* If it doesn't and is in back return SAM_NOLAP & SAM_NOLAPBACK
*
*****************************************************************************/
NLM_EXTERN Int4 SAM_InRange(Int4 Position, Int4 From, Int4 To)
{
return SAM_RangeOverlap(Position, Position, From, To);
}
/*****************************************************************************
*
* Checks to see if Range1 overlaps Range2.
* If it does completely, return SAM_TOTALLAP
* If it doesn't, return SAM_NOLAP & SAM_NOLAPFRONT if in front
* If it doesn't and is in back return SAM_NOLAP & SAM_NOLAPBACK
* If pRange1 overlaps the front of pRange2, return SAM_FRONTLAP
* If pRange1 overlaps the rear of pRange2, return SAM_BACKLAP
*
*****************************************************************************/
NLM_EXTERN Int4 SAM_RangeOverlap(Int4 From1, Int4 To1, Int4 From2, Int4 To2)
{
if(To1 < From2) return SAM_NOLAPFRONT;
if(From1 > To2) return SAM_NOLAPBACK;
if(From1 >= From2) {
if(To1 <= To2) return SAM_TOTALLAP;
else return SAM_BACKLAP;
}
return SAM_FRONTLAP;
}
/*****************************************************************************
*
* Lexically compare two SeqId's. Checks ALL sips on both chains.
* Returns -1 if sip1 < sip2
* 0 if sip1 == sip2
* 1 if sip1 > sip2
*
*****************************************************************************/
NLM_EXTERN Int4 SAM_LexicalComp(SeqId *sip1, SeqId *sip2)
{
Char Id1[SAM_SIPBUF], Id2[SAM_SIPBUF];
SeqId *sipThis1, *sipThis2;
Int4 Compare;
for(sipThis1 = sip1, sipThis2 = sip2;;
sipThis1 = sipThis1->next, sipThis2 = sipThis2->next) {
MakeReversedSeqIdString (sipThis1, Id1, (size_t) SAM_SIPBUF);
MakeReversedSeqIdString (sipThis2, Id2, (size_t) SAM_SIPBUF);
Compare = StrCmp(Id1, Id2);
if(Compare == 0) {
if(sipThis1->next == NULL && sipThis2->next == NULL) return 0;
else if(sipThis1->next == NULL) return -1;
else if(sipThis2->next == NULL) return 1;
continue;
}
return Compare;
}
}
/*****************************************************************************
*
* Orders two SeqId's for binary searches, etc. DOES check the full
* ValNode lists. The ordering is arbitrary but consistent.
* Returns -1 if sip1 < sip2
* 0 if sip1 == sip2
* 1 if sip1 > sip2
*
*****************************************************************************/
NLM_EXTERN Int4 SAM_OrderSeqIDChain (SeqId *sip1, SeqId *sip2)
{
Int4 retval = 1;
for(;sip1 != NULL && sip2 != NULL; sip1 = sip1->next, sip2 = sip2->next) {
retval = SAM_OrderSeqID(sip1, sip2);
if(retval != 0) return retval;
}
if(sip1 == NULL && sip2 == NULL) return 0;
else if(sip2 == NULL) return -1;
else return 1;
}
/*****************************************************************************
*
* Orders two SeqId's for binary searches, etc. Does NOT check the full
* ValNode lists. The ordering is arbitrary but consistent.
* Returns -1 if sip1 < sip2
* 0 if sip1 == sip2
* 1 if sip1 > sip2
*
*****************************************************************************/
NLM_EXTERN Int4 SAM_OrderSeqID(SeqId *sip1, SeqId *sip2)
{
Char Buf1[SAM_SIPBUF], Buf2[SAM_SIPBUF];
Int4 retval = 1;
if(sip1->choice == sip2->choice ) goto check;
if((sip1->choice == SEQID_GENBANK ||
sip1->choice == SEQID_EMBL || sip1->choice == SEQID_DDBJ) &&
(sip2->choice == SEQID_GENBANK || sip2->choice == SEQID_EMBL ||
sip2->choice == SEQID_DDBJ || sip2->choice == SEQID_TPG ||
sip2->choice == SEQID_TPE || sip2->choice == SEQID_TPD ||
sip2->choice == SEQID_GPIPE)) goto check;
goto nocheck;
check:
switch (sip1->choice) {
case SEQID_GI:
case SEQID_GIBBSQ:
case SEQID_GIBBMT:
retval = sip1->data.intvalue - sip2->data.intvalue;
if (retval == 0) break;
if (retval > 0) return 1;
return -1;
case SEQID_LOCAL:
case SEQID_GIIM:
case SEQID_GENERAL:
case SEQID_PDB:
case SEQID_PATENT:
case SEQID_PRF:
case SEQID_DDBJ:
case SEQID_OTHER:
case SEQID_EMBL:
case SEQID_GENBANK:
case SEQID_PIR:
case SEQID_SWISSPROT:
case SEQID_TPG:
case SEQID_TPE:
case SEQID_TPD:
case SEQID_GPIPE:
SeqIdWrite (sip1, Buf1, PRINTID_FASTA_SHORT, SAM_SIPBUF);
SeqIdWrite (sip2, Buf2, PRINTID_FASTA_SHORT, SAM_SIPBUF);
retval = StrCmp(Buf1, Buf2);
if(retval != 0) return retval;
break;
default:
retval = 1;
break;
}
return retval;
nocheck:
if (sip1->choice > sip2->choice) return 1;
return -1;
}
/*****************************************************************************
*
* Compare two SeqId to make sure all valnodes compare exactly
*
*****************************************************************************/
NLM_EXTERN Boolean SAM_SeqIdCompareAll(SeqId *sip1, SeqId *sip2)
{
SeqId *sip;
Boolean retval = TRUE;
if(sip1 == NULL || sip2 == NULL) return FALSE;
if(ValNodeLen(sip1) != ValNodeLen(sip2)) return FALSE;
for(sip = sip1; sip != NULL; sip = sip->next)
if(!SeqIdIn(sip, sip2)) retval = FALSE;
return retval;
}
/*****************************************************************************
*
* Compare two AlignId to make sure all valnodes compare exactly
*
*****************************************************************************/
NLM_EXTERN Boolean SAM_AlignIdCompare(AlignId *saip1, AlignId *saip2)
{
SeqId *saip;
Boolean retval = TRUE;
if(saip1 == NULL || saip2 == NULL) return FALSE;
if(ValNodeLen(saip1) != ValNodeLen(saip2)) return FALSE;
for(saip = saip1; saip != NULL; saip = saip->next)
if(!SAM_AlignIdIn(saip, saip2)) retval = FALSE;
return retval;
}
/*****************************************************************************
*
* Looks for single AlignId, "a" in chain of AlignIds, "b"
*
*****************************************************************************/
NLM_EXTERN Boolean SAM_AlignIdIn (AlignId *a, AlignId *b)
{
AlignId *now;
Uint1 retval;
if (a == NULL)
return FALSE;
for (now =b; now != NULL; now = now -> next)
{
retval = SAM_AlignIdComp(a, now);
switch (retval)
{
case SIC_YES:
return TRUE;
case SIC_NO:
return FALSE;
}
}
return FALSE;
}
/*****************************************************************************
*
* Compares a to b and returns
*
* SIC_DIFF = different types, could not be compared
* SIC_NO = types could be compared, and ids are different
* SIC_YES = types could be compared, and ids are the same
*
*****************************************************************************/
NLM_EXTERN Uint1 SAM_AlignIdComp (AlignId *a, AlignId *b)
{
Uint1 choice;
if ((a == NULL) || (b == NULL))
return SIC_DIFF;
choice = a->choice;
if (choice != b->choice) return SIC_DIFF;
switch (choice)
{
case AlignId_id:
if (ObjectIdMatch((ObjectIdPtr)a->data.ptrvalue, (ObjectIdPtr)b->data.ptrvalue))
return SIC_YES;
else
return SIC_NO;
case AlignId_gi: /* gi */
if (a->data.intvalue == b->data.intvalue)
return SIC_YES;
else
return SIC_NO;
case AlignId_itemid: /* "permanent" itemid */
if (a->data.intvalue == b->data.intvalue)
return SIC_YES;
else
return SIC_NO;
default:
ErrPostEx(SEV_ERROR, 0,0, "AlignIdComp: unsupported type [%d]",
(int)choice);
return SIC_DIFF;
}
}
/*******************************************************
*
* duplicate a list of AlignId *
*
*******************************************************/
NLM_EXTERN AlignId * SAM_AlignIdDupList (AlignId *id_list)
{
SeqId *sip=NULL;
SeqId *sid;
for (sid = id_list; sid != NULL; sid = sid->next) {
ValNodeLink(&sip, SAM_AlignIdDup(sid));
}
return sip;
}
/*******************************************************
*
* Duplicates one AlignId
*
*******************************************************/
NLM_EXTERN AlignId * SAM_AlignIdDup (AlignId *oldid)
{
AlignId *newid = NULL;
if (oldid == NULL)
return oldid;
newid = ValNodeNew(NULL);
if (newid == NULL) return newid;
MemCopy(newid, oldid, sizeof(ValNode));
newid->next = NULL; /* not in chain */
switch (oldid->choice)
{
case AlignId_id:
newid->data.ptrvalue = ObjectIdDup((ObjectIdPtr)oldid->data.ptrvalue);
break;
case AlignId_itemid:
case AlignId_gi:
break;
}
return newid;
}
NLM_EXTERN ParaGPtr DDE_ParaGNew(ParaGPtr pParaG) {
/*----------------------------------------------------------------------------
* makes a copy of a ParaG.
*
* ParaG has many pointers. only allocates space for a full copy
* when the copy may differ from the original. otherwise, it's sufficient
* to copy the pointers.
*
* Full copies are needed for: ptxtList, and szEditSeq.
*
* returns pointer to new ParaG.
*---------------------------------------------------------------------------*/
ParaGPtr pParaGCopy;
ValNodePtr pValNode;
/* allocate space for the new ParaG */
pParaGCopy = MemNew(sizeof(ParaG));
ASSERT(pParaGCopy != NULL);
/* as default, make duplicate of the structure */
MemCopy(pParaGCopy, pParaG, sizeof(ParaG));
/* make new copy of the ptxtList linked list */
/* head points to new ValNode which points to a new copy of an MsaTxtDisp */
pParaGCopy->ptxtList = NULL;
if (pParaG->ptxtList != NULL) {
pParaGCopy->ptxtList =
ValNodeAddPointer(NULL, 0, UDV_MsaTxtDispNew(pParaG->ptxtList->data.ptrvalue));
}
/* do while there's another node to add */
pValNode = ValNodeFindNext(pParaG->ptxtList, pParaG->ptxtList, 0);
while (pValNode != NULL) {
/* make new node, point it to new MsaTxtDisp, add it to linked list */
ValNodeAddPointer(&(pParaGCopy->ptxtList), 0, UDV_MsaTxtDispNew(pValNode->data.ptrvalue));
/* get next node */
pValNode = ValNodeFindNext(pParaG->ptxtList, pValNode, 0);
}
/* copy the sequence in szEditSeq */
pParaGCopy->szEditSeq = MemNew(StringLen(pParaG->szEditSeq)+1);
ASSERT(pParaGCopy->szEditSeq != NULL);
StringCpy(pParaGCopy->szEditSeq, pParaG->szEditSeq);
/* return pointer to the new copy of ParaG */
return(pParaGCopy);
}
NLM_EXTERN ParaGPtr DDE_ParaGFree(ParaGPtr pParaG) {
/*----------------------------------------------------------------------------
* frees all memory allocated for a ParaG in DDE_ParaGNew().
* returns NULL for successful completion.
*---------------------------------------------------------------------------*/
/* free the whole ptxtList linked list */
/* each MsaTxtDisp is free'd here (no need to call UDV_MsaTxtDispFree()) */
if (pParaG->ptxtList != NULL) {
ValNodeFreeData(pParaG->ptxtList);
}
/* free the szEditSeq char array */
if (pParaG->szEditSeq != NULL) {
MemFree(pParaG->szEditSeq);
}
/* free the SeqId -- actually, it's not safe to free it */
/*
if (pParaG->sip != NULL) {
SeqIdFree(pParaG->sip);
}
*/
/* free the ParaG */
if (pParaG != NULL) {
MemFree(pParaG);
}
return(NULL);
}
NLM_EXTERN MsaParaGPopListPtr DDE_PopListNew(MsaParaGPopListPtr pPopList, Int4 TotalNumRows) {
/*----------------------------------------------------------------------------
* makes a copy of PopList.
*
* PopList has many pointers. only allocates space for a full copy
* when the copy may differ from the original. otherwise, it's sufficient
* to copy the pointers.
*
* Full copies are needed for: TableHead, RulerDescr, and entitiesTbl.
*
* returns pointer to new PopList.
*---------------------------------------------------------------------------*/
MsaParaGPopListPtr pPopListCopy;
Int4 i;
ValNodePtr pValNode;
DDVRulerDescrPtr pCopy;
/* allocate space for the new MsaParaGPopList */
pPopListCopy = MemNew(sizeof(MsaParaGPopList));
ASSERT(pPopListCopy != NULL);
/* as default, make duplicate of the structure */
MemCopy(pPopListCopy, pPopList, sizeof(MsaParaGPopList));
/* allocate space for array of ValNodePtr's */
pPopListCopy->TableHead = MemNew(TotalNumRows * sizeof(ValNodePtr));
ASSERT(pPopListCopy->TableHead != NULL);
/* for each ValNodePtr in TableHead */
for (i=0; i<TotalNumRows; i++) {
/* make new ValNode, point it to copy of ParaG, add it to linked list */
/* note: there is only one ParaG per row for DDE */
pPopListCopy->TableHead[i] =
ValNodeAddPointer(NULL, 0, DDE_ParaGNew(pPopList->TableHead[i]->data.ptrvalue));
}
/* create a new linked list of RulerDescr structures */
/* first node points to a copy of a DDVRulerDescr */
pCopy = MemNew(sizeof(DDVRulerDescr));
MemCopy(pCopy, pPopList->RulerDescr->data.ptrvalue, sizeof(DDVRulerDescr));
pPopListCopy->RulerDescr = ValNodeAddPointer(NULL, 0, pCopy);
/* do while there's another node to add */
pValNode = ValNodeFindNext(pPopList->RulerDescr, pPopList->RulerDescr, 0);
while (pValNode != NULL) {
/* make new node, point it to new RulerDescr, add it to linked list */
pCopy = MemNew(sizeof(DDVRulerDescr));
MemCopy(pCopy, pValNode->data.ptrvalue, sizeof(DDVRulerDescr));
ValNodeAddPointer(&(pPopListCopy->RulerDescr), 0, pCopy);
/* get next node */
pValNode = ValNodeFindNext(pPopList->RulerDescr, pValNode, 0);
}
/* make copy of array of bioseq ID's (entitiesTbl) */
pPopListCopy->entitiesTbl = MemNew(TotalNumRows * sizeof(Uint4));
ASSERT(pPopListCopy->entitiesTbl != NULL);
MemCopy(pPopListCopy->entitiesTbl, pPopList->entitiesTbl, TotalNumRows*sizeof(Uint4));
/* return pointer to the new copy of MsaParaGPopList */
return(pPopListCopy);
}
NLM_EXTERN MsaParaGPopListPtr DDE_PopListFree(MsaParaGPopListPtr pPopList, Int4 TotalNumRows) {
/*----------------------------------------------------------------------------
* frees all memory allocated for an MsaParaGPopList in DDE_PopListNew().
* returns NULL for successful completion.
*---------------------------------------------------------------------------*/
Int4 i;
ValNodePtr vnp;
/* for each ValNodePtr, free the linked list of ParaG's the ValNode points to, free the ValNode */
for (i=0; i<TotalNumRows; i++) {
vnp = pPopList->TableHead[i];
while (vnp != NULL) {
if (vnp->data.ptrvalue != NULL) {
DDE_ParaGFree(vnp->data.ptrvalue);
}
vnp = vnp->next;
}
if (pPopList->TableHead[i] != NULL) {
ValNodeFree(pPopList->TableHead[i]);
}
}
/* now free the array of ValNodePtr's (i.e. the TableHead array) */
ASSERT(pPopList->TableHead != NULL);
MemFree(pPopList->TableHead);
/* free the whole RulerDescr linked list */
/* each DDVRulerDescr is free'd here (no need to call DDV_RulerDescrFree()) */
if (pPopList->RulerDescr != NULL) {
ValNodeFreeData(pPopList->RulerDescr);
}
/* free the entitiesTbl array */
if (pPopList->entitiesTbl != NULL) {
MemFree(pPopList->entitiesTbl);
}
/* free the PopList */
ASSERT(pPopList != NULL);
MemFree(pPopList);
return(NULL);
}
NLM_EXTERN void DDE_Verify(DDE_InfoPtr pEditInfo) {
/*----------------------------------------------------------------------------
* verify function -- makes some checks to see that things are ok.
*---------------------------------------------------------------------------*/
#if defined(_DEBUG)
Int4 DispCoordStart, DispCoordStop, StopStop=-1;
Int4 i, NumRows, save_to;
ValNodePtr vnp, next_vnp, pRuler1, pRuler2;
MsaTxtDispPtr msap, next_msap;
ParaGPtr pgp;
/* check that the display coordinates in the MsaTxtDisp's are correct */
/* check that the last display coordinate stop is the same for each row */
/* check that the last display coordinate stop agrees with StopLetter */
NumRows = pEditInfo->TotalNumRows;
for (i=0; i<NumRows; i++) {
DispCoordStart = 0;
DispCoordStop = -1;
vnp = DDE_GetTxtListPtr(pEditInfo, i);
pgp = DDE_GetParaGPtr(pEditInfo, i);
while (vnp != NULL) {
msap = (MsaTxtDispPtr) vnp->data.ptrvalue;
DispCoordStart = DispCoordStop + 1;
DispCoordStop = DispCoordStart + (msap->to - msap->from);
if (DispCoordStop > StopStop) {
StopStop = DispCoordStop;
ASSERT(i == 0);
}
if (msap->IsGap) {
ASSERT(msap->from == DispCoordStart);
ASSERT(msap->to == DispCoordStop);
}
vnp = vnp->next;
}
ASSERT(DispCoordStop == StopStop);
ASSERT(DispCoordStop == pgp->StopLetter);
}
/* check that there are no gaps in the bioseq coords */
for (i=0; i<NumRows; i++) {
vnp = DDE_GetTxtListPtr(pEditInfo, i);
save_to = -1;
while (vnp != NULL) {
msap = (MsaTxtDispPtr) vnp->data.ptrvalue;
if (!msap->IsGap) {
if (save_to != -1) {
ASSERT(save_to+1 == msap->from);
}
save_to = msap->to;
}
vnp = vnp->next;
}
}
/* check that no 2 adjacent nodes need to be merged */
for (i=0; i<NumRows; i++) {
vnp = DDE_GetTxtListPtr(pEditInfo, i);
next_vnp = vnp->next;
while (next_vnp != NULL) {
msap = (MsaTxtDispPtr) vnp->data.ptrvalue;
next_msap = (MsaTxtDispPtr) next_vnp->data.ptrvalue;
/* make sure alignment and gap status of 2 adjacent nodes aren't identical */
ASSERT( ! ((msap->IsGap == next_msap->IsGap) && (msap->IsUnAligned == next_msap->IsUnAligned)));
vnp = next_vnp;
next_vnp = vnp->next;
}
}
/* remake the RulerDescr for row 0. this is the reference. */
/* use arbitrary align start of 0. it matters, but not here */
pRuler1 = DDE_ReMakeRulerForRow(pEditInfo->pPopList, 0, 0);
for (i=1; i<NumRows; i++) {
/* remake the RulerDescr for each row */
pRuler2 = DDE_ReMakeRulerForRow(pEditInfo->pPopList, i, 0);
/* make sure the 2 RulerDescr's match */
ASSERT(DDE_AreIdenticalRulers(pRuler1, pRuler2));
VERIFY(ValNodeFreeData(pRuler2) == NULL);
}
VERIFY(ValNodeFreeData(pRuler1) == NULL);
#endif
}
NLM_EXTERN Int4 DDE_GetFirstDisplayCoord(MsaParaGPopListPtr pPopList) {
/*----------------------------------------------------------------------------
* look at the RulerDescr linked list to get the first display coordinate
* for an aligned block. if there is no aligned region return -1.
*---------------------------------------------------------------------------*/
ValNodePtr vnp;
DDVRulerDescrPtr rdp;
vnp = pPopList->RulerDescr;
while (vnp != NULL) {
rdp = (DDVRulerDescrPtr) vnp->data.ptrvalue;
if (rdp->align_start != -1) {
return(rdp->disp_start);
}
vnp = vnp->next;
}
return(-1);
}
NLM_EXTERN Int4 DDE_GetFirstAlignIndex(MsaParaGPopListPtr pPopList) {
/*----------------------------------------------------------------------------
* look at the RulerDescr linked list to get the first alignment index.
* if there is no aligned region return -1.
*---------------------------------------------------------------------------*/
ValNodePtr vnp;
DDVRulerDescrPtr rdp;
vnp = pPopList->RulerDescr;
while (vnp != NULL) {
rdp = (DDVRulerDescrPtr) vnp->data.ptrvalue;
if (rdp->align_start != -1) {
return(rdp->align_start);
}
vnp = vnp->next;
}
return(-1);
}
NLM_EXTERN Boolean DDE_AreSimilarRulerDescrs(DDVRulerDescrPtr p1, DDVRulerDescrPtr p2) {
/*----------------------------------------------------------------------------
* compare 2 DDVRulerDescr's.
* return FALSE if only 1 is aligned.
* return FALSE if they're aligned, and the aligned starts and stops differ.
* return TRUE if they're unaligned.
*---------------------------------------------------------------------------*/
/* if only 1 is aligned return FALSE */
if (p1->bUnAligned != p2->bUnAligned) {
return(FALSE);
}
/* if they're both aligned, have same align starts, and are same length return TRUE */
if (!p1->bUnAligned) {
if (p1->align_start == p2->align_start) {
if ((p1->disp_stop - p1->disp_start) == (p2->disp_stop - p2->disp_start)) {
return(TRUE);
}
}
return(FALSE);
}
/* if they're both unaligned return TRUE */
else {
return(TRUE);
}
}
NLM_EXTERN Boolean DDE_AreIdenticalRulerDescrs(DDVRulerDescrPtr p1, DDVRulerDescrPtr p2) {
/*----------------------------------------------------------------------------
* compare 2 DDVRulerDescr's.
* return TRUE if they're identical.
*---------------------------------------------------------------------------*/
if ((p1->disp_start) == (p2->disp_start) &&
(p1->disp_stop) == (p2->disp_stop) &&
(p1->align_start) == (p2->align_start) &&
(p1->bUnAligned) == (p2->bUnAligned)) {
return(TRUE);
}
else {
return(FALSE);
}
}
NLM_EXTERN Boolean DDE_AreSimilarRulers(ValNodePtr pRuler1, ValNodePtr pRuler2,
Int4* pDispCoord1, Int4* pDispCoord2) {
/*----------------------------------------------------------------------------
* compare 2 linked lists of DDVRulerDescr's.
* return TRUE if THE ALIGNED SECTIONS are identical.
* if this function returns FALSE, Display Coordinates are returned.
* These coordinates indicate where the first mismatch between rulers
* was found.
*---------------------------------------------------------------------------*/
DDVRulerDescrPtr pNode1, pNode2;
ValNodePtr vnp1, vnp2;
vnp1 = pRuler1;
vnp2 = pRuler2;
/* for return of TRUE, give illegal display coordinates */
*pDispCoord1 = -1;
*pDispCoord2 = -1;
/* skip over the left tails, in case one ruler's tail is on and not the other's */
pNode1 = (DDVRulerDescrPtr) vnp1->data.ptrvalue;
pNode2 = (DDVRulerDescrPtr) vnp2->data.ptrvalue;
if (pNode1->bUnAligned) {
vnp1 = vnp1->next;
}
if (pNode2->bUnAligned) {
vnp2 = vnp2->next;
}
/* check each aligned node */
while (vnp1 != NULL) {
pNode1 = (DDVRulerDescrPtr) vnp1->data.ptrvalue;
pNode2 = (DDVRulerDescrPtr) vnp2->data.ptrvalue;
if (!DDE_AreSimilarRulerDescrs(pNode1, pNode2)) {
*pDispCoord1 = pNode1->disp_start;
*pDispCoord2 = pNode2->disp_start;
return(FALSE);
}
vnp1 = vnp1->next;
vnp2 = vnp2->next;
/* if just the right tail of ruler1 remains, return TRUE */
if ((vnp2 == NULL) && (vnp1 != NULL)) {
pNode1 = (DDVRulerDescrPtr) vnp1->data.ptrvalue;
if ((pNode1->bUnAligned) && (vnp1->next == NULL)) {
return(TRUE);
}
}
/* if just the right tail of ruler2 remains, return TRUE */
if ((vnp1 == NULL) && (vnp2 != NULL)) {
pNode2 = (DDVRulerDescrPtr) vnp2->data.ptrvalue;
if ((pNode2->bUnAligned) && (vnp2->next == NULL)) {
return(TRUE);
}
}
}
/* make sure they're the same length */
if (vnp2 == NULL) {
return(TRUE);
}
*pDispCoord1 = pNode1->disp_start;
*pDispCoord2 = pNode2->disp_start;
return(FALSE);
}
NLM_EXTERN Boolean DDE_AreIdenticalRulers(ValNodePtr pRuler1, ValNodePtr pRuler2) {
/*----------------------------------------------------------------------------
* compare 2 linked lists of DDVRulerDescr's.
* return TRUE if they're identical.
*---------------------------------------------------------------------------*/
DDVRulerDescrPtr pNode1, pNode2;
ValNodePtr vnp1, vnp2;
vnp1 = pRuler1;
vnp2 = pRuler2;
while (vnp1 != NULL) {
pNode1 = (DDVRulerDescrPtr) vnp1->data.ptrvalue;
pNode2 = (DDVRulerDescrPtr) vnp2->data.ptrvalue;
if (!DDE_AreIdenticalRulerDescrs(pNode1, pNode2)) {
return(FALSE);
}
vnp1 = vnp1->next;
vnp2 = vnp2->next;
}
/* make sure they're the same length */
if (vnp2 == NULL) {
return(TRUE);
}
return(FALSE);
}
NLM_EXTERN ValNodePtr DDE_ReMakeRuler(MsaParaGPopListPtr pPopList, Boolean Replace, Int4 AlignStart) {
/*----------------------------------------------------------------------------
* remake the RulerDescr linked list of pPopListEdit with an arbitrary Row.
* save pointer to head of linked-list, and return it.
* if Replace is TRUE, PopList's RulerDescr is replaced with the new one.
* if Replace is TRUE, AlignStart comes from the AlignStart in the
* current RulerDescr. Otherwise, AlignStart passed here is used.
*---------------------------------------------------------------------------*/
ValNodePtr pRulerHead;
/* if there's a valid AlignStart in the current RulerDescr, use it */
if (Replace) {
AlignStart = DDE_GetFirstAlignIndex(pPopList);
}
/* make a new linked list */
pRulerHead = DDE_ReMakeRulerForRow(pPopList, 0, AlignStart);
if (Replace) {
/* free the old RulerDescr linked list */
ValNodeFreeData(pPopList->RulerDescr);
/* save the new linked list */
pPopList->RulerDescr = pRulerHead;
}
return(pRulerHead);
}
NLM_EXTERN ValNodePtr DDE_ReMakeRulerForRow(MsaParaGPopListPtr pPopList, Int4 Row, Int4 AlignStart) {
/*----------------------------------------------------------------------------
* remake the RulerDescr linked list of pPopListEdit.
* the linked list is made by scanning through a single Row.
* return a pointer to the new linked-list.
* (the old one is NOT free'd here.)
*---------------------------------------------------------------------------*/
ValNodePtr head=NULL, vnp, pRulerLast=NULL, pRulerHead=NULL;
MsaTxtDispPtr msap;
Int4 DispStart=0, DispStop=-1;
Int4 AlignStop;
Boolean InAlignedRegion=FALSE;
ValNodePtr pg_vnp;
ParaGPtr pgp;
AlignStop = AlignStart - 1;
/* get the head of the linked-list of ParaG's */
pg_vnp = (ValNodePtr) (pPopList->TableHead[Row]);
while (pg_vnp != NULL) {
/* get head of linked-list of MsaTxtDisp's for Row */
pgp = (ParaGPtr) (pg_vnp->data.ptrvalue);
vnp = (ValNodePtr) (pgp->ptxtList);
if (head == NULL) {
head = vnp;
}
while (vnp != NULL) {
msap = (MsaTxtDispPtr) vnp->data.ptrvalue;
if (!msap->IsUnAligned) {
/* if entering an aligned region */
if (!InAlignedRegion) {
if (vnp != head) {
/* add unaligned RulerDescr to end of linked list */
pRulerLast = DDE_AddRulerDescrNode(pRulerLast, DispStart, DispStop, -1, TRUE, FALSE);
if (pRulerHead == NULL) {
pRulerHead = pRulerLast;
}
}
InAlignedRegion = TRUE;
/* adjust start when entering aligned region */
AlignStart = AlignStop + 1;
DispStart = DispStop + 1;
}
/* adjust stop every time node is aligned */
AlignStop = AlignStop + 1 + (msap->to - msap->from);
DispStop = DispStop + 1 + (msap->to - msap->from);
}
else {
/* if entering an unaligned region */
if (InAlignedRegion) {
/* add aligned RulerDescr to end of linked list */
pRulerLast = DDE_AddRulerDescrNode(pRulerLast, DispStart, DispStop, AlignStart, FALSE, FALSE);
if (pRulerHead == NULL) {
pRulerHead = pRulerLast;
}
/* adjust start when entering unaligned region */
DispStart = DispStop + 1;
}
InAlignedRegion = FALSE;
/* adjust stop every time node is unaligned */
DispStop = DispStop + 1 + (msap->to - msap->from);
}
vnp = vnp->next;
}
pg_vnp = pg_vnp->next;
}
/* add last RulerDescr node to linked list */
if (InAlignedRegion) {
pRulerLast = DDE_AddRulerDescrNode(pRulerLast, DispStart, DispStop, AlignStart, FALSE, FALSE);
}
else {
pRulerLast = DDE_AddRulerDescrNode(pRulerLast, DispStart, DispStop, -1, TRUE, FALSE);
}
/* if there's only 1 node, make it the head */
if (pRulerHead == NULL) {
pRulerHead = pRulerLast;
}
return(pRulerHead);
}
NLM_EXTERN DDE_InfoPtr DDE_New(MsaParaGPopListPtr pPopList, Int4 TotalNumRows) {
/*----------------------------------------------------------------------------
* allocates memory for a DDE_Info.
* a copy of PopList is made using DDE_PopListNew().
* The Visible and RowOrder arrays are also allocated and initialized.
*---------------------------------------------------------------------------*/
DDE_InfoPtr pEditInfo;
Int4 i, NumRows;
/* allocate space for the new DDE_Info */
pEditInfo = MemNew(sizeof(DDE_Info));
ASSERT(pEditInfo != NULL);
/* set total number of rows */
NumRows = pPopList->nBsp;
pEditInfo->TotalNumRows = TotalNumRows;
/* create a copy of PopList for editing */
pEditInfo->pPopList = DDE_PopListNew(pPopList, TotalNumRows);
/* allocate space for the Visible and RowOrder arrays */
pEditInfo->pVisible = MemNew(TotalNumRows*sizeof(Boolean));
pEditInfo->pRowOrder = MemNew(TotalNumRows*sizeof(Int4));
pEditInfo->pRowOrderLUT = MemNew(TotalNumRows*sizeof(Int4));
/* initialize the Visible array to all true */
/* memfill(dest, val, nBytes) */
ASSERT(sizeof(Boolean) == 1);
MemFill(pEditInfo->pVisible, TRUE, NumRows);
/* initialize the RowOrder array to 0,1,2,...N-1 */
/* initialize the LUT to match the initial RowOrder */
for (i=0; i<NumRows; i++) {
pEditInfo->pRowOrder[i] = i;
pEditInfo->pRowOrderLUT[i] = i;
}
/* return pointer to new DDE_Info object */
return(pEditInfo);
}
NLM_EXTERN DDE_InfoPtr DDE_Copy(DDE_InfoPtr pEditInfo, Int4 TotalNumRows) {
/*---------------------------------------------------------------------------------
* make a duplicate of pEditInfo.
*--------------------------------------------------------------------------------*/
DDE_InfoPtr pDup;
/* make a duplicate of pEditInfo */
pDup = DDE_New(pEditInfo->pPopList, TotalNumRows);
/* make copies of the arrays */
MemCopy(pDup->pVisible, pEditInfo->pVisible, TotalNumRows*sizeof(Boolean));
MemCopy(pDup->pRowOrder, pEditInfo->pRowOrder, TotalNumRows*sizeof(Int4));
MemCopy(pDup->pRowOrderLUT, pEditInfo->pRowOrderLUT, TotalNumRows*sizeof(Int4));
return(pDup);
}
NLM_EXTERN DDE_InfoPtr DDE_Free(DDE_InfoPtr pEditInfo, Int4 TotalNumRows) {
/*----------------------------------------------------------------------------
* frees all memory allocated for the DDE_Info.
* returns NULL for successful completion.
*---------------------------------------------------------------------------*/
DDE_PopListFree(pEditInfo->pPopList, TotalNumRows);
MemFree(pEditInfo->pVisible);
MemFree(pEditInfo->pRowOrder);
MemFree(pEditInfo->pRowOrderLUT);
MemFree(pEditInfo);
return(NULL);
}
NLM_EXTERN DDE_StackPtr DDE_NewStack(MsaParaGPopListPtr pPopList) {
/*----------------------------------------------------------------------------
* allocate memory for the DDE_Stack.
* allocate space for an array of DDE_Info pointers.
* init some vars.
* save a copy of pEditInfo as original, and one for editing.
*---------------------------------------------------------------------------*/
Int4 i;
DDE_StackPtr pStack;
/* allocate memory for new DDE_Stack */
pStack = MemNew(sizeof(DDE_Stack));
/* allocate memory for pointers to DDE_Info's, NULL them */
pStack->pArray = MemNew(sizeof(DDE_InfoPtr) * DDE_STACK_SIZE);
for (i=0; i<DDE_STACK_SIZE; i++) {
pStack->pArray[i] = NULL;
}
/* init some vars */
pStack->NumInStack = 0;
pStack->NumFromStart = 0;
pStack->StackIndex = 0;
pStack->StackMin = 0;
pStack->StackMax = 0;
/* make copies of pEditInfo */
pStack->pOrig = DDE_New(pPopList, pPopList->nBsp);
pStack->pEdit = DDE_New(pPopList, pPopList->nBsp);
/* add pStack->pEdit to the stack */
DDE_Add(pStack);
pStack->SomethingToSave = FALSE;
return(pStack);
}
NLM_EXTERN DDE_StackPtr DDE_FreeStack(DDE_StackPtr pStack) {
/*----------------------------------------------------------------------------
* free all memory allocated for the DDE_Stack.
*---------------------------------------------------------------------------*/
Int4 i, Index;
if(!pStack) return pStack;
/* free each DDE_Info that's been allocated */
Index = pStack->StackMin;
for (i=0; i<pStack->NumInStack; i++) {
/* free a DDE_Info */
ASSERT(pStack->pArray[Index] != NULL);
DDE_Free(pStack->pArray[Index], pStack->pOrig->TotalNumRows);
Index = ++Index % DDE_STACK_SIZE;
}
/* free the copy of the original and the one that was being edited */
DDE_Free(pStack->pOrig, pStack->pOrig->TotalNumRows);
/* let DDV free the one being edited */
/* DDE_Free(pStack->pEdit, pStack->pEdit->TotalNumRows); */
MemFree(pStack->pArray);
/* now free the stack */
return(MemFree(pStack));
}
NLM_EXTERN void DDE_GetOriginal(DDE_StackPtr pStack, Boolean Save) {
/*----------------------------------------------------------------------------
* free pStack->pEdit.
* put a copy of pStack->pOrig into pStack->pEdit.
* Save indicates if this edit is stored on the stack.
*---------------------------------------------------------------------------*/
/* free pStack->pEdit */
DDE_Free(pStack->pEdit, pStack->pEdit->TotalNumRows);
/* copy pStack->pOrig into pStack->pEdit */
pStack->pEdit = DDE_Copy(pStack->pOrig, pStack->pOrig->TotalNumRows);
/* add pStack->pEdit to the stack */
if (Save) {
DDE_Add(pStack);
}
return;
}
NLM_EXTERN Boolean DDE_Add(DDE_StackPtr pStack) {
/*----------------------------------------------------------------------------
* make a copy of pStack->pEdit and add it to the stack.
* if the stack is full, store new record on top of the oldest record.
* return TRUE if the stack is full.
*---------------------------------------------------------------------------*/
/* if there's something on the stack at current position, free it */
if (pStack->pArray[pStack->StackIndex] != NULL) {
DDE_Free(pStack->pArray[pStack->StackIndex], pStack->pOrig->TotalNumRows);
}
/* put a copy of pStack->pEdit on the stack */
pStack->pArray[pStack->StackIndex] = DDE_Copy(pStack->pEdit, pStack->pOrig->TotalNumRows);
/* set StackMax to this slot */
pStack->StackMax = pStack->StackIndex;
/* if oldest record was overwritten, inc StackMin */
if (pStack->NumFromStart == DDE_STACK_SIZE) {
pStack->StackMin = ++pStack->StackMin % DDE_STACK_SIZE;
}
/* calculate number on stack */
pStack->NumInStack = (pStack->StackMax - pStack->StackMin) + 1;
if (pStack->NumInStack < 1) {
pStack->NumInStack = pStack->NumInStack + DDE_STACK_SIZE;
}
pStack->NumFromStart = pStack->NumInStack;
/* point to next slot */
pStack->StackIndex = ++pStack->StackIndex % DDE_STACK_SIZE;
/* return TRUE if the stack is full */
if (pStack->NumInStack == DDE_STACK_SIZE) {
return(TRUE);
}
/* when something is added to stack, indicate there are edits to save */
pStack->SomethingToSave = TRUE;
return(FALSE);
}
NLM_EXTERN Boolean DDE_AtStartOfStack(DDE_StackPtr pStack) {
/*----------------------------------------------------------------------------
* return TRUE if can't back up further
*---------------------------------------------------------------------------*/
if (pStack->NumFromStart == 1) {
return(TRUE);
}
return(FALSE);
}
NLM_EXTERN Boolean DDE_AtEndOfStack(DDE_StackPtr pStack) {
/*----------------------------------------------------------------------------
* return TRUE if can't advance further
*---------------------------------------------------------------------------*/
if (pStack->NumFromStart == pStack->NumInStack) {
return(TRUE);
}
return(FALSE);
}
NLM_EXTERN Boolean DDE_Prev(DDE_StackPtr pStack) {
/*----------------------------------------------------------------------------
* free pStack->pEdit.
* make a copy of the previous DDE_Info in the stack.
* put it in pStack->pEdit.
* return TRUE if something was retrieved from the stack.
*---------------------------------------------------------------------------*/
/* return FALSE if can't back up further */
if (pStack->NumFromStart == 1) {
return(FALSE);
}
/* keep track of where we are in the stack */
pStack->NumFromStart--;
/* back up 2 because StackIndex is index of next free slot */
pStack->StackIndex -= 2;
if (pStack->StackIndex < 0) {
pStack->StackIndex = DDE_STACK_SIZE - ABS(pStack->StackIndex);
}
/* free pStack->pEdit */
DDE_Free(pStack->pEdit, pStack->pEdit->TotalNumRows);
/* put a copy of an item from the stack into pStack->pEdit */
pStack->pEdit = DDE_Copy(pStack->pArray[pStack->StackIndex], pStack->pOrig->TotalNumRows);
/* advance 1 to point to slot after the one that's retrieved */
pStack->StackIndex = ++pStack->StackIndex % DDE_STACK_SIZE;
/* when the position on the stack changes, indicate there are edits to save */
pStack->SomethingToSave = TRUE;
return(TRUE);
}
NLM_EXTERN Boolean DDE_Next(DDE_StackPtr pStack) {
/*----------------------------------------------------------------------------
* free pStack->pEdit.
* make a copy of the next DDE_Info in the stack.
* put it in pStack->pEdit.
* return TRUE if something was retrieved from the stack.
*---------------------------------------------------------------------------*/
/* return FALSE if can't advance further */
if (pStack->NumFromStart == pStack->NumInStack) {
return(FALSE);
}
/* keep track of where we are in the stack */
pStack->NumFromStart++;
/* free pStack->pEdit */
DDE_Free(pStack->pEdit, pStack->pEdit->TotalNumRows);
/* put a copy of an item from the stack into pStack->pEdit */
pStack->pEdit = DDE_Copy(pStack->pArray[pStack->StackIndex], pStack->pOrig->TotalNumRows);
/* advance 1 to point to slot after the one that's retrieved */
pStack->StackIndex = ++pStack->StackIndex % DDE_STACK_SIZE;
/* when the position on the stack changes, indicate there are edits to save */
pStack->SomethingToSave = TRUE;
return(TRUE);
}
NLM_EXTERN Int4 DDE_GetRowOrder(DDE_InfoPtr pEditInfo, Int4 Row) {
/*----------------------------------------------------------------------------
*
* look through RowOrder for Row.
* return the index.
*
*---------------------------------------------------------------------------*/
Int4 NumRows, i;
NumRows = pEditInfo->TotalNumRows;
ASSERT(Row < NumRows);
for (i=0; i<NumRows; i++) {
if (pEditInfo->pRowOrder[i] == Row) {
return(i);
}
}
ASSERT(FALSE); /* should never get here */
return(-1);
}
NLM_EXTERN Int4 DDE_GetDisplayRow(DDE_InfoPtr pEditInfo, Int4 Row) {
/*----------------------------------------------------------------------------
*
* look through RowOrderLUT for Row.
* return the index.
*
*---------------------------------------------------------------------------*/
Int4 NumRows, i;
NumRows = pEditInfo->TotalNumRows;
ASSERT(Row < NumRows);
for (i=0; i<NumRows; i++) {
if (pEditInfo->pRowOrderLUT[i] == Row) {
return(i);
}
}
ASSERT(FALSE); /* should never get here */
return(-1);
}
NLM_EXTERN Boolean DDE_IsBefore(DDE_InfoPtr pEditInfo, Int4 Row1, Int4 Row2) {
/*----------------------------------------------------------------------------
*
* look through RowOrder to find if Row1 is before Row2
* return TRUE if it is, FALSE if it's not.
*
*---------------------------------------------------------------------------*/
Int4 NumRows, i;
/* get total number of rows */
NumRows = pEditInfo->TotalNumRows;
ASSERT(Row1 < NumRows);
ASSERT(Row2 < NumRows);
/* look through RowOrder, if Row1 is found first return TRUE */
for (i=0; i<NumRows; i++) {
if (pEditInfo->pRowOrder[i] == Row1) {
return(TRUE);
}
if (pEditInfo->pRowOrder[i] == Row2) {
return(FALSE);
}
}
ASSERT(FALSE); /* should never get here */
return(FALSE);
}
NLM_EXTERN Int4 DDE_GetInsertRow(DDE_InfoPtr pEditInfo, Int4 Row) {
/*----------------------------------------------------------------------------
*
* look through RowOrderLUT to find where to put Row
* warning: this is O(N**2) and potentially slow for large number of rows
*
*---------------------------------------------------------------------------*/
Int4 NumRows, i;
/* get number of visible rows */
NumRows = DDE_GetNumVisibleRows(pEditInfo);
/* if no visible rows, then insert at top */
if (NumRows == 0) {
return(0);
}
/* look through RowOrderLUT for first row that Row should preceed */
for (i=0; i<NumRows; i++) {
if (DDE_IsBefore(pEditInfo, Row, pEditInfo->pRowOrderLUT[i])) {
return(i);
}
}
return(NumRows);
}
NLM_EXTERN Int4 DDE_GetNumVisibleRows(DDE_InfoPtr pEditInfo) {
/*----------------------------------------------------------------------------
*
* count up the number of visible rows using the Visible array
*
*---------------------------------------------------------------------------*/
Int4 NumRows, i, Cnt;
NumRows = pEditInfo->TotalNumRows;
Cnt = 0;
for (i=0; i<NumRows; i++) {
if (pEditInfo->pVisible[i]) {
Cnt++;
}
}
return(Cnt);
}
NLM_EXTERN Boolean DDE_HideNewRow(DDE_StackPtr pStack, Int4 Row, Boolean Save) {
/*----------------------------------------------------------------------------
* Hide Row, where Row refers to the new row order.
* Save indicates if this edit is stored on the stack.
*---------------------------------------------------------------------------*/
Boolean RetVal;
RetVal = DDE_HideRow(pStack, pStack->pEdit->pRowOrder[Row], FALSE);
/* add pStack->pEdit to the stack */
if (Save) {
DDE_Add(pStack);
}
return(RetVal);
}
NLM_EXTERN Boolean DDE_ShowNewRow(DDE_StackPtr pStack, Int4 Row, Boolean Save) {
/*----------------------------------------------------------------------------
* Show Row, where Row refers to the new row order.
* Save indicates if this edit is stored on the stack.
*---------------------------------------------------------------------------*/
Boolean RetVal;
RetVal = DDE_ShowRow(pStack, pStack->pEdit->pRowOrder[Row], FALSE);
/* add pStack->pEdit to the stack */
if (Save) {
DDE_Add(pStack);
}
return(RetVal);
}
NLM_EXTERN Boolean DDE_HideAllRows(DDE_StackPtr pStack, Boolean Save) {
/*----------------------------------------------------------------------------
* hide all rows
*---------------------------------------------------------------------------*/
Int4 i, NumRows;
NumRows = pStack->pEdit->TotalNumRows;
for (i=0; i<NumRows; i++) {
DDE_HideRow(pStack, i, FALSE);
}
if (Save) {
DDE_Add(pStack);
}
return(TRUE);
}
NLM_EXTERN Boolean DDE_ShowAllRows(DDE_StackPtr pStack, Boolean Save) {
/*----------------------------------------------------------------------------
* show all rows
*---------------------------------------------------------------------------*/
Int4 i, NumRows;
NumRows = pStack->pEdit->TotalNumRows;
for (i=0; i<NumRows; i++) {
DDE_ShowRow(pStack, i, FALSE);
}
if (Save) {
DDE_Add(pStack);
}
return(TRUE);
}
NLM_EXTERN Boolean DDE_HideRow(DDE_StackPtr pStack, Int4 Row, Boolean Save) {
/*----------------------------------------------------------------------------
* Make Row invisible, where Row is the original row number (0-based).
* Save indicates if this edit is stored on the stack.
* return(True) for successful completion.
* return(False) if row is already hidden.
*---------------------------------------------------------------------------*/
Int4 i, NumRows, TotalRows, DisplayRow, tmp1, tmp2;
Int4 NumRowsHigher, StartRow;
MsaParaGPopListPtr pPopList;
ValNodePtr tmp3;
/* shorthand for the MsaParaGPopList being edited */
pPopList = pStack->pEdit->pPopList;
/* make sure not trying to index past array dimension */
TotalRows = pStack->pOrig->pPopList->nBsp;
ASSERT(Row < TotalRows);
/* get number of rows currently displayed */
/* if no rows are displayed return FALSE */
NumRows = pPopList->nBsp;
if (NumRows < 1) {
return(FALSE);
}
/* if Row's already hidden return FALSE */
/* otherwise, make it hidden */
if (!pStack->pEdit->pVisible[Row]) {
return(FALSE);
}
pStack->pEdit->pVisible[Row] = FALSE;
/* adjust the LUT, TableHead pointers, and entitiesTbl */
/* for Row disappearing and each row after it moving 1 higher */
/* save the info at the bottom of the table for later use */
DisplayRow = DDE_GetDisplayRow(pStack->pEdit, Row);
tmp1 = pStack->pEdit->pRowOrderLUT[DisplayRow];
tmp2 = pPopList->entitiesTbl[DisplayRow];
tmp3 = pPopList->TableHead[DisplayRow];
NumRowsHigher = ((ParaGPtr)(pPopList->TableHead[DisplayRow]->data.ptrvalue))->nLines;
StartRow = ((ParaGPtr)(pPopList->TableHead[DisplayRow]->data.ptrvalue))->StartLine;
for (i=DisplayRow; i<TotalRows-1; i++) {
pStack->pEdit->pRowOrderLUT[i] = pStack->pEdit->pRowOrderLUT[i+1];
pPopList->entitiesTbl[i] = pPopList->entitiesTbl[i+1];
pPopList->TableHead[i] = pPopList->TableHead[i+1];
StartRow = ((ParaGPtr)(pPopList->TableHead[i]->data.ptrvalue))->StartLine;
((ParaGPtr)(pPopList->TableHead[i]->data.ptrvalue))->StartLine -= NumRowsHigher;
}
i = TotalRows-1;
pStack->pEdit->pRowOrderLUT[i] = tmp1;
pPopList->entitiesTbl[i] = tmp2;
pPopList->TableHead[i] = tmp3;
((ParaGPtr)(pPopList->TableHead[i]->data.ptrvalue))->StartLine = StartRow;
/* decrement number of rows currently displayed */
(pPopList->nBsp)--;
if (Save) {
DDE_Add(pStack);
}
return(TRUE);
}
NLM_EXTERN Boolean DDE_ShowRow(DDE_StackPtr pStack, Int4 Row, Boolean Save) {
/*----------------------------------------------------------------------------
* Make Row visible, where Row is the original row number (0-based).
* Save indicates if this edit is stored on the stack.
* return(True) for successful completion.
* return(False) if row is already visible.
*---------------------------------------------------------------------------*/
Int4 i, NumRows, HiRow, LowRow, tmp1, tmp2;
Int4 NumRowsLower, StartRow;
MsaParaGPopListPtr pPopList;
ValNodePtr tmp3;
/* shorthand for the MsaParaGPopList being edited */
pPopList = pStack->pEdit->pPopList;
/* get total number of rows, including invisible ones */
NumRows = pStack->pOrig->pPopList->nBsp;
/* if Row's already visible return FALSE */
if (pStack->pEdit->pVisible[Row]) {
return(FALSE);
}
/* get where row is inserted, and where it currently sits */
LowRow = DDE_GetInsertRow(pStack->pEdit, Row);
HiRow = DDE_GetDisplayRow(pStack->pEdit, Row);
ASSERT(LowRow <= HiRow);
/* make it visible */
pStack->pEdit->pVisible[Row] = TRUE;
/* adjust the LUT, TableHead pointers, and entitiesTbl */
/* for Row reappearing and each row after it moving 1 lower */
tmp1 = pStack->pEdit->pRowOrderLUT[HiRow];
tmp2 = pPopList->entitiesTbl[HiRow];
tmp3 = pPopList->TableHead[HiRow];
NumRowsLower = ((ParaGPtr)(pPopList->TableHead[HiRow]->data.ptrvalue))->nLines;
StartRow = ((ParaGPtr)(pPopList->TableHead[HiRow]->data.ptrvalue))->StartLine;
for (i=HiRow; i>LowRow; i--) {
pStack->pEdit->pRowOrderLUT[i] = pStack->pEdit->pRowOrderLUT[i-1];
pPopList->entitiesTbl[i] = pPopList->entitiesTbl[i-1];
pPopList->TableHead[i] = pPopList->TableHead[i-1];
StartRow = ((ParaGPtr)(pPopList->TableHead[i]->data.ptrvalue))->StartLine;
((ParaGPtr)(pPopList->TableHead[i]->data.ptrvalue))->StartLine += NumRowsLower;
}
pStack->pEdit->pRowOrderLUT[LowRow] = tmp1;
pPopList->entitiesTbl[LowRow] = tmp2;
pPopList->TableHead[LowRow] = tmp3;
((ParaGPtr)(pPopList->TableHead[LowRow]->data.ptrvalue))->StartLine = StartRow;
/* increment number of rows currently displayed */
(pPopList->nBsp)++;
if (Save) {
DDE_Add(pStack);
}
return(TRUE);
}
NLM_EXTERN Boolean DDE_MoveRow(DDE_StackPtr pStack, Int4 From, Int4 To, Boolean Save) {
/*----------------------------------------------------------------------------
* if From > To: Move row From to just before row To.
* if From < To: Move row From to just after row To.
* this is done for symmetry, and also so the top and bottom rows
* are accesible in one move.
* From and To are NOT original row numbers!
* From and To are the order in which the rows are displayed (0-based)
* (this is a convenience, because that's the way the fn will be used)
*
* Save indicates if this edit is stored on the stack.
*---------------------------------------------------------------------------*/
Int4 FromOrig, ToOrig;
Int4 i, FromIndx, ToIndx, tmp;
/* get the original row numbers */
FromOrig = pStack->pEdit->pRowOrderLUT[From];
ToOrig = pStack->pEdit->pRowOrderLUT[To];
/* re-arrange the rows */
FromIndx = DDE_GetRowOrder(pStack->pEdit, FromOrig);
ToIndx = DDE_GetRowOrder(pStack->pEdit, ToOrig);
tmp = pStack->pEdit->pRowOrder[FromIndx];
if (FromIndx > ToIndx) {
for (i=FromIndx; i>ToIndx; i--) {
pStack->pEdit->pRowOrder[i] = pStack->pEdit->pRowOrder[i-1];
}
}
else {
for (i=FromIndx; i<ToIndx; i++) {
pStack->pEdit->pRowOrder[i] = pStack->pEdit->pRowOrder[i+1];
}
}
pStack->pEdit->pRowOrder[ToIndx] = tmp;
/* hide the row that's moving, then show it. */
/* it gets inserted in the right spot. */
DDE_HideRow(pStack, FromOrig, FALSE);
DDE_ShowRow(pStack, FromOrig, FALSE);
/* add pStack->pEdit to the stack */
if (Save) {
DDE_Add(pStack);
}
return(TRUE);
}
NLM_EXTERN Boolean DDE_RestoreRowOrder(DDE_StackPtr pStack, Boolean Save) {
/*----------------------------------------------------------------------------
* restore rows in PopListEdit to their original order.
* Save indicates if this edit is stored on the stack.
*---------------------------------------------------------------------------*/
Int4 i, NumRows;
Boolean* pVisibleCopy;
/* make a copy of the visible array */
NumRows = pStack->pEdit->TotalNumRows;
ASSERT(sizeof(Boolean) == 1);
pVisibleCopy = MemNew(NumRows);
ASSERT(pVisibleCopy != NULL);
MemCopy(pVisibleCopy, pStack->pEdit->pVisible, NumRows);
/* hide all rows */
for (i=0; i<NumRows; i++) {
DDE_HideRow(pStack, i, FALSE);
}
/* re-do the row order */
for (i=0; i<NumRows; i++) {
pStack->pEdit->pRowOrder[i] = i;
}
/* display the visible rows -- they get inserted in the right spot */
for (i=0; i<NumRows; i++) {
if (pVisibleCopy[i]) {
DDE_ShowRow(pStack, i, FALSE);
}
}
VERIFY(MemFree(pVisibleCopy) == NULL);
/* add pStack->pEdit to the stack */
if (Save) {
DDE_Add(pStack);
}
return(TRUE);
}
NLM_EXTERN Boolean DDE_ShiftRow(DDE_StackPtr pStack, Int4 Row, Int4 NumChars, Boolean Save,
Boolean ShiftBack) {
/*----------------------------------------------------------------------------
* shift Row by NumChars.
* shift right for NumChars > 0, left for NumChars < 0.
* Save indicates if this edit is stored on the stack.
* ShiftBack is true except when this function is called recursively.
*---------------------------------------------------------------------------*/
Int4 i, Mag;
ValNodePtr ptxtList, prev_vnp=NULL;
Boolean GapsAdded=FALSE, Shifted=FALSE;
Boolean RightSide;
Boolean* pNoGaps;
Boolean NoGaps;
if (NumChars == 0) {
return(FALSE);
}
/* if the first column is aligned */
if (DDE_FirstColumnIsAligned(pStack->pEdit)) {
/* pad with unaligned gaps on left */
/* it's easier to code this way -- I strip them later */
DDE_AddGapToStartOfAllRows(pStack->pEdit, FALSE);
GapsAdded = TRUE;
}
Mag = ABS(NumChars);
for (i=0; i<Mag; i++) {
/* get pointer to linked list of MsaTxtDisp's */
ptxtList = DDE_GetTxtListPtr(pStack->pEdit, Row);
if (NumChars > 0) {
DDE_ShiftRowRight1(pStack->pEdit, Row, ptxtList, prev_vnp, TRUE);
}
else {
/* I have a bug when the aligned block is 1 char wide and */
/* the row is shifted left. e.g. aBc should become abC. */
/* But first, the B is shifted left becoming lowercase. */
/* So, when the C's shifted left it doesn't know to become */
/* uppercase. to combat this, I check how wide the block is. */
/* if it's one char, I do a shift right boundary right, then */
/* the shift row, then a shift right boundary left. */
if (DDE_GetBlockWidth(pStack->pEdit, 0) == 1) {
DDE_ShiftRightBoundaryRight1(pStack->pEdit, 0);
Shifted = TRUE;
}
DDE_ShiftRowLeft1(pStack->pEdit, Row, ptxtList, TRUE);
if (Shifted) {
DDE_ShiftRightBoundaryLeft1(pStack->pEdit, 0);
}
}
}
/* here's where I remove those unwanted unaligned gaps */
if (GapsAdded) {
DDE_RemoveGapFromStartOfAllRows(pStack->pEdit, FALSE);
}
if (ShiftBack) {
DDE_CleanEnds(pStack->pEdit);
DDE_Verify(pStack->pEdit);
}
pNoGaps = (Boolean*) GetAppProperty("dde_nogaps");
if (pNoGaps == NULL) {NoGaps = TRUE;}
else {NoGaps = *pNoGaps;}
if (NoGaps) {
if (ShiftBack) {
RightSide = NumChars < 0 ? TRUE : FALSE;
DDE_RemoveAlignedGapsFromEndOfRow(pStack, Row, RightSide);
DDE_CleanEnds(pStack->pEdit);
DDE_Verify(pStack->pEdit);
}
}
/* add pStack->pEdit to the stack */
if (Save) {
DDE_Add(pStack);
}
return(TRUE);
}
NLM_EXTERN ParaGPtr DDE_GetParaGPtr2(MsaParaGPopListPtr pPopList, Int4 Row) {
/*----------------------------------------------------------------------------
* return pointer to ParaG
*---------------------------------------------------------------------------*/
ValNodePtr pg_vnp;
ParaGPtr pgp;
pg_vnp = (ValNodePtr) (pPopList->TableHead[Row]);
pgp = (ParaGPtr) (pg_vnp->data.ptrvalue);
return(pgp);
}
NLM_EXTERN ParaGPtr DDE_GetParaGPtr(DDE_InfoPtr pEditInfo, Int4 Row) {
/*----------------------------------------------------------------------------
* return pointer to ParaG
*---------------------------------------------------------------------------*/
ValNodePtr pg_vnp;
ParaGPtr pgp;
pg_vnp = (ValNodePtr) (pEditInfo->pPopList->TableHead[Row]);
pgp = (ParaGPtr) (pg_vnp->data.ptrvalue);
return(pgp);
}
NLM_EXTERN ValNodePtr DDE_GetTxtListPtr2(MsaParaGPopListPtr pPopList, Int4 Row) {
/*----------------------------------------------------------------------------
* return pointer to linked-list of MsaTxtDisp structures
*---------------------------------------------------------------------------*/
ValNodePtr pg_vnp, msa_vnp;
ParaGPtr pgp;
pg_vnp = (ValNodePtr) (pPopList->TableHead[Row]);
pgp = (ParaGPtr) (pg_vnp->data.ptrvalue);
msa_vnp = (ValNodePtr) (pgp->ptxtList);
return(msa_vnp);
}
NLM_EXTERN ValNodePtr DDE_GetTxtListPtr(DDE_InfoPtr pEditInfo, Int4 Row) {
/*----------------------------------------------------------------------------
* return pointer to linked-list of MsaTxtDisp structures
*---------------------------------------------------------------------------*/
ValNodePtr pg_vnp, msa_vnp;
ParaGPtr pgp;
pg_vnp = (ValNodePtr) (pEditInfo->pPopList->TableHead[Row]);
pgp = (ParaGPtr) (pg_vnp->data.ptrvalue);
msa_vnp = (ValNodePtr) (pgp->ptxtList);
return(msa_vnp);
}
NLM_EXTERN void DDE_SetTxtListPtr(DDE_InfoPtr pEditInfo, Int4 Row, ValNodePtr vnp) {
/*----------------------------------------------------------------------------
* set pointer to linked-list of MsaTxtDisp structures
*---------------------------------------------------------------------------*/
ValNodePtr pg_vnp;
ParaGPtr pgp;
pg_vnp = (ValNodePtr) (pEditInfo->pPopList->TableHead[Row]);
pgp = (ParaGPtr) (pg_vnp->data.ptrvalue);
pgp->ptxtList = vnp;
}
NLM_EXTERN Boolean DDE_ShiftRowLeft1(DDE_InfoPtr pEditInfo, Int4 Row,
ValNodePtr ptxtList, Boolean OkToAddGaps) {
/*----------------------------------------------------------------------------
* shift Row left by 1 char.
* return value indicates if gaps were inserted to start of all rows.
*---------------------------------------------------------------------------*/
ValNodePtr last_vnp;
MsaTxtDispPtr msap, last_msap;
Boolean RetVal = FALSE;
Boolean IsDeleteChar, IsUnAligned;
/* display_ParaG_content(pEditInfo->pPopListEdit, 2000); */
if (ptxtList == NULL) {
return(FALSE);
}
/* get first node in portion being shifted left */
msap = (MsaTxtDispPtr) ptxtList->data.ptrvalue;
/* check for a left-aligned aligned-gap */
IsDeleteChar = DDE_IsLeftAlignedGapList(ptxtList, FALSE);
/* if ok to add gaps to start of all rows */
if (OkToAddGaps) {
/* if first node is not a gap */
if (!msap->IsGap) {
/* and there's no left-aligned aligned-gap */
if (!IsDeleteChar) {
RetVal = TRUE;
/* add an unaligned gap to the start of all rows */
DDE_AddGapToStartOfAllRows(pEditInfo, TRUE);
/* need to get pointer again because ptxtList changed */
ptxtList = DDE_GetTxtListPtr(pEditInfo, Row);
/* check for a left-aligned aligned-gap again */
IsDeleteChar = DDE_IsLeftAlignedGapList(ptxtList, FALSE);
}
}
}
/* before merging and adding nodes, find if the last char is aligned or not */
last_vnp = DDE_GetLastVNP(ptxtList);
last_msap = (MsaTxtDispPtr) last_vnp->data.ptrvalue;
IsUnAligned = last_msap->IsUnAligned;
/* merge and add nodes after the gap, in preparation for shift left */
DDE_LeftMergeAndAddNodeList(ptxtList, IsDeleteChar);
/* shift all nodes after the gap left by one, insert gap on right */
DDE_ShiftLeftList(pEditInfo, Row, ptxtList, IsDeleteChar, IsUnAligned);
/* if there's a left-aligned aligned-gap to delete then delete it. */
if (IsDeleteChar) {
DDE_IsLeftAlignedGapList(ptxtList, TRUE);
}
return(RetVal);
}
NLM_EXTERN Boolean DDE_ShiftRowRight1(DDE_InfoPtr pEditInfo, Int4 Row, ValNodePtr ptxtList,
ValNodePtr prev_vnp, Boolean InsertLeftGap) {
/*----------------------------------------------------------------------------
* shift Row right by 1 char.
* return value indicates if gaps were added to end of all rows.
*---------------------------------------------------------------------------*/
ValNodePtr stop_vnp;
MsaTxtDispPtr msap;
Boolean IsUnAligned, IsDeleteChar, RetVal=FALSE;
/* check for a right-aligned aligned-gap */
IsDeleteChar = DDE_IsRightAlignedGapList(&ptxtList, FALSE);
/* if last node is not a gap */
msap = (MsaTxtDispPtr) DDE_GetLastVNP(ptxtList)->data.ptrvalue;
if (!msap->IsGap) {
/* and there's no right-aligned aligned-gap */
if (!IsDeleteChar) {
/* add an unaligned gap to the end of all rows */
DDE_AddGapToEndOfAllRows(pEditInfo, TRUE);
RetVal = TRUE;
}
}
/* before merging and adding nodes, find if the 1st char is aligned or not */
msap = (MsaTxtDispPtr) (ptxtList->data.ptrvalue);
IsUnAligned = msap->IsUnAligned;
/* merge and add nodes before the gap, in preparation for shift right */
/* if there's a new first node save it or point to it */
if (DDE_RightMergeAndAddNodeList(&ptxtList)) {
if (prev_vnp == NULL) {
DDE_SetTxtListPtr(pEditInfo, Row, ptxtList);
}
else {
prev_vnp->next = ptxtList;
}
}
/* shift all nodes before the gap right by one. */
/* if there's a new first node save it or point to it */
if (IsDeleteChar) { stop_vnp = (ValNodePtr) -1; } /* stop shifting right at right-aligned gap */
else { stop_vnp = (ValNodePtr) 1; } /* shift right until the end */
if (DDE_ShiftRightList(&ptxtList, stop_vnp, IsUnAligned, InsertLeftGap, TRUE)) {
if (prev_vnp == NULL) {
DDE_SetTxtListPtr(pEditInfo, Row, ptxtList);
}
else {
prev_vnp->next = ptxtList;
}
}
if (IsDeleteChar) {
/* remove the first right-aligned aligned-gap */
DDE_IsRightAlignedGapList(&ptxtList, TRUE);
}
return(RetVal);
}
NLM_EXTERN Int4 DDE_GetGapIndex(ValNodePtr ptxtList, ValNodePtr pMidtxtList, Boolean Before) {
/*----------------------------------------------------------------------------
* get the display coordinate for a gap that would be inserted in the
* linked list of MsaTxtDisp's.
*
* ptxtList is the head of the linked list.
* pMidtxtList is a node in the middle of the linked list.
* Before tells whether the node goes before or after pMidtxtList.
*
* return the index of the new gap.
*---------------------------------------------------------------------------*/
Int4 DispCoordStart=0, DispCoordStop=-1;
MsaTxtDispPtr msap;
ValNodePtr vnp;
vnp = ptxtList;
while (vnp != NULL) {
msap = (MsaTxtDispPtr) vnp->data.ptrvalue;
DispCoordStart = DispCoordStop + 1;
DispCoordStop = DispCoordStart + (msap->to - msap->from);
if (vnp == pMidtxtList) {
break;
}
vnp = vnp->next;
}
return(Before ? DispCoordStart : DispCoordStop + 1);
}
NLM_EXTERN ValNodePtr DDE_GetMsaTxtNodeGivenBioseqCoord(MsaParaGPopListPtr pPopList,
Int4 BioseqCoord, Int4 Row) {
/*----------------------------------------------------------------------------
* looked through linked list of ParaG's and linked list of MsaTxtDisp's
* for the MsaTxtDisp that contains BioseqCoord.
*---------------------------------------------------------------------------*/
ValNodePtr pg_vnp, msa_vnp;
ParaGPtr pgp;
MsaTxtDispPtr msap;
pg_vnp = (ValNodePtr) (pPopList->TableHead[Row]);
while (pg_vnp != NULL) {
pgp = (ParaGPtr) (pg_vnp->data.ptrvalue);
msa_vnp = (ValNodePtr) (pgp->ptxtList);
while (msa_vnp != NULL) {
msap = (MsaTxtDispPtr) msa_vnp->data.ptrvalue;
if (!msap->IsGap) {
if ((BioseqCoord >= msap->from) && (BioseqCoord <= msap->to)) {
return(msa_vnp);
}
}
msa_vnp = msa_vnp->next;
}
pg_vnp = pg_vnp->next;
}
return(NULL);
}
NLM_EXTERN ValNodePtr DDE_GetMsaTxtNode2(ValNodePtr pg_head, Int4 DispCoord, Int4 PNTR pOffset) {
/*----------------------------------------------------------------------------
* v.similar to DDE_GetMsaTxtNode, except...
*
* the ValNodePtr passed to this routine is to a linked-list of ParaG's.
* each ParaG contains a linked-list of MsaTxtDisp's.
*
* Basically, this routine accomplishes the same as DDE_GetMsaTxtNode,
* except it's more general, and can handle the case when a sequence is
* more than 1 ParaG long.
*---------------------------------------------------------------------------*/
ValNodePtr vnp, msa_vnp, msa_node;
ParaGPtr pgp;
vnp = pg_head;
while (vnp != NULL) {
pgp = (ParaGPtr) (vnp->data.ptrvalue);
msa_vnp = (ValNodePtr) (pgp->ptxtList);
msa_node = DDE_GetMsaTxtNode(msa_vnp, DispCoord, pOffset);
if (*pOffset != -1) {
return(msa_node);
}
vnp = vnp->next;
}
return(NULL);
}
NLM_EXTERN ValNodePtr DDE_GetMsaTxtNode(ValNodePtr head, Int4 DispCoord, Int4 PNTR pOffset) {
/*----------------------------------------------------------------------------
* head is a pointer to a linked list of MsaTxtDisp's.
* this function finds the node of the linked list, and the index
* into that node, where the DispCoord char is found.
*
* returns ValNodePtr to a node of the linked list.
* returns Offset which tells which char in the node (zero-based).
*
* if the DispCoord is less than 0,
* returns a ValNodePtr = head and Offset = -1
* if the DispCoord is greater than the last DispCoordStop,
* returns a NULL ValNodePtr and Offset = -1
*---------------------------------------------------------------------------*/
ValNodePtr vnp;
MsaTxtDispPtr msap;
Int4 DispCoordStart=0, DispCoordStop=-1;
/* DispCoord too small */
if (DispCoord < 0) {
*pOffset = -1;
return(head);
}
/* walk through linked list, summing coords */
vnp = head;
while (vnp != NULL) {
msap = (MsaTxtDispPtr) vnp->data.ptrvalue;
DispCoordStart = DispCoordStop + 1;
DispCoordStop = DispCoordStart + (msap->to - msap->from);
/* when DispCoord is in range */
if ((DispCoord >= DispCoordStart) && (DispCoord <= DispCoordStop)) {
/* return offset and node pointer */
*pOffset = DispCoord - DispCoordStart;
return(vnp);
}
vnp = vnp->next;
}
/* DispCoord not found in linked list */
*pOffset = -1;
return(NULL);
}
NLM_EXTERN ValNodePtr DDE_GetPrevVNP(ValNodePtr head, ValNodePtr curr) {
/*----------------------------------------------------------------------------
* get vnp prior to curr.
* return NULL if curr node is the first.
* return NULL if curr is not found in the list.
*---------------------------------------------------------------------------*/
ValNodePtr vnp;
if (head == curr) {
return(NULL);
}
vnp = head;
while (vnp != NULL) {
if (vnp->next == curr) {
return(vnp);
}
vnp = vnp->next;
}
return(NULL);
}
NLM_EXTERN void DDE_IncDisplayCoords(ValNodePtr vnp) {
/*----------------------------------------------------------------------------
* increment display coordinates for the linked list of MsaTxtDisp's
*---------------------------------------------------------------------------*/
MsaTxtDispPtr msap;
while (vnp != NULL) {
msap = (MsaTxtDispPtr) vnp->data.ptrvalue;
/* only increment display coords, not bioseq coords */
if (msap->IsGap) {
msap->from++;
msap->to++;
}
vnp = vnp->next;
}
return;
}
NLM_EXTERN void DDE_DecDisplayCoords(ValNodePtr vnp) {
/*----------------------------------------------------------------------------
* decrement display coordinates for the linked list of MsaTxtDisp's
*---------------------------------------------------------------------------*/
MsaTxtDispPtr msap;
while (vnp != NULL) {
msap = (MsaTxtDispPtr) vnp->data.ptrvalue;
/* only decrement display coords, not bioseq coords */
if (msap->IsGap) {
msap->from--;
msap->to--;
}
vnp = vnp->next;
}
return;
}
NLM_EXTERN ValNodePtr DDE_AddGapAndSplitNode(ValNodePtr pInsertNode, Int4 Offset, Int4 Pos) {
/*----------------------------------------------------------------------------
* add a gap in the middle of the InsertNode.
*
* pInsertNode is the node that will be split.
* Offset tells where InsertNode is split.
* Pos is the DisplayCoord of the new gap.
*---------------------------------------------------------------------------*/
ValNodePtr vnp;
MsaTxtDispPtr msap;
Int4 to_save;
msap = (MsaTxtDispPtr) pInsertNode->data.ptrvalue;
ASSERT(!msap->IsUnAligned && !msap->IsGap);
/* make sure node is split after the first char and before the last */
ASSERT(Offset > 0);
ASSERT(Offset <= (msap->to - msap->from));
to_save = msap->to;
/* shrink InsertNode to the part before the offset */
msap->to = msap->from + Offset - 1;
/* add a gap node after the non-gap node */
vnp = DDE_AddMsaTxtNode(pInsertNode, Pos, Pos, TRUE, FALSE, FALSE);
/* here's the 2nd half of the split node */
vnp = DDE_AddMsaTxtNode(vnp, msap->to+1, to_save, FALSE, FALSE, FALSE);
/* return pointer to 2nd half of split node to handle shift right of this node */
return(vnp);
}
NLM_EXTERN ValNodePtr DDE_AddAGap(DDE_InfoPtr pEditInfo, Int4 Row,
ValNodePtr ptxtList, Boolean Before, Boolean ForceUnAligned) {
/*----------------------------------------------------------------------------
* add a gap somewhere in the linked list of MsaTxtDisp's.
*
* if ForceUnAligned is TRUE and adding a gap after the last node or before the
* first, add an unaligned gap. if ForceUnAligned is FALSE and adding a
* gap after the last node or before the first, the alignment of the new node
* will agree with the first or last node. all other gaps must be aligned.
*
* ptxtList is the node in the list where the gap is added.
* Before tells if the gap should be added just before or after this node.
* pEditInfo and Row tell which row in the pPopListEdit is affected.
* This is needed so that if the head pointer of the row is changed
* it can be saved.
*
* return a pointer to the next node whose numbering must be incremented.
*---------------------------------------------------------------------------*/
Int4 GapIndex;
ValNodePtr head, tail, prev, next, return_vnp;
MsaTxtDispPtr msap, prev_msap, next_msap;
/* get the head and tail of the linked-list */
head = DDE_GetTxtListPtr(pEditInfo, Row);
tail = DDE_GetLastVNP(head);
msap = (MsaTxtDispPtr) ptxtList->data.ptrvalue;
/* if adding a gap before the first node */
if ((ptxtList == head) && (Before)) {
if (ForceUnAligned) {
if ((msap->IsGap) && (msap->IsUnAligned)) {
/* make unaligned gap one longer */
msap->to++;
}
else {
/* insert unaligned gap */
head = DDE_AddMsaTxtNode(head, 0, 0, TRUE, TRUE, TRUE);
DDE_SetTxtListPtr(pEditInfo, Row, head);
}
}
else {
if (msap->IsGap) {
/* make gap one longer */
msap->to++;
}
else {
/* insert gap */
head = DDE_AddMsaTxtNode(head, 0, 0, TRUE, msap->IsUnAligned, TRUE);
DDE_SetTxtListPtr(pEditInfo, Row, head);
}
}
return_vnp = head->next;
}
/* if adding a gap after the last node */
else if ((ptxtList == tail) && (!Before)) {
if (ForceUnAligned) {
if ((msap->IsGap) && (msap->IsUnAligned)) {
/* make unaligned gap one longer */
msap->to++;
}
else {
/* insert unaligned gap */
GapIndex = DDE_GetGapIndex(head, tail, FALSE);
tail = DDE_AddMsaTxtNode(tail, GapIndex, GapIndex, TRUE, TRUE, FALSE);
}
}
else {
if (msap->IsGap) {
/* make gap one longer */
msap->to++;
}
else {
/* insert gap */
GapIndex = DDE_GetGapIndex(head, tail, FALSE);
tail = DDE_AddMsaTxtNode(tail, GapIndex, GapIndex, TRUE, msap->IsUnAligned, FALSE);
}
}
return_vnp = tail->next;
ASSERT(return_vnp == NULL);
}
/* if this node is an aligned gap, make it one longer */
else if ((msap->IsGap) && (!msap->IsUnAligned)) {
msap->to++;
/* if the next node is unaligned or non-existent */
next = ptxtList->next;
if (next != NULL) {
next_msap = (MsaTxtDispPtr) next->data.ptrvalue;
}
if ((next == NULL) || (next_msap->IsUnAligned)) {
/* this is ugly but I can't think of a better way */
/* shift this node left one char and return a pointer to this */
/* node rather than the next. then shiftrowright1 will shift */
/* a char from this aligned gap into the unaligned region */
msap->to--;
msap->from--;
return_vnp = ptxtList;
}
else {
return_vnp = ptxtList->next;
}
}
/* if adding before this node */
else if (Before) {
/* if prev node is aligned gap make it one longer */
prev = DDE_GetPrevVNP(head, ptxtList);
prev_msap = (MsaTxtDispPtr) prev->data.ptrvalue;
if ((!prev_msap->IsUnAligned) && (prev_msap->IsGap)) {
prev_msap->to++;
}
/* otherwise if either node is aligned, insert an aligned gap */
else if ((!msap->IsUnAligned) || (!prev_msap->IsUnAligned)) {
GapIndex = DDE_GetGapIndex(head, ptxtList, TRUE);
prev->next = DDE_AddMsaTxtNode(ptxtList, GapIndex, GapIndex, TRUE, FALSE, TRUE);
}
return_vnp = ptxtList;
}
/* if adding after this node */
else {
/* if next node is aligned gap make it one longer */
next = ptxtList->next;
next_msap = (MsaTxtDispPtr) next->data.ptrvalue;
if ((!next_msap->IsUnAligned) && (next_msap->IsGap)) {
next_msap->to++;
}
/* otherwise if either node is aligned, insert an aligned gap */
else if ((!msap->IsUnAligned) || (!next_msap->IsUnAligned)) {
GapIndex = DDE_GetGapIndex(head, ptxtList, FALSE);
next = DDE_AddMsaTxtNode(ptxtList, GapIndex, GapIndex, TRUE, FALSE, FALSE);
}
return_vnp = next->next;
}
return(return_vnp);
}
NLM_EXTERN ValNodePtr DDE_RemoveAGap(DDE_InfoPtr pEditInfo, Int4 Row, ValNodePtr remove_vnp,
Boolean* pNodeDeleted) {
/*----------------------------------------------------------------------------
* Remove a gap from the remove_vnp.
* return pointer to the next node whose numbering must be decremented.
* return NodeDeleted if removing a gap removes a node.
*---------------------------------------------------------------------------*/
ValNodePtr head, prev_vnp=NULL, next_vnp, return_vnp;
MsaTxtDispPtr msap, prev_msap, next_msap;
*pNodeDeleted = FALSE;
/* get head of list and pointers to previous and next nodes */
head = DDE_GetTxtListPtr(pEditInfo, Row);
prev_vnp = DDE_GetPrevVNP(head, remove_vnp);
next_vnp = remove_vnp->next;
/* shrink remove-node by 1 */
msap = (MsaTxtDispPtr) remove_vnp->data.ptrvalue;
ASSERT(!msap->IsUnAligned && msap->IsGap);
msap->to--;
return_vnp = remove_vnp->next;
/* if it's empty free it */
if (msap->from > msap->to) {
MemFree(msap);
/* if first node is freed, save new head of list */
if (remove_vnp == head) {
DDE_SetTxtListPtr(pEditInfo, Row, remove_vnp->next);
}
/* otherwise remove the node from the linked list */
else {
ASSERT(prev_vnp != NULL);
prev_vnp->next = remove_vnp->next;
}
/* and remove the node */
MemFree(remove_vnp);
*pNodeDeleted = TRUE;
}
/* if remove node was freed, try merging flanking nodes */
if (*pNodeDeleted) {
/* if there were nodes on either side of the remove-node */
if ((prev_vnp != NULL) && (next_vnp != NULL)) {
/* if they have the same alignment and gap settings */
prev_msap = (MsaTxtDispPtr) prev_vnp->data.ptrvalue;
next_msap = (MsaTxtDispPtr) next_vnp->data.ptrvalue;
if ((prev_msap->IsUnAligned == next_msap->IsUnAligned) &&
(prev_msap->IsGap == next_msap->IsGap)) {
/* join the 2 nodes */
if (prev_msap->IsGap) {
/* for gap nodes, need to shift node right of remove-node left by 1 */
prev_msap->to = next_msap->to-1;
}
else {
prev_msap->to = next_msap->to;
}
/* remove next_msap from the linked list */
MemFree(next_msap);
prev_vnp->next = next_vnp->next;
MemFree(next_vnp);
return_vnp = prev_vnp->next;
}
}
}
return(return_vnp);
}
NLM_EXTERN Boolean DDE_RemoveGap(DDE_StackPtr pStack, Int4 Row, Int4 Pos, Boolean Save) {
/*----------------------------------------------------------------------------
* Remove a gap in Row at positon Pos
* Save indicates if this edit is stored on the stack.
*---------------------------------------------------------------------------*/
Int4 Offset;
ValNodePtr head, remove_vnp, next_vnp, vnp;
MsaTxtDispPtr msap;
Boolean dummy, NodeDeleted, IsUnAligned, NodeAdded=FALSE;
/* get node and offset, where gap is deleted */
head = DDE_GetTxtListPtr(pStack->pEdit, Row);
remove_vnp = DDE_GetMsaTxtNode(head, Pos, &Offset);
if (remove_vnp == NULL) {return(FALSE);}
msap = (MsaTxtDispPtr) remove_vnp->data.ptrvalue;
/* make sure node is aligned gap */
if (msap->IsUnAligned || !msap->IsGap) {
return(FALSE);
}
/* determine if last node is unaligned */
vnp = DDE_GetLastVNP(head);
msap = (MsaTxtDispPtr) vnp->data.ptrvalue;
IsUnAligned = msap->IsUnAligned;
/* remove gap */
next_vnp = DDE_RemoveAGap(pStack->pEdit, Row, remove_vnp, &NodeDeleted);
/* shift row (to right of gap) left */
head = DDE_GetTxtListPtr(pStack->pEdit, Row);
vnp = DDE_GetPrevVNP(head, next_vnp);
if (vnp != NULL) {
msap = (MsaTxtDispPtr) vnp->data.ptrvalue;
if (!msap->IsUnAligned) {
if (DDE_LeftMerge(vnp)) {
next_vnp = vnp->next;
}
else if (DDE_LeftAddNode(vnp, &dummy)) {
NodeAdded = TRUE;
next_vnp = vnp->next;
}
}
}
if (next_vnp == NULL) {
/* this makes sure a gap is shifted in on the right */
/* even when there's nothing more to shift left */
DDE_ShiftLeftList(pStack->pEdit, Row, next_vnp, FALSE, IsUnAligned);
}
else {
if (NodeAdded) {
/* don't do the same node twice */
DDE_LeftMergeAndAddNodeList(next_vnp->next, FALSE);
}
else {
DDE_LeftMergeAndAddNodeList(next_vnp, FALSE);
}
DDE_ShiftLeftList(pStack->pEdit, Row, next_vnp, FALSE, IsUnAligned);
}
DDE_CleanEnds(pStack->pEdit);
DDE_Verify(pStack->pEdit);
/* add pStack->pEdit to the stack */
if (Save) {
DDE_Add(pStack);
}
return(TRUE);
}
NLM_EXTERN Boolean DDE_InsertGap(DDE_StackPtr pStack, Int4 Row, Int4 Pos, Boolean Save) {
/*----------------------------------------------------------------------------
* add a gap to Row just before the display coordinate given by Pos.
* Save indicates if this edit is stored on the stack.
*---------------------------------------------------------------------------*/
Int4 Offset;
ValNodePtr ptxtList, pInsertNode, next_vnp, prev_vnp;
MsaTxtDispPtr msap;
/* get node and offset, where gap is inserted */
ptxtList = DDE_GetTxtListPtr(pStack->pEdit, Row);
pInsertNode = DDE_GetMsaTxtNode(ptxtList, Pos, &Offset);
if (pInsertNode == NULL) {return(FALSE);}
msap = (MsaTxtDispPtr) pInsertNode->data.ptrvalue;
if (msap->IsUnAligned) {
/* no gap inserted into an unaligned region */
return(FALSE);
}
if ((Offset == 0) || (msap->IsGap)) {
/* insert gap prior to an insert node or prior to an aligned gap node */
next_vnp = DDE_AddAGap(pStack->pEdit, Row, pInsertNode, TRUE, FALSE);
}
else {
/* insert a gap in an aligned non-gap node */
next_vnp = DDE_AddGapAndSplitNode(pInsertNode, Offset, Pos);
}
/* shift row to right of gap right */
prev_vnp = DDE_GetPrevVNP(ptxtList, next_vnp);
DDE_ShiftRowRight1(pStack->pEdit, Row, next_vnp, prev_vnp, FALSE);
DDE_Verify(pStack->pEdit);
/* add pStack->pEdit to the stack */
if (Save) {
DDE_Add(pStack);
}
return(TRUE);
}
NLM_EXTERN Boolean DDE_CleanEnds(DDE_InfoPtr pEditInfo) {
/*----------------------------------------------------------------------------
* remove all columns of unaligned gaps from the start and end of the rows.
* return TRUE if any columns were removed.
*---------------------------------------------------------------------------*/
Boolean RetVal=FALSE;
while (DDE_RemoveGapFromStartOfAllRows(pEditInfo, FALSE)) {
RetVal = TRUE;
}
while (DDE_RemoveGapFromEndOfAllRows(pEditInfo, FALSE)) {
RetVal = TRUE;
}
if (RetVal) {
DDE_ReMakeRuler(pEditInfo->pPopList, TRUE, -1);
}
return(RetVal);
}
NLM_EXTERN Boolean DDE_RemoveGapFromStartOfAllRows(DDE_InfoPtr pEditInfo, Boolean ReMakeRuler) {
/*----------------------------------------------------------------------------
* if every row starts with an unaligned gap, remove 1 from each row.
* return TRUE if the removal is performed.
*---------------------------------------------------------------------------*/
Int4 i, NumRows;
ParaGPtr pgp;
ValNodePtr vnp, new_vnp;
MsaTxtDispPtr msap;
NumRows = pEditInfo->TotalNumRows;
/* check if each row starts with unaligned gap */
for (i=0; i<NumRows; i++) {
vnp = DDE_GetTxtListPtr(pEditInfo, i);
msap = (MsaTxtDispPtr) vnp->data.ptrvalue;
if ((!msap->IsUnAligned) || (!msap->IsGap)) {
/* return FALSE if any row starts with aligned or non-gap char */
return(FALSE);
}
}
/* decrement number of columns */
pEditInfo->pPopList->LengthAli--;
/* shift each row left */
for (i=0; i<NumRows; i++) {
vnp = DDE_GetTxtListPtr(pEditInfo, i);
msap = (MsaTxtDispPtr) vnp->data.ptrvalue;
/* remove 1st gap, free node if it's empty */
msap->to--;
if (msap->from > msap->to) {
MemFree(msap);
new_vnp = vnp->next;
DDE_SetTxtListPtr(pEditInfo, i, new_vnp);
MemFree(vnp);
vnp = new_vnp;
}
else {
vnp = vnp->next;
}
DDE_DecDisplayCoords(vnp);
/* decrement number of columns in this row */
pgp = DDE_GetParaGPtr(pEditInfo, i);
pgp->StopLetter--;
}
if (ReMakeRuler) {
DDE_ReMakeRuler(pEditInfo->pPopList, TRUE, -1);
}
return(TRUE);
}
NLM_EXTERN Boolean DDE_RemoveGapFromEndOfAllRows(DDE_InfoPtr pEditInfo, Boolean ReMakeRuler) {
/*----------------------------------------------------------------------------
* if every row ends with an unaligned gap, remove 1 from each row.
* return TRUE if the removal is performed.
*---------------------------------------------------------------------------*/
Int4 i, NumRows;
ParaGPtr pgp;
ValNodePtr vnp, last_vnp, prev_vnp;
MsaTxtDispPtr last_msap;
NumRows = pEditInfo->TotalNumRows;
/* check if each row ends with unaligned gap */
for (i=0; i<NumRows; i++) {
vnp = DDE_GetTxtListPtr(pEditInfo, i);
last_vnp = DDE_GetLastVNP(vnp);
last_msap = (MsaTxtDispPtr) last_vnp->data.ptrvalue;
if ((!last_msap->IsUnAligned) || (!last_msap->IsGap)) {
/* return FALSE if any row starts with aligned or non-gap char */
return(FALSE);
}
}
/* decrement number of columns */
pEditInfo->pPopList->LengthAli--;
/* remove last char of each row */
for (i=0; i<NumRows; i++) {
vnp = DDE_GetTxtListPtr(pEditInfo, i);
last_vnp = DDE_GetLastVNP(vnp);
prev_vnp = DDE_GetPrevVNP(vnp, last_vnp);
last_msap = (MsaTxtDispPtr) last_vnp->data.ptrvalue;
last_msap->to--;
if (last_msap->from > last_msap->to) {
MemFree(last_msap);
prev_vnp->next = NULL;
MemFree(last_vnp);
}
/* decrement number of columns in this row */
pgp = DDE_GetParaGPtr(pEditInfo, i);
pgp->StopLetter--;
}
if (ReMakeRuler) {
DDE_ReMakeRuler(pEditInfo->pPopList, TRUE, -1);
}
return(TRUE);
}
NLM_EXTERN void DDE_AddGapToStartOfAllRows(DDE_InfoPtr pEditInfo, Boolean ReMakeRuler) {
/*----------------------------------------------------------------------------
* add a gap to the start of all rows
*---------------------------------------------------------------------------*/
Int4 i, NumRows;
ValNodePtr ptxtList, vnp;
ParaGPtr pgp;
/* get total number of rows, increment number of columns */
NumRows = pEditInfo->TotalNumRows;
pEditInfo->pPopList->LengthAli++;
/* for each row */
for (i=0; i<NumRows; i++) {
/* add a gap before the 1st node */
ptxtList = DDE_GetTxtListPtr(pEditInfo, i);
vnp = DDE_AddAGap(pEditInfo, i, ptxtList, TRUE, TRUE);
/* adjust the numbering on the rest of the nodes */
DDE_IncDisplayCoords(vnp);
/* increment number of columns in this row */
pgp = DDE_GetParaGPtr(pEditInfo, i);
pgp->StopLetter++;
}
if (ReMakeRuler) {
DDE_ReMakeRuler(pEditInfo->pPopList, TRUE, -1);
}
return;
}
NLM_EXTERN void DDE_AddGapToEndOfAllRows(DDE_InfoPtr pEditInfo, Boolean ReMakeRuler) {
/*----------------------------------------------------------------------------
* add a gap to the end of all rows.
*---------------------------------------------------------------------------*/
Int4 i, NumRows;
ValNodePtr ptxtList, last_vnp, vnp;
ParaGPtr pgp;
/* get total number of rows, increment number of columns */
NumRows = pEditInfo->TotalNumRows;
pEditInfo->pPopList->LengthAli++;
/* for each row */
for (i=0; i<NumRows; i++) {
/* add a gap after the last node */
ptxtList = DDE_GetTxtListPtr(pEditInfo, i);
last_vnp = DDE_GetLastVNP(ptxtList);
vnp = DDE_AddAGap(pEditInfo, i, last_vnp, FALSE, TRUE);
ASSERT(vnp == NULL);
/* increment number of columns in this row */
pgp = DDE_GetParaGPtr(pEditInfo, i);
pgp->StopLetter++;
}
if (ReMakeRuler) {
DDE_ReMakeRuler(pEditInfo->pPopList, TRUE, -1);
}
return;
}
NLM_EXTERN ValNodePtr DDE_GetLastVNP(ValNodePtr vnp) {
/*----------------------------------------------------------------------------
* return pointer to last node.
*---------------------------------------------------------------------------*/
ValNodePtr last_vnp;
while (vnp != NULL) {
last_vnp = vnp;
vnp = vnp->next;
}
return(last_vnp);
}
NLM_EXTERN Int4 DDE_GetNumResidues(MsaParaGPopListPtr pPopList, Int4 Row) {
/*----------------------------------------------------------------------------
* get the number of residues in Row of pPopList.
*---------------------------------------------------------------------------*/
ValNodePtr vnp;
MsaTxtDispPtr msap;
Int4 from=-1, to;
vnp = DDE_GetTxtListPtr2(pPopList, Row);
while (vnp != NULL) {
msap = (MsaTxtDispPtr) vnp->data.ptrvalue;
if (!msap->IsGap) {
if (from == -1) {
from = msap->from;
}
to = msap->to;
}
vnp = vnp->next;
}
return((to-from) + 1);
}
NLM_EXTERN ValNodePtr DDE_AddRulerDescrNode(ValNodePtr pRulerDescr,
Int4 DispStart, Int4 DispStop, Int4 AlignStart,
Boolean IsUnAligned, Boolean Before) {
/*----------------------------------------------------------------------------
* Insert a new ValNode into the linked list.
* The new ValNode points to a DDVRulerDescr.
* If the linked list is empty (pRulerDescr is NULL), start the linked list.
* If Before is TRUE, insert the node prior to pRulerDescr,
* Otherwise, insert the node after the first node in pRulerDescr.
*
* returns a pointer to the new ValNode.
*---------------------------------------------------------------------------*/
ValNodePtr new_vnp, temp_vnp;
DDVRulerDescrPtr new_rdp;
new_rdp = MemNew(sizeof(DDVRulerDescr));
new_rdp->disp_start = DispStart;
new_rdp->disp_stop = DispStop;
new_rdp->align_start = AlignStart;
new_rdp->bUnAligned = IsUnAligned;
new_vnp = ValNodeNew(NULL);
new_vnp->choice = 0;
new_vnp->data.ptrvalue = new_rdp;
if (Before || (pRulerDescr == NULL)) {
new_vnp->next = pRulerDescr;
}
else {
temp_vnp = pRulerDescr->next;
pRulerDescr->next = new_vnp;
new_vnp->next = temp_vnp;
}
return(new_vnp);
}
NLM_EXTERN void DDE_SetTextStyle(MsaTxtDispPtr msap) {
/*----------------------------------------------------------------------------
* set the TextStyle of this node, based on its IsGap and IsUnAligned flags.
*---------------------------------------------------------------------------*/
if (msap->IsGap) {
if (msap->IsUnAligned) {
msap->TextStyle = MSA_TXT_STYLE_UAGAP;
}
else {
msap->TextStyle = MSA_TXT_STYLE_GAP;
}
}
else {
msap->TextStyle = MSA_TXT_STYLE_SEQ;
}
return;
}
NLM_EXTERN ValNodePtr DDE_AddMsaTxtNode(ValNodePtr ptxtList, Int4 from, Int4 to,
Boolean IsGap, Boolean IsUnAligned, Boolean Before) {
/*----------------------------------------------------------------------------
* Insert a new ValNode into the linked list.
* The new ValNode points to an MsaTxtDisp.
* If Before is TRUE, insert the node prior to pxtList,
* Otherwise, insert the node after the first node in ptxtList.
*
* returns a pointer to the new ValNode.
*---------------------------------------------------------------------------*/
ValNodePtr new_vnp, temp_vnp;
MsaTxtDispPtr new_msap, msap;
msap = (MsaTxtDispPtr) ptxtList->data.ptrvalue;
new_msap = UDV_MsaTxtDispNew(msap);
new_msap->from = from;
new_msap->to = to;
new_msap->IsGap = IsGap;
new_msap->IsUnAligned = IsUnAligned;
DDE_SetTextStyle(new_msap);
new_vnp = ValNodeNew(NULL);
new_vnp->choice = 0;
new_vnp->data.ptrvalue = new_msap;
if (Before) {
new_vnp->next = ptxtList;
}
else {
temp_vnp = ptxtList->next;
ptxtList->next = new_vnp;
new_vnp->next = temp_vnp;
}
return(new_vnp);
}
NLM_EXTERN Boolean DDE_IsLeftAlignedGap(ValNodePtr vnp) {
/*----------------------------------------------------------------------------
* check if this node is unaligned, followed by an aligned-gap node.
*
* this-node next-node
* --------- ---------
* u -
* ~ -
*
* where u = unaligned, A = aligned
* ~ = unaligned-gap, - = aligned-gap
*
* returns TRUE if it is.
*---------------------------------------------------------------------------*/
ValNodePtr next_vnp;
MsaTxtDispPtr msap, next_msap;
next_vnp = vnp->next;
if (next_vnp == NULL) {return(FALSE);}
msap = (MsaTxtDispPtr) vnp->data.ptrvalue;
next_msap = (MsaTxtDispPtr) next_vnp->data.ptrvalue;
if (msap->IsUnAligned) {
if ((!next_msap->IsUnAligned) && (next_msap->IsGap)) {
return(TRUE);
}
}
return(FALSE);
}
NLM_EXTERN Boolean DDE_IsTerminalRightAlignedGap(ValNodePtr vnp) {
/*----------------------------------------------------------------------------
* if this node is an aligned-gap node and it terminates the linked list
* returns TRUE.
*---------------------------------------------------------------------------*/
MsaTxtDispPtr msap;
msap = (MsaTxtDispPtr) vnp->data.ptrvalue;
if ((!msap->IsUnAligned) && (msap->IsGap)) {
if (vnp->next == NULL) {
return(TRUE);
}
}
return(FALSE);
}
NLM_EXTERN Boolean DDE_IsRightAlignedGap(ValNodePtr vnp) {
/*----------------------------------------------------------------------------
* check if this node is an aligned-gap node, followed by an unaligned node.
*
* this-node next-node
* --------- ---------
* - u
* - ~
*
* where u = unaligned, A = aligned
* ~ = unaligned-gap, - = aligned-gap
*
* returns TRUE if it is.
*---------------------------------------------------------------------------*/
ValNodePtr next_vnp;
MsaTxtDispPtr msap, next_msap;
next_vnp = vnp->next;
if (next_vnp == NULL) {return(FALSE);}
msap = (MsaTxtDispPtr) vnp->data.ptrvalue;
next_msap = (MsaTxtDispPtr) next_vnp->data.ptrvalue;
if (next_msap->IsUnAligned) {
if ((!msap->IsUnAligned) && (msap->IsGap)) {
return(TRUE);
}
}
return(FALSE);
}
NLM_EXTERN Boolean DDE_IsLeftAlignedGapList(ValNodePtr vnp, Boolean DeleteIt) {
/*----------------------------------------------------------------------------
* search linked-list of MsaTxt's for an unaligned node followed by
* an aligned gap node. If DeleteIt is true, remove the first char from
* the aligned gap node. Remove the node if it becomes empty.
*
* returns TRUE if such a pair of nodes is found in the linked-list.
*---------------------------------------------------------------------------*/
ValNodePtr next_vnp;
MsaTxtDispPtr next_msap;
ASSERT(vnp != NULL);
next_vnp = vnp->next;
if (next_vnp == NULL) {return(FALSE);}
/* look through each node for left-aligned gap */
while (next_vnp != NULL) {
if (DDE_IsLeftAlignedGap(vnp)) {
if (DeleteIt) {
/* delete a char from the next node */
next_msap = (MsaTxtDispPtr) next_vnp->data.ptrvalue;
next_msap->from++;
/* if it's now empty, delete the node */
if (next_msap->from > next_msap->to) {
MemFree(next_msap);
vnp->next = next_vnp->next;
MemFree(next_vnp);
}
}
return(TRUE);
}
vnp = next_vnp;
next_vnp = vnp->next;
}
/* none found -- return FALSE */
return(FALSE);
}
NLM_EXTERN Boolean DDE_IsRightAlignedGapList(ValNodePtr PNTR vnpp, Boolean DeleteIt) {
/*----------------------------------------------------------------------------
* search linked-list of MsaTxt's for an aligned gap node followed by an
* unaligned node. If DeleteIt is true, remove a char from the aligned gap
* node. Remove the node if it becomes empty.
*
* returns TRUE if such a pair of nodes is found in the linked-list.
* returns modified head of list if first node was replaced.
*---------------------------------------------------------------------------*/
ValNodePtr vnp, next_vnp, prev_vnp;
MsaTxtDispPtr msap;
vnp = *vnpp;
prev_vnp = NULL;
if (vnp == NULL) {return(FALSE);}
next_vnp = vnp->next;
if (next_vnp == NULL) {return(FALSE);}
/* look through each node for aligned-gap followed by an unaligned node */
while (next_vnp != NULL) {
if (DDE_IsRightAlignedGap(vnp)) {
if (DeleteIt) {
/* delete a char from the aligned node */
msap = (MsaTxtDispPtr) vnp->data.ptrvalue;
msap->from++;
/* if it's now empty, delete the node */
if (msap->from > msap->to) {
MemFree(msap);
if (prev_vnp == NULL) {
/* this handles the extremely remote case that the first node is deleted */
*vnpp = vnp->next;
}
else {
/* point the previous node to the next one */
prev_vnp->next = vnp->next;
}
MemFree(vnp);
}
}
return(TRUE);
}
prev_vnp = vnp;
vnp = next_vnp;
next_vnp = vnp->next;
}
/* none found -- return FALSE */
return(FALSE);
}
NLM_EXTERN void DDE_MergeNodesLists(DDE_InfoPtr pEditInfo) {
/*----------------------------------------------------------------------------
* look through the linked-lists of MsaTxtDisp's seeing if nodes can be merged.
*---------------------------------------------------------------------------*/
ValNodePtr vnp;
Int4 i, NumRows;
/* get number of rows */
NumRows = pEditInfo->TotalNumRows;
/* for each row */
for (i=0; i<NumRows; i++) {
/* get head of linked list */
vnp = DDE_GetTxtListPtr(pEditInfo, i);
/* check through each node for merger with the one that follows */
while (vnp != NULL) {
if (!DDE_MergeNodes(vnp)) {
/* only advance to next node when modes are not merged */
/* (if nodes are merged, don't advance -- i.e. check for 3 in a row) */
vnp = vnp->next;
}
}
}
}
NLM_EXTERN Boolean DDE_MergeNodes(ValNodePtr ptxtList) {
/*----------------------------------------------------------------------------
* if the first 2 nodes in ptxtList have the same settings for
* IsUnAligned and IsGap, then merge the nodes and return TRUE.
*---------------------------------------------------------------------------*/
MsaTxtDispPtr msap, next_msap;
ValNodePtr vnp, next_vnp;
vnp = ptxtList;
next_vnp = vnp->next;
if (next_vnp == NULL) return(FALSE);
msap = (MsaTxtDispPtr) vnp->data.ptrvalue;
next_msap = (MsaTxtDispPtr) next_vnp->data.ptrvalue;
/* if this node and the next have the same settings */
if ((msap->IsUnAligned == next_msap->IsUnAligned) &&
(msap->IsGap == next_msap->IsGap)) {
/* make this one longer */
msap->to = next_msap->to;
/* free the next one */
MemFree(next_msap);
vnp->next = next_vnp->next;
MemFree(next_vnp);
return(TRUE);
}
return(FALSE);
}
NLM_EXTERN Boolean DDE_LeftMerge(ValNodePtr vnp) {
/*----------------------------------------------------------------------------
*
* This is in preparation for a shift left.
*
* If this node and the one after it meet one of these conditions:
* this-node next-node
* --------- ---------
* u A
* A u
* - ~
*
* where u = unaligned, A = aligned
* ~ = unaligned-gap, - = aligned-gap
*
* Then:
* merge this node with the first char in the next node.
* remove the first char from the next node.
* remove the next node if it becomes empty.
*
* Return TRUE if a merge was performed.
*
*---------------------------------------------------------------------------*/
ValNodePtr next_vnp;
MsaTxtDispPtr msap, next_msap;
Boolean Condition = FALSE;
next_vnp = vnp->next;
if (next_vnp == NULL) {
return(FALSE);
}
msap = (MsaTxtDispPtr) vnp->data.ptrvalue;
next_msap = (MsaTxtDispPtr) next_vnp->data.ptrvalue;
/* check for proper merge condition */
if (msap->IsGap == next_msap->IsGap) {
if (msap->IsUnAligned != next_msap->IsUnAligned) {
if (!DDE_IsLeftAlignedGap(vnp)) {
Condition = TRUE;
}
}
}
/* if condition found */
if (Condition) {
/* add a char to this node, remove one from the next node */
msap->to++;
next_msap->from++;
/* if next node is now empty, set it free */
if (next_msap->from > next_msap->to) {
MemFree(next_msap);
vnp->next = next_vnp->next;
MemFree(next_vnp);
}
}
return(Condition);
}
NLM_EXTERN Boolean DDE_RightMerge(ValNodePtr PNTR vnpp, Boolean PNTR pHeadChanged) {
/*----------------------------------------------------------------------------
*
* This is in preparation for a shift right.
*
* If this node and the one after it meet one of these conditions:
* this-node next-node
* --------- ---------
* A u
* u A
* ~ -
*
* where u = unaligned, A = aligned
* ~ = unaligned-gap, - = aligned-gap
*
* Then:
* merge the last char in this node with the next node.
* remove the last char from this node.
* remove this node if it becomes empty.
*
* Return TRUE if a merge was performed.
* Return modified vnp if this node was deleted.
* Return HeadChanged = TRUE if this node was deleted.
*
*---------------------------------------------------------------------------*/
ValNodePtr next_vnp, vnp;
MsaTxtDispPtr msap, next_msap;
Boolean Condition=FALSE;
*pHeadChanged = FALSE;
vnp = *vnpp;
next_vnp = vnp->next;
msap = (MsaTxtDispPtr) vnp->data.ptrvalue;
next_msap = (MsaTxtDispPtr) next_vnp->data.ptrvalue;
/* check for proper merge condition */
if (msap->IsGap == next_msap->IsGap) {
if (msap->IsUnAligned != next_msap->IsUnAligned) {
if (!DDE_IsRightAlignedGap(vnp)) {
Condition = TRUE;
}
}
}
/* if condition found */
if (Condition) {
/* remove a char from this node, add one to the next node */
msap->to--;
next_msap->from--;
/* if this node is now empty, set it free */
if (msap->from > msap->to) {
MemFree(msap);
*vnpp = vnp->next;
MemFree(vnp);
*pHeadChanged = TRUE;
}
}
return(Condition);
}
NLM_EXTERN Boolean DDE_LeftAddNode(ValNodePtr vnp, Boolean PNTR pNodeDeleted) {
/*----------------------------------------------------------------------------
*
* This is in preparation for a shift left.
*
* If this node and the one after it meet one of the conditions below,
* then a new node of a single char is inserted in between.
*
* this-node next-node new-node
* --------- --------- --------
* ~ A u
* A ~ -
* - u A
*
* where u = unaligned, A = aligned
* ~ = unaligned-gap, - = aligned-gap
*
* If the condition is found:
* create a new node as shown.
* remove the first char from the next node.
* remove the next node if it becomes empty.
* insert new node between this node and the next.
*
* Return TRUE if a node was added.
* Return NodeDeleted = TRUE if a node was deleted as well.
*
*---------------------------------------------------------------------------*/
ValNodePtr next_vnp, new_vnp;
MsaTxtDispPtr msap, next_msap;
Boolean Condition=FALSE;
*pNodeDeleted = FALSE;
next_vnp = vnp->next;
if (next_vnp == NULL) {
return(FALSE);
}
msap = (MsaTxtDispPtr) vnp->data.ptrvalue;
next_msap = (MsaTxtDispPtr) next_vnp->data.ptrvalue;
/* check for proper add node condition */
if (msap->IsGap != next_msap->IsGap) {
if (msap->IsUnAligned != next_msap->IsUnAligned) {
if (!DDE_IsLeftAlignedGap(vnp)) {
Condition = TRUE;
}
}
}
/* if condition found */
if (Condition) {
/* add new node after vnp and before next_vnp */
/* before adding node: vnp->next_vnp */
/* after adding node: vnp->new_vnp->next_vnp */
new_vnp = DDE_AddMsaTxtNode(vnp, next_msap->from, next_msap->from,
next_msap->IsGap, msap->IsUnAligned, FALSE);
/* remove one char from the next node */
next_msap->from++;
/* if next node is now empty, set it free */
if (next_msap->from > next_msap->to) {
MemFree(next_msap);
/* don't forget: new_vnp was inserted */
new_vnp->next = next_vnp->next;
MemFree(next_vnp);
*pNodeDeleted = TRUE;
}
}
return(Condition);
}
NLM_EXTERN Boolean DDE_RightAddNode(ValNodePtr PNTR vnpp, Boolean PNTR pHeadChanged) {
/*----------------------------------------------------------------------------
*
* This is in preparation for a shift right.
*
* If this node and the one after it meet one of the conditions below,
* then a new node of a single char is inserted in between.
*
* this-node next-node new-node
* --------- --------- --------
* ~ A -
* A ~ u
* u - A
*
* where u = unaligned, A = aligned
* ~ = unaligned-gap, - = aligned-gap
*
* If the condition is found:
* create a new node as shown.
* remove the last char from this node.
* remove this node if it becomes empty.
* insert new node between this node and the next.
*
* Return TRUE if a node was added.
* Return modified vnp if this node was deleted.
* Return HeadChanged = TRUE if this node was deleted.
*
*---------------------------------------------------------------------------*/
ValNodePtr vnp, next_vnp, new_vnp;
MsaTxtDispPtr msap, next_msap;
Boolean Condition=FALSE;
*pHeadChanged = FALSE;
vnp = *vnpp;
next_vnp = vnp->next;
msap = (MsaTxtDispPtr) vnp->data.ptrvalue;
next_msap = (MsaTxtDispPtr) next_vnp->data.ptrvalue;
/* check for proper add node condition */
if (msap->IsGap != next_msap->IsGap) {
if (msap->IsUnAligned != next_msap->IsUnAligned) {
if (!DDE_IsRightAlignedGap(vnp)) {
Condition = TRUE;
}
}
}
/* if condition found */
if (Condition) {
/* add new node after vnp and before next_vnp */
/* before adding node: vnp->next_vnp */
/* after adding node: vnp->new_vnp->next_vnp */
new_vnp = DDE_AddMsaTxtNode(vnp, msap->to, msap->to,
msap->IsGap, next_msap->IsUnAligned, FALSE);
/* remove one char from this node */
msap->to--;
/* if this node is now empty, set it free */
if (msap->from > msap->to) {
MemFree(msap);
*vnpp = vnp->next;
MemFree(vnp);
*pHeadChanged = TRUE;
}
}
return(Condition);
}
NLM_EXTERN void DDE_LeftMergeAndAddNodeList(ValNodePtr vnp, Boolean AfterGap) {
/*----------------------------------------------------------------------------
* Search linked-list of MsaTxtDisp's. Add nodes and merge nodes where
* required, in preparation for a shift left. If AfterGap is true, only add
* or merge nodes after the first left-aligned-gap.
*---------------------------------------------------------------------------*/
ValNodePtr next_vnp;
Int4 DeleteGapCnt=0;
Boolean RetVal1, RetVal2, IsLeftAlignedGap, NodeDeleted;
if (vnp == NULL) {
return;
}
next_vnp = vnp->next;
if (next_vnp == NULL) {
return;
}
/* look through each node */
while (next_vnp != NULL) {
/* check for gap to delete, before adding and merging nodes*/
IsLeftAlignedGap = DDE_IsLeftAlignedGap(vnp);
/* if not looking for left aligned gap or found one */
if ((!AfterGap) || ((DeleteGapCnt > 0) && (AfterGap))) {
/* add extra node, if required */
RetVal1 = DDE_LeftAddNode(vnp, &NodeDeleted);
/* skip a node if one was added and none was removed */
/*if (RetVal1 && (!NodeDeleted)) { */
/* skip a node if one was added */
if (RetVal1) {
vnp = vnp->next;
next_vnp = vnp->next;
}
/* merge this node with 1st char of next, if required. */
/* merging nodes and adding nodes are mutually exclusive. */
if (!RetVal1) {
RetVal2 = DDE_LeftMerge(vnp);
/* left merge could delete the last node */
if (vnp->next == NULL) {
break;
}
}
}
/* increment gap count, after adding and merging nodes */
if (IsLeftAlignedGap) {
DeleteGapCnt++;
}
vnp = vnp->next;
if (vnp == NULL) {next_vnp = NULL;}
else {next_vnp = vnp->next;}
}
return;
}
NLM_EXTERN Boolean DDE_RightMergeAndAddNodeList(ValNodePtr PNTR vnpp) {
/*----------------------------------------------------------------------------
* Search linked list of MsaTxtDisp's. Add nodes and merge nodes where
* required, in preparation for a shift right. Only add or merge nodes
* before the first right-aligned-gap.
*
* return TRUE if the head of the linked list changed.
*---------------------------------------------------------------------------*/
ValNodePtr vnp, next_vnp, prev_vnp;
Boolean RetVal=FALSE, RetVal1, RetVal2, HeadChanged;
vnp = *vnpp;
/* to start, vnp is 1st node, next_vnp is 2nd node */
prev_vnp = NULL;
next_vnp = vnp->next;
if (next_vnp == NULL) {return(RetVal);}
/* look through each node */
while (next_vnp != NULL) {
/* if a right-aligned gap is spotted, then finished merging and adding */
if (DDE_IsRightAlignedGap(vnp)) {
break;
}
/* add extra node, if required */
RetVal1 = DDE_RightAddNode(&vnp, &HeadChanged);
/* skip a node if one was added and none was removed */
if (RetVal1 && (!HeadChanged)) {
prev_vnp = vnp;
vnp = vnp->next;
next_vnp = vnp->next;
}
/* merge last char of this node with next node, if required. */
/* merging nodes and adding nodes are mutually exclusive. */
if (!RetVal1) {
RetVal2 = DDE_RightMerge(&vnp, &HeadChanged);
}
/* if the head node changed, make sure to link prev node to new head */
if (HeadChanged) {
if (prev_vnp == NULL) {
*vnpp = vnp;
RetVal = TRUE;
}
else {
prev_vnp->next = vnp;
}
next_vnp = vnp->next;
}
else {
prev_vnp = vnp;
vnp = vnp->next;
next_vnp = vnp->next;
}
}
return(RetVal);
}
NLM_EXTERN void DDE_ShiftLeftList(DDE_InfoPtr pEditInfo, Int4 Row, ValNodePtr ptxtList,
Boolean AfterGap, Boolean LastCharIsUnAligned) {
/*----------------------------------------------------------------------------
* Shift each node of linked-list of MsaTxtDisp's left by 1 char starting
* with ptxtList.
* If AfterGap is true, only shift nodes left after a left-aligned-gap.
* LastCharIsUnAligned tells whether gap shifted in on right is aligned.
*---------------------------------------------------------------------------*/
Int4 GapIndex, DeleteGapCnt=0;
MsaTxtDispPtr msap;
ValNodePtr vnp, vnp_save, head, prev_vnp, last_vnp;
Boolean NewHead = FALSE;
head = DDE_GetTxtListPtr(pEditInfo, Row);
/* look through each node */
vnp = ptxtList;
while (vnp != NULL) {
/* if not looking for left aligned gap or found one */
if ((!AfterGap) || ((DeleteGapCnt > 0) && (AfterGap))) {
/* shift the block left by 1 char */
msap = (MsaTxtDispPtr) vnp->data.ptrvalue;
if (msap->IsGap) {
msap->from = (msap->from == 0 ? 0 : msap->from-1);
msap->to--;
}
/* if the 1st block is empty, remove it */
/* (only the 1st block can decrease in size) */
if (msap->from > msap->to) {
/* make sure it's the first node */
ASSERT(vnp = ptxtList);
MemFree(msap);
if (vnp == head) {
DDE_SetTxtListPtr(pEditInfo, Row, vnp->next);
vnp_save = vnp->next;
}
else {
prev_vnp = DDE_GetPrevVNP(head, vnp);
prev_vnp->next = vnp->next;
vnp_save = vnp->next;
}
MemFree(vnp);
/* vnp was free'd, so have to reset head of list */
vnp = vnp_save;
NewHead = TRUE;
}
}
/* count number of gaps on left edge of aligned block */
if (DDE_IsLeftAlignedGap(vnp)) {
DeleteGapCnt++;
}
if (!NewHead) {
vnp = vnp->next;
}
NewHead = FALSE;
}
/* shift in a gap on the right. if the last node is a gap with */
/* the same alignment as LastCharIsUnAligned ... */
head = DDE_GetTxtListPtr(pEditInfo, Row);
last_vnp = DDE_GetLastVNP(head);
msap = (MsaTxtDispPtr) last_vnp->data.ptrvalue;
GapIndex = DDE_GetGapIndex(head, last_vnp, FALSE);
if (AfterGap) {
GapIndex--;
}
if ((msap->IsGap) && (msap->IsUnAligned == LastCharIsUnAligned)) {
/* make last node one longer */
msap->to++;
ASSERT(msap->to == GapIndex);
}
/* otherwise make a new node after the last one */
else {
DDE_AddMsaTxtNode(last_vnp, GapIndex, GapIndex, TRUE, LastCharIsUnAligned, FALSE);
}
return;
}
NLM_EXTERN Boolean DDE_ShiftRightList(ValNodePtr PNTR vnpp, ValNodePtr StopNode,
Boolean FirstCharIsUnAligned, Boolean InsertLeftGap,
Boolean OkToShrinkLastNode) {
/*----------------------------------------------------------------------------
* Shift each node of linked-list of MsaTxtDisp's right by 1 char.
* If StopNode is -1, shift nodes right before the first right-aligned-gap.
* Otherwise, shift nodes right before StopNode.
* InsertLeftGap tells whether or not a char is shifted in on the left.
* If FirstCharIsUnAligned, shift in an UnAligned gap on the left,
* and vice-versa.
*
* return TRUE if a new first node is added.
* return modified vnpp, if a new first node is added.
*---------------------------------------------------------------------------*/
MsaTxtDispPtr msap;
ValNodePtr vnp, save_vnp=NULL, prev_vnp=NULL;
Boolean DeleteGapFound=FALSE, RetVal=FALSE;
vnp = *vnpp;
/* look through each node */
while (vnp != NULL) {
if (StopNode == (ValNodePtr)-1) {
/* finish shifting right when a right-aligned gap is found */
if ((DDE_IsRightAlignedGap(vnp)) ||
(DDE_IsTerminalRightAlignedGap(vnp))) {
DeleteGapFound = TRUE;
break;
}
}
else {
/* finish shifting right when StopNode is found */
if (vnp == StopNode) {
DeleteGapFound = TRUE;
break;
}
}
/* shift block right by 1 char */
msap = (MsaTxtDispPtr) vnp->data.ptrvalue;
if (msap->IsGap) {
msap->from++;
msap->to++;
}
prev_vnp = save_vnp;
save_vnp = vnp;
vnp = vnp->next;
}
/* shrink the last node by 1, delete it if it's empty */
/* last node only shrinks if there is no aligned gap to delete */
/* and if it's gapped */
if (!DeleteGapFound && OkToShrinkLastNode) {
vnp = save_vnp;
msap = (MsaTxtDispPtr) vnp->data.ptrvalue;
if (msap->IsGap) {
msap->to--;
if (msap->from > msap->to) {
MemFree(msap);
if (prev_vnp != NULL) {
/* make prev node the end of the linked list */
prev_vnp->next = NULL;
}
else {
/* if there is no previous node the head of the list is the end */
/* I can't imagine how this would ever happen */
*vnpp = NULL;
RetVal = TRUE;
}
MemFree(vnp);
}
}
}
/* shift in a gap on the left */
/* if the first node is a gap with the same alignment as FirstCharIsUnAligned... */
if (InsertLeftGap) {
vnp = *vnpp;
msap = (MsaTxtDispPtr) vnp->data.ptrvalue;
if ((msap->IsGap) && (msap->IsUnAligned == FirstCharIsUnAligned)) {
/* make first node one longer */
msap->from--;
ASSERT(msap->from == 0);
}
/* otherwise make a new node before the first one */
else {
*vnpp = DDE_AddMsaTxtNode(vnp, 0, 0, TRUE, FirstCharIsUnAligned, TRUE);
RetVal = TRUE;
}
}
return(RetVal);
}
NLM_EXTERN Int4 DDE_GetNumBlocks2(MsaParaGPopListPtr pPopList) {
/*----------------------------------------------------------------------------
* get number of alignment blocks. use the ruler.
*---------------------------------------------------------------------------*/
ValNodePtr vnp, head;
DDVRulerDescrPtr rdp;
Int4 Count=0;
vnp = head = pPopList->RulerDescr;
/* look through all the nodes of the ruler */
while (vnp != NULL) {
rdp = (DDVRulerDescrPtr) vnp->data.ptrvalue;
/* if an aligned node is found, increment the count */
if (!rdp->bUnAligned) {
Count++;
}
vnp = vnp->next;
}
return(Count);
}
NLM_EXTERN Int4 DDE_GetNumBlocks(DDE_InfoPtr pEditInfo) {
/*----------------------------------------------------------------------------
* get number of alignment blocks
* (it's sufficient to check one row)
*---------------------------------------------------------------------------*/
ValNodePtr vnp;
Int4 Count=0;
vnp = DDE_GetTxtListPtr(pEditInfo, 0);
/* count aligned to unaligned transitions */
while (vnp != NULL) {
if (DDE_IsEndOfAlignment(vnp)) {
Count++;
}
vnp = vnp->next;
}
return(Count);
}
NLM_EXTERN Int4 DDE_GetBlockWidth(DDE_InfoPtr pEditInfo, Int4 BlockIndex) {
/*----------------------------------------------------------------------------
* return the width of the BlockIndex alignment block.
* return -1 if BlockIndex not found.
*---------------------------------------------------------------------------*/
Int4 Start, Stop;
Start = DDE_GetAlignStart(pEditInfo, BlockIndex);
Stop = DDE_GetAlignStop(pEditInfo, BlockIndex);
if ((Start == -1) || (Stop == -1)) {
return(-1);
}
return(Start - Stop + 1);
}
NLM_EXTERN Int4 DDE_GetAlignStart(DDE_InfoPtr pEditInfo, Int4 BlockIndex) {
/*----------------------------------------------------------------------------
* return the display coordinate index for the start of the
* BlockIndex alignment block. return -1 if BlockIndex not found.
*---------------------------------------------------------------------------*/
return(DDE_GetAlignStart2(pEditInfo->pPopList, BlockIndex));
}
NLM_EXTERN Int4 DDE_GetAlignStart2(MsaParaGPopListPtr pPopList, Int4 BlockIndex) {
/*----------------------------------------------------------------------------
* return the display coordinate index for the start of the
* BlockIndex alignment block. return -1 if BlockIndex not found.
*---------------------------------------------------------------------------*/
MsaTxtDispPtr msap;
ValNodePtr head, vnp;
Int4 Count=0;
head = vnp = DDE_GetTxtListPtr2(pPopList, 0);
if (head == NULL) return(-1);
msap = (MsaTxtDispPtr) vnp->data.ptrvalue;
if (msap == NULL) return(-1);
/* for start of first block that's not preceeded by unaligned chars */
if (BlockIndex==0 && !msap->IsUnAligned && vnp==head) {
/* block starts at 0 */
return(0);
}
/* look through the linked list of MsaTxtDisp's */
while (vnp!= NULL) {
/* if we're at the correct block */
if (Count == BlockIndex) {
/* if vnp is unaligned and vnp->next is aligned */
if (DDE_IsStartOfAlignment(vnp)) {
/* return display coordinate for char following vnp */
return(DDE_GetGapIndex(head, vnp, FALSE));
}
}
if (DDE_IsEndOfAlignment(vnp)) {
/* count unaligned to aligned transitions */
Count++;
}
vnp = vnp->next;
}
return(-1);
}
NLM_EXTERN Int4 DDE_GetAlignStop(DDE_InfoPtr pEditInfo, Int4 BlockIndex) {
/*----------------------------------------------------------------------------
* return the display coordinate index for the start of the
* BlockIndex alignment block. return -1 if BlockIndex not found.
*---------------------------------------------------------------------------*/
return(DDE_GetAlignStop2(pEditInfo->pPopList, BlockIndex));
}
NLM_EXTERN Int4 DDE_GetAlignStop2(MsaParaGPopListPtr pPopList, Int4 BlockIndex) {
/*----------------------------------------------------------------------------
* return the display coordinate index for the end of the
* BlockIndex alignment block. return -1 if BlockIndex not found.
*---------------------------------------------------------------------------*/
ValNodePtr head, vnp;
Int4 Count=0;
head = vnp = DDE_GetTxtListPtr2(pPopList, 0);
/* look through the linked list of MsaTxtDisp's */
while (vnp!= NULL) {
/* if we're at the correct block */
if (Count == BlockIndex) {
/* if vnp is aligned and vnp->next is either unaligned or doesn't exist */
if (DDE_IsEndOfAlignment(vnp)) {
/* return display coordinate for last aligned char */
return(DDE_GetGapIndex(head, vnp, FALSE) - 1);
}
}
if (DDE_IsEndOfAlignment(vnp)) {
/* count unaligned to aligned transitions */
Count++;
}
vnp = vnp->next;
}
return(-1);
}
NLM_EXTERN Boolean DDE_FirstColumnIsAligned(DDE_InfoPtr pEditInfo) {
/*----------------------------------------------------------------------------
* return TRUE if the first column is aligned.
* (it's sufficient to check one row)
*---------------------------------------------------------------------------*/
ValNodePtr vnp;
MsaTxtDispPtr msap;
vnp = DDE_GetTxtListPtr(pEditInfo, 0);
msap = (MsaTxtDispPtr) vnp->data.ptrvalue;
if (msap->IsUnAligned) {
return(FALSE);
}
return(TRUE);
}
NLM_EXTERN Boolean DDE_LastColumnIsAligned(DDE_InfoPtr pEditInfo) {
/*----------------------------------------------------------------------------
* return TRUE if the last column is aligned.
* (it's sufficient to check one row)
*---------------------------------------------------------------------------*/
ValNodePtr vnp;
MsaTxtDispPtr msap;
vnp = DDE_GetTxtListPtr(pEditInfo, 0);
vnp = DDE_GetLastVNP(vnp);
msap = (MsaTxtDispPtr) vnp->data.ptrvalue;
if (msap->IsUnAligned) {
return(FALSE);
}
return(TRUE);
}
NLM_EXTERN Boolean DDE_IsStartOfAlignment(ValNodePtr vnp) {
/*----------------------------------------------------------------------------
* return TRUE if this node is unaligned and the next one is aligned.
*---------------------------------------------------------------------------*/
ValNodePtr next_vnp;
MsaTxtDispPtr msap, next_msap;
next_vnp = vnp->next;
if (next_vnp == NULL) { return(FALSE); }
msap = (MsaTxtDispPtr) vnp->data.ptrvalue;
next_msap = (MsaTxtDispPtr) next_vnp->data.ptrvalue;
if (msap->IsUnAligned && !next_msap->IsUnAligned) {
return(TRUE);
}
return(FALSE);
}
NLM_EXTERN Boolean DDE_IsEndOfAlignment(ValNodePtr vnp) {
/*----------------------------------------------------------------------------
* return TRUE if this node is aligned and the next one is either
* unaligned or non-exsistant.
*---------------------------------------------------------------------------*/
ValNodePtr next_vnp;
MsaTxtDispPtr msap, next_msap;
msap = (MsaTxtDispPtr) vnp->data.ptrvalue;
next_vnp = vnp->next;
if (next_vnp == NULL) {
if (!msap->IsUnAligned) {
/* if this node is Aligned and no next node return TRUE */
return(TRUE);
}
return(FALSE);
}
next_msap = (MsaTxtDispPtr) next_vnp->data.ptrvalue;
if (!msap->IsUnAligned && next_msap->IsUnAligned) {
/* if this node is Aligned and next node is unaligned return TRUE */
return(TRUE);
}
return(FALSE);
}
NLM_EXTERN void DDE_ShiftBlock(DDE_StackPtr pStack, Int4 BlockIndex, Int4 NumChars, Boolean Save) {
/*----------------------------------------------------------------------------
* shift both the right and left boundaries by NumChars
* Save indicates if this edit is stored on the stack.
*---------------------------------------------------------------------------*/
Int4 i, Mag;
Mag = ABS(NumChars);
for (i=0; i<Mag; i++) {
if (NumChars > 0) {
DDE_ShiftRightBoundary(pStack, BlockIndex, 1, FALSE);
DDE_ShiftLeftBoundary(pStack, BlockIndex, 1, FALSE);
}
else {
DDE_ShiftLeftBoundary(pStack, BlockIndex, -1, FALSE);
DDE_ShiftRightBoundary(pStack, BlockIndex, -1, FALSE);
}
}
/* add pStack->pEdit to the stack */
if (Save) {
DDE_Add(pStack);
}
return;
}
NLM_EXTERN Int4 DDE_DeleteBlock(DDE_StackPtr pStack, Int4 BlockIndex, Boolean Save) {
/*----------------------------------------------------------------------------
* delete the BlockIndex block
* Save indicates if this edit is stored on the stack.
* return value indicates the number of positions the right boundary
* is shifted in order to delete the block. (0 means block not deleted)
*---------------------------------------------------------------------------*/
Int4 OldNumBlocks, NewNumBlocks;
Int4 RetVal=0;
OldNumBlocks = DDE_GetNumBlocks(pStack->pEdit);
/* shift the right boundary left until an aligned region disappears */
while (DDE_ShiftRightBoundaryLeft1(pStack->pEdit, BlockIndex)) {
RetVal++;
}
/* remake the DDVRuler */
DDE_ReMakeRuler(pStack->pEdit->pPopList, TRUE, -1);
NewNumBlocks = DDE_GetNumBlocks(pStack->pEdit);
/* if the number of aligned blocks changed */
if (NewNumBlocks != OldNumBlocks) {
/* merge abutting unaligned nodes */
DDE_MergeNodesLists(pStack->pEdit);
}
else {
RetVal = 0;
}
DDE_CleanEnds(pStack->pEdit);
DDE_Verify(pStack->pEdit);
if (Save) {
/* if a block was deleted */
if (RetVal) {
/* add pStack->pEdit to the stack */
DDE_Add(pStack);
}
}
return(RetVal);
}
NLM_EXTERN Boolean DDE_ShiftLeftBoundary(DDE_StackPtr pStack, Int4 BlockIndex, Int4 NumChars, Boolean Save) {
/*----------------------------------------------------------------------------
* Shift the left boundary of the BlockIndex block by NumChars.
* Save indicates if this edit is stored on the stack.
* return TRUE if there's more aligned region.
* return FALSE if an aligned block disappeared, or there's no aligned block.
*---------------------------------------------------------------------------*/
Int4 i, Mag;
Int4 OldNumBlocks, NewNumBlocks;
Boolean RetVal=TRUE;
Boolean* pNoGaps;
Boolean NoGaps;
/* get number of aligned blocks */
OldNumBlocks = DDE_GetNumBlocks(pStack->pEdit);
if (OldNumBlocks == 0) {
return(FALSE);
}
Mag = ABS(NumChars);
for (i=0; i<Mag; i++) {
if (NumChars > 0) {
DDE_ShiftLeftBoundaryRight1(pStack->pEdit, BlockIndex);
}
else {
DDE_ShiftLeftBoundaryLeft1(pStack->pEdit, BlockIndex);
}
}
pNoGaps = (Boolean*) GetAppProperty("dde_nogaps");
if (pNoGaps == NULL) {NoGaps = TRUE;}
else {NoGaps = *pNoGaps;}
if (NoGaps) {
DDE_RemoveAlignedGapsFromEnds(pStack->pEdit);
}
/* every time an alignment boundary changes, remake the DDVRuler */
DDE_ReMakeRuler(pStack->pEdit->pPopList, TRUE, -1);
/* get new number of aligned blocks */
NewNumBlocks = DDE_GetNumBlocks(pStack->pEdit);
/* if the number of aligned blocks changed */
if (NewNumBlocks != OldNumBlocks) {
/* merge abutting unaligned nodes */
DDE_MergeNodesLists(pStack->pEdit);
RetVal = FALSE;
}
DDE_CleanEnds(pStack->pEdit);
DDE_Verify(pStack->pEdit);
if (Save) {
DDE_Add(pStack);
}
return(RetVal);
}
NLM_EXTERN Boolean DDE_ShiftRightBoundary(DDE_StackPtr pStack, Int4 BlockIndex, Int4 NumChars, Boolean Save) {
/*----------------------------------------------------------------------------
* shift the right boundary of the block by NumChars
* Save indicates if this edit is stored on the stack.
* return TRUE if there's more aligned region.
* return FALSE if an aligned block disappeared, or there's no aligned block.
*---------------------------------------------------------------------------*/
Int4 i, Mag;
Int4 OldNumBlocks, NewNumBlocks;
Boolean RetVal=TRUE;
Boolean* pNoGaps;
Boolean NoGaps;
/* get number of aligned blocks */
OldNumBlocks = DDE_GetNumBlocks(pStack->pEdit);
if (OldNumBlocks == 0) {
return(FALSE);
}
Mag = ABS(NumChars);
for (i=0; i<Mag; i++) {
if (NumChars > 0) {
DDE_ShiftRightBoundaryRight1(pStack->pEdit, BlockIndex);
}
else {
DDE_ShiftRightBoundaryLeft1(pStack->pEdit, BlockIndex);
}
}
pNoGaps = (Boolean*) GetAppProperty("dde_nogaps");
if (pNoGaps == NULL) {NoGaps = TRUE;}
else {NoGaps = *pNoGaps;}
if (NoGaps) {
DDE_RemoveAlignedGapsFromEnds(pStack->pEdit);
}
/* every time an alignment boundary changes, remake the DDVRuler */
DDE_ReMakeRuler(pStack->pEdit->pPopList, TRUE, -1);
/* get new number of aligned blocks */
NewNumBlocks = DDE_GetNumBlocks(pStack->pEdit);
/* if the number of aligned blocks changed */
if (NewNumBlocks != OldNumBlocks) {
/* merge abutting unaligned nodes */
DDE_MergeNodesLists(pStack->pEdit);
RetVal = FALSE;
}
DDE_CleanEnds(pStack->pEdit);
DDE_Verify(pStack->pEdit);
if (Save) {
DDE_Add(pStack);
}
return(RetVal);
}
NLM_EXTERN Boolean DDE_ShiftLeftBoundaryLeft1(DDE_InfoPtr pEditInfo, Int4 BlockIndex) {
/*----------------------------------------------------------------------------
* shift the left boundary of the BlockIndex block left by 1 char.
* return TRUE if a boundary was shifted.
*---------------------------------------------------------------------------*/
Int4 i, NumRows, BlockCount=0;
ValNodePtr vnp, prev_vnp=NULL;
Boolean HeadChanged, RetVal=FALSE;
/* if the first column is aligned, and shifting left boundary of first block */
if (DDE_FirstColumnIsAligned(pEditInfo) && (BlockIndex==0)) {
/* pad with unaligned gaps on left */
DDE_AddGapToStartOfAllRows(pEditInfo, FALSE);
}
NumRows = pEditInfo->TotalNumRows;
/* look through each row */
for (i=0; i<NumRows; i++) {
vnp = DDE_GetTxtListPtr(pEditInfo, i);
/* look through each node */
while (vnp != NULL) {
/* if at an unaligned to aligned transition */
if (DDE_IsStartOfAlignment(vnp)) {
/* and at the proper aligned block */
if (BlockIndex == BlockCount) {
/* make node adjustments to shift boundary left */
if (DDE_RightMerge(&vnp, &HeadChanged)) {
i=i;
}
else if (DDE_RightAddNode(&vnp, &HeadChanged)) {
i=i;
}
/* if the head node changed, link prev node to new head */
if (HeadChanged) {
if (prev_vnp == NULL) {
DDE_SetTxtListPtr(pEditInfo, i, vnp);
}
else {
prev_vnp->next = vnp;
}
}
/* skip to next row */
RetVal = TRUE;
break;
}
else {
BlockCount++;
}
}
prev_vnp = vnp;
vnp = vnp->next;
}
}
return(RetVal);
}
NLM_EXTERN Boolean DDE_ShiftLeftBoundaryRight1(DDE_InfoPtr pEditInfo, Int4 BlockIndex) {
/*----------------------------------------------------------------------------
* shift the left boundary of the BlockIndex block right by 1 char.
* return TRUE if a boundary was shifted.
*---------------------------------------------------------------------------*/
Int4 i, NumRows, BlockCount=0;
ValNodePtr vnp, prev_vnp=NULL, stop_vnp, save_vnp, head;
Boolean dummy, GapsAdded=FALSE, RetVal=FALSE;
/* if the first column is aligned, and shifting left boundary of first block */
if (DDE_FirstColumnIsAligned(pEditInfo) && (BlockIndex==0)) {
/* pad with unaligned gaps on left */
/* it's easier to code this way -- I strip them later */
DDE_AddGapToStartOfAllRows(pEditInfo, FALSE);
GapsAdded = TRUE;
}
NumRows = pEditInfo->TotalNumRows;
/* look through each row */
for (i=0; i<NumRows; i++) {
vnp = DDE_GetTxtListPtr(pEditInfo, i);
head = save_vnp = vnp;
/* look through each node */
while (vnp != NULL) {
/* if at an unaligned to aligned transition */
if (DDE_IsStartOfAlignment(vnp)) {
/* and at the proper aligned block */
if (BlockIndex == BlockCount) {
/* make node adjustments to shift boundary right */
if (DDE_LeftMerge(vnp)) {
i=i;
}
else if (DDE_LeftAddNode(vnp, &dummy)) {
i=i;
}
/* this handles the case when the aligned block starts with a gap. */
/* delete the gap and shift the row prior to the gap right 1 char. */
else {
ASSERT(DDE_IsLeftAlignedGap(vnp));
prev_vnp = DDE_GetPrevVNP(head, save_vnp);
stop_vnp = DDE_RemoveAGap(pEditInfo, i, vnp->next, &dummy);
if (DDE_ShiftRightList(&save_vnp, stop_vnp, TRUE, TRUE, FALSE)) {
if (prev_vnp == NULL) {
DDE_SetTxtListPtr(pEditInfo, i, save_vnp);
}
else {
prev_vnp->next = save_vnp;
}
}
}
/* skip to next row */
RetVal = TRUE;
break;
}
else {
BlockCount++;
}
}
/* in case not shifting boundary of first block, */
/* save the point where ShiftRightList begins */
else if (DDE_IsEndOfAlignment(vnp)) {
save_vnp = vnp->next;
}
prev_vnp = vnp;
vnp = vnp->next;
}
}
/* here's where I remove those unwanted unaligned gaps */
if (GapsAdded) {
DDE_RemoveGapFromStartOfAllRows(pEditInfo, FALSE);
}
return(RetVal);
}
NLM_EXTERN Boolean DDE_ShiftRightBoundaryLeft1(DDE_InfoPtr pEditInfo, Int4 BlockIndex) {
/*----------------------------------------------------------------------------
* shift the right boundary of the BlockIndex block left by 1 char.
* return TRUE if a boundary was shifted.
*---------------------------------------------------------------------------*/
Int4 NumBlocks, i, NumRows, Index, BlockCount=0;
Boolean HeadChanged, GapsAdded=FALSE, RetVal=FALSE, IsUnAligned, dummy;
ValNodePtr head, vnp, prev_vnp=NULL, next_vnp;
MsaTxtDispPtr msap;
/* if the last column is aligned, and shifting right boundary of last block */
NumBlocks = DDE_GetNumBlocks(pEditInfo);
if (DDE_LastColumnIsAligned(pEditInfo) && (BlockIndex==(NumBlocks-1))) {
/* pad with unaligned gaps on right */
/* it's easier to code this way -- I strip them later */
DDE_AddGapToEndOfAllRows(pEditInfo, FALSE);
GapsAdded = TRUE;
}
NumRows = pEditInfo->TotalNumRows;
/* look through each row */
for (i=0; i<NumRows; i++) {
head = vnp = DDE_GetTxtListPtr(pEditInfo, i);
/* look through each node */
while (vnp != NULL) {
/* if at an aligned to unaligned transition */
if (DDE_IsEndOfAlignment(vnp)) {
/* and at the proper aligned block */
if (BlockIndex == BlockCount) {
/* make node adjustments to shift boundary left */
if (DDE_RightMerge(&vnp, &HeadChanged)) {
i=i;
}
else if (DDE_RightAddNode(&vnp, &HeadChanged)) {
i=i;
}
/* this handles the case when the aligned block ends with a gap. */
/* delete the gap and shift the rest of the row left 1 char. */
else {
ASSERT(DDE_IsRightAlignedGap(vnp));
Index = DDE_GetGapIndex(head, vnp, TRUE);
next_vnp = DDE_RemoveAGap(pEditInfo, i, vnp, &dummy);
if (next_vnp == NULL) {
/* this makes sure a gap is shifted in on the right */
/* even when there's nothing more to shift left */
next_vnp = DDE_GetLastVNP(head);
msap = (MsaTxtDispPtr) next_vnp->data.ptrvalue;
IsUnAligned = msap->IsUnAligned;
DDE_ShiftLeftList(pEditInfo, i, NULL, FALSE, IsUnAligned);
}
else {
DDE_ShiftRowLeft1(pEditInfo, i, next_vnp, FALSE);
}
}
/* if the head node changed, link prev node to new head */
if (HeadChanged) {
if (prev_vnp == NULL) {
DDE_SetTxtListPtr(pEditInfo, i, vnp);
}
else {
prev_vnp->next = vnp;
}
}
/* skip to next row */
RetVal = TRUE;
break;
}
else {
BlockCount++;
}
}
prev_vnp = vnp;
vnp = vnp->next;
}
}
/* here's where I remove those unwanted unaligned gaps */
if (GapsAdded) {
DDE_RemoveGapFromEndOfAllRows(pEditInfo, FALSE);
}
return(RetVal);
}
NLM_EXTERN Boolean DDE_ShiftRightBoundaryRight1(DDE_InfoPtr pEditInfo, Int4 BlockIndex) {
/*----------------------------------------------------------------------------
* shift the right boundary of the BlockIndex block right by 1 char.
* return TRUE if a boundary was shifted.
*---------------------------------------------------------------------------*/
Int4 i, NumRows, BlockCount=0, NumBlocks;
ValNodePtr vnp;
Boolean dummy, RetVal=FALSE;
/* if the last column is aligned, and shifting right boundary of last block */
NumBlocks = DDE_GetNumBlocks(pEditInfo);
if (DDE_LastColumnIsAligned(pEditInfo) && (BlockIndex==(NumBlocks-1))) {
/* pad with unaligned gaps on right */
DDE_AddGapToEndOfAllRows(pEditInfo, FALSE);
}
NumRows = pEditInfo->TotalNumRows;
/* look through each row */
for (i=0; i<NumRows; i++) {
vnp = DDE_GetTxtListPtr(pEditInfo, i);
/* look through each node */
while (vnp != NULL) {
/* if at an aligned to unaligned transition */
if (DDE_IsEndOfAlignment(vnp)) {
/* and at the proper aligned block */
if (BlockIndex == BlockCount) {
/* make node adjustments to shift boundary right */
if (DDE_LeftMerge(vnp)) {
i=i;
}
else if (DDE_LeftAddNode(vnp, &dummy)) {
i=i;
}
/* skip to next row */
RetVal = TRUE;
break;
}
else {
BlockCount++;
}
}
vnp = vnp->next;
}
}
return(RetVal);
}
NLM_EXTERN ValNodePtr DDE_SplitNode(ValNodePtr vnp, Int4 Offset) {
/*----------------------------------------------------------------------------
* split vnp into 2 nodes at Offset.
* return pointer to 2nd part of split.
*---------------------------------------------------------------------------*/
Int4 Length, old_to;
MsaTxtDispPtr msap;
ValNodePtr RetVal;
msap = (MsaTxtDispPtr) vnp->data.ptrvalue;
Length = (msap->to - msap->from) + 1;
ASSERT((Offset >= 0) && (Offset <= Length));
if (Offset == 0) {
RetVal = vnp;
}
else if (Offset == Length) {
RetVal = vnp->next;
}
else {
old_to = msap->to;
msap->to = msap->from + (Offset - 1);
RetVal = DDE_AddMsaTxtNode(vnp, msap->to+1, old_to, msap->IsGap, msap->IsUnAligned, FALSE);
}
return(RetVal);
}
NLM_EXTERN void DDE_CreateBlock(DDE_StackPtr pStack, Int4 Left, Int4 Right, Boolean Save) {
/*----------------------------------------------------------------------------
* create a block from the Left to Right display coordinates.
* include Left and Right display coordinates in the block.
* this routine is intended to leave anything that's already aligned
* as is. It only adds to it.
* Save indicates if this edit is stored on the stack.
*---------------------------------------------------------------------------*/
Int4 i, NumRows, LeftOffset, RightOffset;
ValNodePtr vnp, start_vnp, stop_vnp, head;
MsaTxtDispPtr msap;
Boolean* pNoGaps;
Boolean NoGaps;
NumRows = pStack->pOrig->pPopList->nBsp;
/* add 1 to right boundary so it will be included in the block */
Right += 1;
/* for each row */
for (i=0; i<NumRows; i++) {
head = DDE_GetTxtListPtr(pStack->pEdit, i);
start_vnp = DDE_GetMsaTxtNode(head, Left, &LeftOffset);
start_vnp = DDE_SplitNode(start_vnp, LeftOffset);
stop_vnp = DDE_GetMsaTxtNode(head, Right, &RightOffset);
if (stop_vnp != NULL) {
stop_vnp = DDE_SplitNode(stop_vnp, RightOffset);
}
/* make intervening nodes aligned */
vnp = start_vnp;
while (vnp != stop_vnp) {
msap = (MsaTxtDispPtr) vnp->data.ptrvalue;
msap->IsUnAligned = FALSE;
DDE_SetTextStyle(msap);
vnp = vnp->next;
}
}
DDE_MergeNodesLists(pStack->pEdit);
pNoGaps = (Boolean*) GetAppProperty("dde_nogaps");
if (pNoGaps == NULL) {NoGaps = TRUE;}
else {NoGaps = *pNoGaps;}
if (NoGaps) {
DDE_RemoveAlignedGapsFromEnds(pStack->pEdit);
DDE_MergeNodesLists(pStack->pEdit);
}
DDE_ReMakeRuler(pStack->pEdit->pPopList, TRUE, -1);
DDE_Verify(pStack->pEdit);
/* add pStack->pEdit to the stack */
if (Save) {
DDE_Add(pStack);
}
return;
}
NLM_EXTERN Int4 DDE_GetIndexOfMaster(DDE_StackPtr pStack) {
/*----------------------------------------------------------------------------
* when the multiple sequence alignment data is first loaded,
* the master is the first (0 index) row. this function returns
* the row where that row is now found.
*---------------------------------------------------------------------------*/
return(DDE_GetDisplayRow(pStack->pEdit, 0));
}
NLM_EXTERN Boolean DDE_IsColValid(MsaParaGPopListPtr pPopList, Int4 Col,
Int4 PNTR pBlockIndex, Boolean PNTR pUnAligned,
Int4 PNTR pOffset, Int4 PNTR pWidth) {
/*----------------------------------------------------------------------------
* return TRUE if Col is in the legal range.
* Col is a display coordinate.
* also return whether the Col is aligned or not.
* also return the BlockIndex.
* also return the Offset into the Block.
* For an aligned column, BlockIndex is the (zero-based) block in which
* the column resides.
* For an unaligned column, BlockIndex is the BlockIndex for the preceeding
* aligned block, plus 1.
*---------------------------------------------------------------------------*/
ValNodePtr head, vnp;
DDVRulerDescrPtr rdp;
if (Col < 0) {return(FALSE);}
*pBlockIndex = 0;
/* look through the nodes of the ruler descriptor */
vnp = head = pPopList->RulerDescr;
while (vnp != NULL) {
rdp = (DDVRulerDescrPtr) vnp->data.ptrvalue;
*pUnAligned = rdp->bUnAligned;
if ((Col >= rdp->disp_start) && (Col <= rdp->disp_stop)) {
/* if col is in range, return TRUE flag, BlockIndex and alignment */
*pOffset = Col - rdp->disp_start;
*pWidth = rdp->disp_stop - rdp->disp_start + 1;
return(TRUE);
}
if (!rdp->bUnAligned) {
/* inc BlockIndex when leaving an aligned region */
(*pBlockIndex)++;
}
vnp = vnp->next;
}
return(FALSE);
}
NLM_EXTERN Boolean DDE_GetColStatusForRow(DDE_InfoPtr pEditInfo, Int4 Row, Int4 Col,
Boolean PNTR pUnAligned, Boolean PNTR pGap) {
/*----------------------------------------------------------------------------
* determine the alignment and gap status of (Row, Col).
* Col is the display coordinate.
* return TRUE for successful completion.
*---------------------------------------------------------------------------*/
Int4 Offset;
ValNodePtr vnp, head;
MsaTxtDispPtr msap;
head = DDE_GetTxtListPtr(pEditInfo, Row);
vnp = DDE_GetMsaTxtNode(head, Col, &Offset);
if (Offset == -1) {return(FALSE);}
msap = (MsaTxtDispPtr) vnp->data.ptrvalue;
*pUnAligned = msap->IsUnAligned;
*pGap = msap->IsGap;
return(TRUE);
}
NLM_EXTERN Boolean DDE_GetGapStatusOfRows(DDE_InfoPtr pEditInfo, Boolean PNTR pGapArray, Int4 Col) {
/*----------------------------------------------------------------------------
* The GapArray is an array of Booleans that indicates the gap status
* of each row at Col. Fill the array here. The array should already
* have been allocated. Col is the display coordinate.
* return TRUE for successful completion.
*---------------------------------------------------------------------------*/
Int4 i, NumRows;
Boolean UnAligned, Gap;
ASSERT(pGapArray != NULL);
NumRows = pEditInfo->TotalNumRows;
for (i=0; i<NumRows; i++) {
if (DDE_GetColStatusForRow(pEditInfo, i, Col, &UnAligned, &Gap)) {
pGapArray[i] = Gap;
}
else {
return(FALSE);
}
}
return(TRUE);
}
NLM_EXTERN Boolean DDE_AreArraysSame(Boolean PNTR pArray1, Boolean PNTR pArray2, Int4 Size) {
/*----------------------------------------------------------------------------
* compare the 2 boolean arrays of size Size.
* if they match return TRUE.
*---------------------------------------------------------------------------*/
Int4 i;
ASSERT(pArray1 != NULL);
ASSERT(pArray2 != NULL);
for (i=0; i<Size; i++) {
if (pArray1[i] != pArray2[i]) {
return(FALSE);
}
}
return(TRUE);
}
NLM_EXTERN Boolean DDE_GetAlignIndices(DDE_InfoPtr pEditInfo, Int4 PNTR pIndices, Int4 Col) {
/*----------------------------------------------------------------------------
* put the alignment coordinate for each row at Col in the Indices array.
* put a -1 in the Indices array for all rows that have gaps at this column.
* Col is the display coordinate.
* Indices should already have been allocated.
* return TRUE for successful completion.
* return FALSE if this column is unaligned.
*---------------------------------------------------------------------------*/
Int4 i, NumRows, Offset, Index;
ValNodePtr vnp, head;
MsaTxtDispPtr msap;
ASSERT(pIndices != NULL);
NumRows = pEditInfo->TotalNumRows;
/* look through each row */
for (i=0; i<NumRows; i++) {
Index = DDE_GetDisplayRow(pEditInfo, i); /* get original order */
head = DDE_GetTxtListPtr(pEditInfo, Index);
vnp = DDE_GetMsaTxtNode(head, Col, &Offset);
if (Offset == -1) {return(FALSE);}
msap = (MsaTxtDispPtr) vnp->data.ptrvalue;
if (msap->IsUnAligned) {return(FALSE);}
if (msap->IsGap) {
/* if this column is an aligned gap, put -1 in the Starts array */
pIndices[i] = -1;
}
else {
/* if this column is an aligned non-gap, put alignment coordinate into array */
pIndices[i] = msap->from + Offset;
}
}
return(TRUE);
}
NLM_EXTERN Boolean DDE_AddIndicesToArray(Int4 PNTR pArray, Int4 PNTR pIndices,
Int4 Size, Int4 ArrayIndex) {
/*----------------------------------------------------------------------------
* add the contents of the Indices array to Array.
* Size is the size of the Indices array.
* ArrayIndex is a count of the number of items already in Array.
* Sufficient memory should already have been allocated for pArray.
* return TRUE for successful completion.
*---------------------------------------------------------------------------*/
if (Size < 0) return(FALSE);
if (Size == 0) return(TRUE);
ASSERT(pIndices != NULL);
ASSERT(pArray != NULL);
MemCopy(pArray+ArrayIndex, pIndices, Size*sizeof(Int4));
return(TRUE);
}
NLM_EXTERN Int4 DDE_GetNumSegmentsInBlock(DDE_InfoPtr pEditInfo, Int4 BlockIndex) {
/*----------------------------------------------------------------------------
* return the number of segments in an aligned Block.
* return 0 if this Block doesn't exist.
* A segment is defined by the AlignMgr. It is the largest division of a
* block s.t. every piece is either all aligned gaps or aligned sequence.
*---------------------------------------------------------------------------*/
Int4 i, StartIndex, StopIndex, NumRows, NumSegs=1;
Boolean* pArray1;
Boolean* pArray2;
Boolean* pTemp;
NumRows = pEditInfo->TotalNumRows;
StartIndex = DDE_GetAlignStart(pEditInfo, BlockIndex);
StopIndex = DDE_GetAlignStop(pEditInfo, BlockIndex);
if ((StartIndex==-1) || (StopIndex==-1)) {return(0);}
pArray1 = MemNew(NumRows * sizeof(Boolean));
pArray2 = MemNew(NumRows * sizeof(Boolean));
DDE_GetGapStatusOfRows(pEditInfo, pArray1, StartIndex);
/* look through each column of block */
for (i=StartIndex+1; i<=StopIndex; i++) {
DDE_GetGapStatusOfRows(pEditInfo, pArray2, i);
/* if gap status has changed */
if (!DDE_AreArraysSame(pArray1, pArray2, NumRows)) {
/* then we're on a new segment */
NumSegs++;
}
/* swap the pointers */
pTemp = pArray1;
pArray1 = pArray2;
pArray2 = pTemp;
}
MemFree(pArray1);
MemFree(pArray2);
return(NumSegs);
}
NLM_EXTERN Boolean DDE_CreateArraysForDenseSeg(DDE_InfoPtr pEditInfo, Int4 BlockIndex,
Int4 PNTR pStarts, Int4 PNTR pLens) {
/*----------------------------------------------------------------------------
* Fill the Starts and Lens array in preparation for creating a DenseSeg.
* Starts contains all the alignment starts for a block.
* Lens contains the lengths of each segment.
* memory for both arrays is already allocated.
*---------------------------------------------------------------------------*/
Int4 NumRows, NumSegs, i, StartIndex, StopIndex, ArrayIndex=0;
Int4 SaveCol, SegIndex=0;
Int4* pIndices;
Boolean* pArray1;
Boolean* pArray2;
Boolean* pTemp;
if (pStarts == NULL) return(FALSE);
if (pLens == NULL) return(FALSE);
NumRows = pEditInfo->TotalNumRows;
NumSegs = DDE_GetNumSegmentsInBlock(pEditInfo, BlockIndex);
pIndices = MemNew(NumRows * sizeof(Int4));
pArray1 = MemNew(NumRows * sizeof(Boolean));
pArray2 = MemNew(NumRows * sizeof(Boolean));
StartIndex = DDE_GetAlignStart(pEditInfo, BlockIndex);
StopIndex = DDE_GetAlignStop(pEditInfo, BlockIndex);
DDE_GetGapStatusOfRows(pEditInfo, pArray1, StartIndex);
DDE_GetAlignIndices(pEditInfo, pIndices, StartIndex);
DDE_AddIndicesToArray(pStarts, pIndices, NumRows, ArrayIndex);
ArrayIndex += NumRows;
SaveCol = StartIndex;
/* look through each column of block */
for (i=StartIndex+1; i<=StopIndex; i++) {
DDE_GetGapStatusOfRows(pEditInfo, pArray2, i);
/* if gap status has changed */
if (!DDE_AreArraysSame(pArray1, pArray2, NumRows)) {
/* add alignment indices at this column to Starts array */
DDE_GetAlignIndices(pEditInfo, pIndices, i);
DDE_AddIndicesToArray(pStarts, pIndices, NumRows, ArrayIndex);
ArrayIndex += NumRows;
/* add length of segment to Lens array */
pLens[SegIndex] = i - SaveCol;
SaveCol = i;
SegIndex++;
}
/* swap the pointers */
pTemp = pArray1;
pArray1 = pArray2;
pArray2 = pTemp;
}
/* save length of last segment */
pLens[SegIndex] = (StopIndex - SaveCol) + 1;
SegIndex++;
ASSERT(SegIndex == NumSegs);
MemFree(pIndices);
MemFree(pArray1);
MemFree(pArray2);
return(TRUE);
}
NLM_EXTERN Boolean DDE_IsLeftAlignedGapInRows(DDE_InfoPtr pEditInfo) {
/*----------------------------------------------------------------------------
* look through each row. return TRUE if there's a left aligned gap.
*---------------------------------------------------------------------------*/
Int4 i, NumRows;
ValNodePtr vnp;
NumRows = pEditInfo->TotalNumRows;
for (i=0; i<NumRows; i++) {
vnp = DDE_GetTxtListPtr(pEditInfo, i);
if (DDE_IsLeftAlignedGapList(vnp, FALSE)) {
return(TRUE);
}
}
return(FALSE);
}
NLM_EXTERN Boolean DDE_IsRightAlignedGapInRows(DDE_InfoPtr pEditInfo) {
/*----------------------------------------------------------------------------
* look through each row. return TRUE if there's a right aligned gap.
*---------------------------------------------------------------------------*/
Int4 i, NumRows;
ValNodePtr vnp;
NumRows = pEditInfo->TotalNumRows;
for (i=0; i<NumRows; i++) {
vnp = DDE_GetTxtListPtr(pEditInfo, i);
if (DDE_IsRightAlignedGapList(&vnp, FALSE)) {
return(TRUE);
}
}
return(FALSE);
}
NLM_EXTERN void DDE_RemoveAlignedGapsFromEnds(DDE_InfoPtr pEditInfo) {
/*----------------------------------------------------------------------------
* shift the right and left boundaries closer to the middle, until
* there are no more aligned gaps on the ends.
*---------------------------------------------------------------------------*/
Boolean Continue=TRUE;
/* add gaps to start and end of all rows -- a bit kludgy */
DDE_AddGapToStartOfAllRows(pEditInfo, FALSE);
DDE_AddGapToEndOfAllRows(pEditInfo, FALSE);
while (Continue) {
Continue = FALSE;
if (DDE_IsLeftAlignedGapInRows(pEditInfo)) {
DDE_ShiftLeftBoundaryRight1(pEditInfo, 0);
Continue = TRUE;
}
if (DDE_IsRightAlignedGapInRows(pEditInfo)) {
DDE_ShiftRightBoundaryLeft1(pEditInfo, 0);
Continue = TRUE;
}
}
/* here's where those gaps are stripped */
DDE_RemoveGapFromStartOfAllRows(pEditInfo, FALSE);
DDE_RemoveGapFromEndOfAllRows(pEditInfo, FALSE);
return;
}
NLM_EXTERN void DDE_RemoveAlignedGapsFromEndOfRow(DDE_StackPtr pStack, Int4 Row, Boolean RightSide) {
/*----------------------------------------------------------------------------
* shift Row so there are no aligned gaps on the ends of an aligned block
*---------------------------------------------------------------------------*/
ValNodePtr vnp;
Boolean Continue=TRUE;
/* add gaps to start and end of all rows -- a bit kludgy */
DDE_AddGapToStartOfAllRows(pStack->pEdit, FALSE);
DDE_AddGapToEndOfAllRows(pStack->pEdit, FALSE);
while (Continue) {
vnp = DDE_GetTxtListPtr(pStack->pEdit, Row);
Continue = FALSE;
if (RightSide) {
if (DDE_IsRightAlignedGapList(&vnp, FALSE)) {
DDE_ShiftRow(pStack, Row, 1, FALSE, FALSE);
Continue = TRUE;
}
}
else {
if (DDE_IsLeftAlignedGapList(vnp, FALSE)) {
DDE_ShiftRow(pStack, Row, -1, FALSE, FALSE);
Continue = TRUE;
}
}
}
/* here's where those gaps are stripped */
DDE_RemoveGapFromStartOfAllRows(pStack->pEdit, FALSE);
DDE_RemoveGapFromEndOfAllRows(pStack->pEdit, FALSE);
return;
}
NLM_EXTERN Boolean DDE_LeftJustify(DDE_StackPtr pStack, Boolean Save) {
/*----------------------------------------------------------------------------
* Left align the rows. This only works if there's no aligned block.
* Save indicates if this edit is stored on the stack.
*---------------------------------------------------------------------------*/
Int4 i, NumRows, NumBlocks, NumGaps;
NumBlocks = DDE_GetNumBlocks(pStack->pEdit);
if (NumBlocks != 0) return(FALSE);
/* shift each row left by the number of leading unaligned gaps */
NumRows = pStack->pEdit->TotalNumRows;
for (i=0; i<NumRows; i++) {
NumGaps = DDE_GetNumLeadingUnAlignedGaps(pStack->pEdit, i);
DDE_ShiftRow(pStack, i, -NumGaps, FALSE, TRUE);
}
/* add pStack->pEdit to the stack */
if (Save) {
DDE_Add(pStack);
}
return(TRUE);
}
NLM_EXTERN Boolean DDE_RightJustify(DDE_StackPtr pStack, Boolean Save) {
/*----------------------------------------------------------------------------
* Right align the rows. This only works if there's no aligned block.
* Save indicates if this edit is stored on the stack.
*---------------------------------------------------------------------------*/
Int4 i, NumRows, NumBlocks, NumGaps;
NumBlocks = DDE_GetNumBlocks(pStack->pEdit);
if (NumBlocks != 0) return(FALSE);
/* shift each row right by the number of trailing unaligned gaps */
NumRows = pStack->pEdit->TotalNumRows;
for (i=0; i<NumRows; i++) {
NumGaps = DDE_GetNumTrailingUnAlignedGaps(pStack->pEdit, i);
DDE_ShiftRow(pStack, i, NumGaps, FALSE, TRUE);
}
/* add pStack->pEdit to the stack */
if (Save) {
DDE_Add(pStack);
}
return(TRUE);
}
NLM_EXTERN Boolean DDE_CenterJustify(DDE_StackPtr pStack, Boolean Save) {
/*----------------------------------------------------------------------------
* Center the rows. This only works if there's no aligned block.
* Save indicates if this edit is stored on the stack.
*---------------------------------------------------------------------------*/
Int4 i, NumRows, NumBlocks, NumLeadingGaps, NumTrailingGaps, Shift;
NumBlocks = DDE_GetNumBlocks(pStack->pEdit);
if (NumBlocks != 0) return(FALSE);
NumRows = pStack->pEdit->TotalNumRows;
for (i=0; i<NumRows; i++) {
NumLeadingGaps = DDE_GetNumLeadingUnAlignedGaps(pStack->pEdit, i);
NumTrailingGaps = DDE_GetNumTrailingUnAlignedGaps(pStack->pEdit, i);
Shift = (NumTrailingGaps - NumLeadingGaps) / 2;
DDE_ShiftRow(pStack, i, Shift, FALSE, TRUE);
}
/* add pStack->pEdit to the stack */
if (Save) {
DDE_Add(pStack);
}
return(TRUE);
}
NLM_EXTERN Int4 DDE_GetNumLeadingUnAlignedGaps(DDE_InfoPtr pEditInfo, Int4 Row) {
/*----------------------------------------------------------------------------
* Count the number of unaligned gaps at the start of the row.
*---------------------------------------------------------------------------*/
Int4 Col=0;
Boolean UnAligned, Gap;
while(DDE_GetColStatusForRow(pEditInfo, Row, Col, &UnAligned, &Gap)) {
if (UnAligned && Gap) {
Col++;
}
else {
return(Col);
}
}
return(Col);
}
NLM_EXTERN Int4 DDE_GetNumTrailingUnAlignedGaps(DDE_InfoPtr pEditInfo, Int4 Row) {
/*----------------------------------------------------------------------------
* Count the number of unaligned gaps at the end of the row.
*---------------------------------------------------------------------------*/
Int4 Col, NumCols, NumGaps=0;
Boolean UnAligned, Gap;
NumCols = pEditInfo->pPopList->LengthAli;
Col = NumCols-1;
while(DDE_GetColStatusForRow(pEditInfo, Row, Col, &UnAligned, &Gap)) {
if (UnAligned && Gap) {
Col--;
NumGaps++;
}
else {
return(NumGaps);
}
}
return(NumGaps);
}
NLM_EXTERN Int4 DDE_GetStart(MsaParaGPopListPtr pPopList, Int4 BlockIndex, Int4 Row) {
/*----------------------------------------------------------------------------
* get the bioseq coordinate for the start of the BlockIndex block of Row.
*---------------------------------------------------------------------------*/
MsaTxtDispPtr msap;
ValNodePtr head, vnp;
Int4 Count=0;
head = vnp = DDE_GetTxtListPtr2(pPopList, Row);
if (head == NULL) return(-1);
msap = (MsaTxtDispPtr) vnp->data.ptrvalue;
if (msap == NULL) return(-1);
/* for start of 1st block which starts with an aligned region */
if ((BlockIndex == 0) && (!msap->IsUnAligned)) {
return(msap->from);
}
/* look through the linked list of MsaTxtDisp's */
while (vnp!= NULL) {
/* if we're at the correct block */
if (Count == BlockIndex) {
/* if vnp is unaligned and vnp->next is aligned */
if (DDE_IsStartOfAlignment(vnp)) {
/* return bioseq coord of start of next block */
msap = (MsaTxtDispPtr) (vnp->next)->data.ptrvalue;
return(msap->from);
}
}
if (DDE_IsEndOfAlignment(vnp)) {
/* count unaligned to aligned transitions */
Count++;
}
vnp = vnp->next;
}
return(-1);
}
NLM_EXTERN Int4 DDE_GetLen(MsaParaGPopListPtr pPopList, Int4 BlockIndex) {
/*----------------------------------------------------------------------------
* get the length of the BlockIndex block.
*---------------------------------------------------------------------------*/
ValNodePtr vnp;
DDVRulerDescrPtr drdp;
Int4 BlockCount=0;
vnp = pPopList->RulerDescr;
while (vnp != NULL) {
drdp = (DDVRulerDescrPtr) vnp->data.ptrvalue;
if (!drdp->bUnAligned) {
if (BlockCount == BlockIndex) {
return(drdp->disp_stop - drdp->disp_start + 1);
}
BlockCount++;
}
vnp = vnp->next;
}
return(-1);
}
|