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
|
/* @source ensprediction ******************************************************
**
** Ensembl Prediction functions
**
** @author Copyright (C) 1999 Ensembl Developers
** @author Copyright (C) 2006 Michael K. Schuster
** @version $Revision: 1.58 $
** @modified 2009 by Alan Bleasby for incorporation into EMBOSS core
** @modified $Date: 2013/02/17 13:02:11 $ by $Author: mks $
** @@
**
** This library is free software; you can redistribute it and/or
** modify it under the terms of the GNU Lesser General Public
** License as published by the Free Software Foundation; either
** version 2.1 of the License, or (at your option) any later version.
**
** This library is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
** Lesser General Public License for more details.
**
** You should have received a copy of the GNU Lesser General Public
** License along with this library; if not, write to the Free Software
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
** MA 02110-1301, USA.
**
******************************************************************************/
/* ========================================================================= */
/* ============================= include files ============================= */
/* ========================================================================= */
#include "ensprediction.h"
/* ========================================================================= */
/* =============================== constants =============================== */
/* ========================================================================= */
/* ========================================================================= */
/* =========================== global variables ============================ */
/* ========================================================================= */
/* ========================================================================= */
/* ============================= private data ============================== */
/* ========================================================================= */
/* ========================================================================= */
/* =========================== private constants =========================== */
/* ========================================================================= */
/* @conststatic predictionexonadaptorKTablenames ******************************
**
** Array of Ensembl Prediction Exon Adaptor SQL table names
**
******************************************************************************/
static const char *const predictionexonadaptorKTablenames[] =
{
"prediction_exon",
(const char *) NULL
};
/* @conststatic predictionexonadaptorKColumnnames *****************************
**
** Array of Ensembl Prediction Exon Adaptor SQL column names
**
******************************************************************************/
static const char *const predictionexonadaptorKColumnnames[] =
{
"prediction_exon.prediction_exon_id",
"prediction_exon.seq_region_id",
"prediction_exon.seq_region_start",
"prediction_exon.seq_region_end",
"prediction_exon.seq_region_strand",
"prediction_exon.start_phase",
"prediction_exon.score",
"prediction_exon.p_value",
(const char *) NULL
};
/* @conststatic predictionexonadaptorKFinalcondition **************************
**
** Ensembl Prediction Exon Adaptor SQL SELECT final condition
**
******************************************************************************/
static const char *predictionexonadaptorKFinalcondition =
"ORDER BY "
"prediction_exon.prediction_transcript_id, prediction_exon.exon_rank";
/* @conststatic predictiontranscriptadaptorKTablenames ************************
**
** Array of Ensembl Prediction Transcript Adaptor SQL table names
**
******************************************************************************/
static const char *const predictiontranscriptadaptorKTablenames[] =
{
"prediction_transcript",
(const char *) NULL
};
/* @conststatic predictiontranscriptadaptorKColumnnames ***********************
**
** Array of Ensembl Prediction Transcript Adaptor SQL column names
**
******************************************************************************/
static const char *const predictiontranscriptadaptorKColumnnames[] =
{
"prediction_transcript.prediction_transcript_id",
"prediction_transcript.seq_region_id",
"prediction_transcript.seq_region_start",
"prediction_transcript.seq_region_end",
"prediction_transcript.seq_region_strand",
"prediction_transcript.analysis_id",
"prediction_transcript.display_label",
(const char *) NULL
};
/* ========================================================================= */
/* =========================== private variables =========================== */
/* ========================================================================= */
/* ========================================================================= */
/* =========================== private functions =========================== */
/* ========================================================================= */
static int listPredictionexonCompareEndAscending(
const void *item1,
const void *item2);
static int listPredictionexonCompareEndDescending(
const void *item1,
const void *item2);
static int listPredictionexonCompareIdentifierAscending(
const void *item1,
const void *item2);
static int listPredictionexonCompareStartAscending(
const void *item1,
const void *item2);
static int listPredictionexonCompareStartDescending(
const void *item1,
const void *item2);
static AjBool predictionexonadaptorFetchAllbyStatement(
EnsPBaseadaptor ba,
const AjPStr statement,
EnsPAssemblymapper am,
EnsPSlice slice,
AjPList pes);
static EnsPPredictiontranscript predictiontranscriptNewCpyFeatures(
EnsPPredictiontranscript pt);
static int listPredictiontranscriptCompareEndAscending(
const void *item1,
const void *item2);
static int listPredictiontranscriptCompareEndDescending(
const void *item1,
const void *item2);
static int listPredictiontranscriptCompareIdentifierAscending(
const void *item1,
const void *item2);
static int listPredictiontranscriptCompareStartAscending(
const void *item1,
const void *item2);
static int listPredictiontranscriptCompareStartDescending(
const void *item1,
const void *item2);
static AjBool predictiontranscriptadaptorFetchAllbyStatement(
EnsPBaseadaptor ba,
const AjPStr statement,
EnsPAssemblymapper am,
EnsPSlice slice,
AjPList pts);
/* ========================================================================= */
/* ======================= All functions by section ======================== */
/* ========================================================================= */
/* @filesection ensprediction *************************************************
**
** @nam1rule ens Function belongs to the Ensembl library
**
******************************************************************************/
/* @datasection [EnsPPredictionexon] Ensembl Prediction Exon ******************
**
** @nam2rule Predictionexon Functions for manipulating
** Ensembl Prediction Exon objects
**
** @cc Bio::EnsEMBL::PredictionExon
** @cc CVS Revision: 1.11
** @cc CVS Tag: branch-ensembl-68
**
******************************************************************************/
/* @section constructors ******************************************************
**
** All constructors return a new Ensembl Prediction Exon by pointer.
** It is the responsibility of the user to first destroy any previous
** Prediction Exon. The target pointer does not need to be initialised to
** NULL, but it is good programming practice to do so anyway.
**
** @fdata [EnsPPredictionexon]
**
** @nam3rule New Constructor
** @nam4rule Cpy Constructor with existing object
** @nam4rule Ini Constructor with initial values
** @nam4rule Ref Constructor by incrementing the reference counter
**
** @argrule Cpy pe [const EnsPPredictionexon] Ensembl Prediction Exon
** @argrule Ini pea [EnsPPredictionexonadaptor] Ensembl Prediction Exon Adaptor
** @argrule Ini identifier [ajuint] SQL database-internal identifier
** @argrule Ini feature [EnsPFeature] Ensembl Feature
** @argrule Ini sphase [ajint] Start phase of Translation
** @argrule Ini score [double] Score
** @argrule Ini pvalue [double] P-value
** @argrule Ref pe [EnsPPredictionexon] Ensembl Prediction Exon
**
** @valrule * [EnsPPredictionexon] Ensembl Prediction Exon or NULL
**
** @fcategory new
******************************************************************************/
/* @func ensPredictionexonNewCpy **********************************************
**
** Object-based constructor function, which returns an independent object.
**
** @param [r] pe [const EnsPPredictionexon] Ensembl Prediction Exon
**
** @return [EnsPPredictionexon] Ensembl Prediction Exon or NULL
**
** @release 6.4.0
** @@
******************************************************************************/
EnsPPredictionexon ensPredictionexonNewCpy(const EnsPPredictionexon pe)
{
EnsPPredictionexon pthis = NULL;
if (!pe)
return NULL;
AJNEW0(pthis);
pthis->Use = 1U;
pthis->Identifier = pe->Identifier;
pthis->Adaptor = pe->Adaptor;
pthis->Feature = ensFeatureNewRef(pe->Feature);
pthis->PhaseStart = pe->PhaseStart;
pthis->Score = pe->Score;
pthis->Pvalue = pe->Pvalue;
if (pe->SequenceCache)
pthis->SequenceCache = ajStrNewRef(pe->SequenceCache);
return pthis;
}
/* @func ensPredictionexonNewIni **********************************************
**
** Constructor for an Ensembl Prediction Exon with initial values.
**
** @cc Bio::EnsEMBL::Storable::new
** @param [u] pea [EnsPPredictionexonadaptor] Ensembl Prediction Exon Adaptor
** @param [r] identifier [ajuint] SQL database-internal identifier
** @cc Bio::EnsEMBL::Feature::new
** @param [u] feature [EnsPFeature] Ensembl Feature
** @cc Bio::EnsEMBL::PredictionExon::new
** @param [r] sphase [ajint] Start phase of Translation
** @param [r] score [double] Score
** @param [r] pvalue [double] P-value
**
** @return [EnsPPredictionexon] Ensembl Prediction Exon or NULL
**
** @release 6.4.0
** @@
******************************************************************************/
EnsPPredictionexon ensPredictionexonNewIni(EnsPPredictionexonadaptor pea,
ajuint identifier,
EnsPFeature feature,
ajint sphase,
double score,
double pvalue)
{
EnsPPredictionexon pe = NULL;
if (!feature)
return NULL;
AJNEW0(pe);
pe->Use = 1U;
pe->Identifier = identifier;
pe->Adaptor = pea;
pe->Feature = ensFeatureNewRef(feature);
pe->PhaseStart = sphase;
pe->Score = score;
pe->Pvalue = pvalue;
return pe;
}
/* @func ensPredictionexonNewRef **********************************************
**
** Ensembl Object referencing function, which returns a pointer to the
** Ensembl Object passed in and increases its reference count.
**
** @param [u] pe [EnsPPredictionexon] Ensembl Prediction Exon
**
** @return [EnsPPredictionexon] Ensembl Prediction Exon or NULL
**
** @release 6.2.0
** @@
******************************************************************************/
EnsPPredictionexon ensPredictionexonNewRef(EnsPPredictionexon pe)
{
if (!pe)
return NULL;
pe->Use++;
return pe;
}
/* @section destructors *******************************************************
**
** Destruction destroys all internal data structures and frees the memory
** allocated for an Ensembl Prediction Exon object.
**
** @fdata [EnsPPredictionexon]
**
** @nam3rule Del Destroy (free) an Ensembl Prediction Exon
**
** @argrule * Ppe [EnsPPredictionexon*] Ensembl Prediction Exon address
**
** @valrule * [void]
**
** @fcategory delete
******************************************************************************/
/* @func ensPredictionexonDel *************************************************
**
** Default destructor for an Ensembl Prediction Exon.
**
** @param [d] Ppe [EnsPPredictionexon*] Ensembl Prediction Exon address
**
** @return [void]
**
** @release 6.2.0
** @@
******************************************************************************/
void ensPredictionexonDel(EnsPPredictionexon *Ppe)
{
EnsPPredictionexon pthis = NULL;
if (!Ppe)
return;
#if defined(AJ_DEBUG) && AJ_DEBUG >= 1
if (ajDebugTest("ensPredictionexonDel"))
{
ajDebug("ensPredictionexonDel\n"
" *Ppe %p\n",
*Ppe);
ensPredictionexonTrace(*Ppe, 1);
}
#endif /* defined(AJ_DEBUG) && AJ_DEBUG >= 1 */
if (!(pthis = *Ppe) || --pthis->Use)
{
*Ppe = NULL;
return;
}
ensFeatureDel(&pthis->Feature);
ajStrDel(&pthis->SequenceCache);
ajMemFree((void **) Ppe);
return;
}
/* @section member retrieval **************************************************
**
** Functions for returning members of an Ensembl Prediction Exon object.
**
** @fdata [EnsPPredictionexon]
**
** @nam3rule Get Return Prediction Exon attribute(s)
** @nam4rule Adaptor Return the Ensembl Prediction Exon Adaptor
** @nam4rule Feature Return the Ensembl Feature
** @nam4rule Identifier Return the SQL database-internal identifier
** @nam4rule Phase Return a phase
** @nam5rule Start Return the phase at start
** @nam4rule Pvalue Return the p-value
** @nam4rule Score Return the score
**
** @argrule * pe [const EnsPPredictionexon] Prediction Exon
**
** @valrule Adaptor [EnsPPredictionexonadaptor] Ensembl Prediction Exon Adaptor
**`or NULL
** @valrule Feature [EnsPFeature] Ensembl Feature or NULL
** @valrule Identifier [ajuint] SQL database-internal identifier or 0U
** @valrule PhaseStart [ajint] Phase at start or 0
** @valrule Pvalue [double] P-value or 0.0
** @valrule Score [double] Score or 0.0
**
** @fcategory use
******************************************************************************/
/* @func ensPredictionexonGetAdaptor ******************************************
**
** Get the Ensembl Prediction Exon Adaptor member of an
** Ensembl Prediction Exon.
**
** @cc Bio::EnsEMBL::Storable::adaptor
** @param [r] pe [const EnsPPredictionexon] Ensembl Prediction Exon
**
** @return [EnsPPredictionexonadaptor] Ensembl Prediction Exon Adaptor or NULL
**
** @release 6.2.0
** @@
******************************************************************************/
EnsPPredictionexonadaptor ensPredictionexonGetAdaptor(
const EnsPPredictionexon pe)
{
return (pe) ? pe->Adaptor : NULL;
}
/* @func ensPredictionexonGetFeature ******************************************
**
** Get the Ensembl Feature member of an Ensembl Prediction Exon.
**
** @param [r] pe [const EnsPPredictionexon] Ensembl Prediction Exon
**
** @return [EnsPFeature] Ensembl Feature or NULL
**
** @release 6.2.0
** @@
******************************************************************************/
EnsPFeature ensPredictionexonGetFeature(const EnsPPredictionexon pe)
{
return (pe) ? pe->Feature : NULL;
}
/* @func ensPredictionexonGetIdentifier ***************************************
**
** Get the SQL database-internal identifier member of an
** Ensembl Prediction Exon.
**
** @cc Bio::EnsEMBL::Storable::dbID
** @param [r] pe [const EnsPPredictionexon] Ensembl Prediction Exon
**
** @return [ajuint] SQL database-internal identifier or 0U
**
** @release 6.2.0
** @@
******************************************************************************/
ajuint ensPredictionexonGetIdentifier(const EnsPPredictionexon pe)
{
return (pe) ? pe->Identifier : 0U;
}
/* @func ensPredictionexonGetPhaseStart ***************************************
**
** Get the phase at start member of an Ensembl Prediction Exon.
**
** @cc Bio::EnsEMBL::PredictionExon::phase
** @param [r] pe [const EnsPPredictionexon] Ensembl Prediction Exon
**
** @return [ajint] Start phase or 0
**
** @release 6.4.0
** @@
**
** Get or set the phase of the Exon, which tells the translation machinery,
** which makes a peptide from the DNA, where to start.
**
** The Ensembl phase convention can be thought of as "the number of bases of
** the first codon which are on the previous exon". It is therefore 0, 1 or 2
** or -1 if the exon is non-coding. In ASCII art, with alternate codons
** represented by '###' and '+++':
**
** Previous Exon Intron This Exon
** ...------------- -------------...
**
** 5' Phase 3'
** ...#+++###+++### 0 +++###+++###+...
** ...+++###+++###+ 1 ++###+++###++...
** ...++###+++###++ 2 +###+++###+++...
**
** Here is another explanation from Ewan:
**
** Phase means the place where the intron lands inside the codon - 0 between
** codons, 1 between the 1st and second base, 2 between the second and 3rd
** base. Exons therefore have a start phase and an end phase, but introns have
** just one phase.
******************************************************************************/
ajint ensPredictionexonGetPhaseStart(const EnsPPredictionexon pe)
{
return (pe) ? pe->PhaseStart : 0;
}
/* @func ensPredictionexonGetPvalue *******************************************
**
** Get the p-value member of an Ensembl Prediction Exon.
**
** @param [r] pe [const EnsPPredictionexon] Ensembl Prediction Exon
**
** @return [double] P-value or 0.0
**
** @release 6.2.0
** @@
******************************************************************************/
double ensPredictionexonGetPvalue(const EnsPPredictionexon pe)
{
return (pe) ? pe->Pvalue : 0.0;
}
/* @func ensPredictionexonGetScore ********************************************
**
** Get the score member of an Ensembl Prediction Exon.
**
** @param [r] pe [const EnsPPredictionexon] Ensembl Prediction Exon
**
** @return [double] Score or 0.0
**
** @release 6.2.0
** @@
******************************************************************************/
double ensPredictionexonGetScore(const EnsPPredictionexon pe)
{
return (pe) ? pe->Score : 0.0;
}
/* @section member assignment *************************************************
**
** Functions for assigning members of an Ensembl Prediction Exon object.
**
** @fdata [EnsPPredictionexon]
**
** @nam3rule Set Set one member of a Prediction Exon
** @nam4rule Adaptor Set the Ensembl Prediction Exon Adaptor
** @nam4rule Feature Set the Ensembl Feature
** @nam4rule Identifier Set the SQL database-internal identifier
** @nam4rule Phase Set a phase
** @nam5rule Start Set the phase at start
** @nam4rule Pvalue Set the p-value
** @nam4rule Score Set the score
**
** @argrule * pe [EnsPPredictionexon] Ensembl Prediction Exon object
** @argrule Adaptor pea [EnsPPredictionexonadaptor]
** Ensembl Prediction Exon Adaptor
** @argrule Feature feature [EnsPFeature] Ensembl Feature
** @argrule Identifier identifier [ajuint] SQL database-internal identifier
** @argrule PhaseStart sphase [ajint] Start phase
** @argrule Pvalue pvalue [double] P-value
** @argrule Score score [double] Score
**
** @valrule * [AjBool] ajTrue upon success, ajFalse otherwise
**
** @fcategory modify
******************************************************************************/
/* @func ensPredictionexonSetAdaptor ******************************************
**
** Set the Ensembl Prediction Exon Adaptor member of an
** Ensembl Prediction Exon.
**
** @cc Bio::EnsEMBL::Storable::adaptor
** @param [u] pe [EnsPPredictionexon] Ensembl Prediction Exon
** @param [u] pea [EnsPPredictionexonadaptor] Ensembl Prediction Exon Adaptor
**
** @return [AjBool] ajTrue upon success, ajFalse otherwise
**
** @release 6.3.0
** @@
******************************************************************************/
AjBool ensPredictionexonSetAdaptor(EnsPPredictionexon pe,
EnsPPredictionexonadaptor pea)
{
if (!pe)
return ajFalse;
pe->Adaptor = pea;
return ajTrue;
}
/* @func ensPredictionexonSetFeature ******************************************
**
** Set the Ensembl Feature member of an Ensembl Prediction Exon.
**
** @param [u] pe [EnsPPredictionexon] Ensembl Prediction Exon
** @param [u] feature [EnsPFeature] Ensembl Feature
**
** @return [AjBool] ajTrue upon success, ajFalse otherwise
**
** @release 6.2.0
** @@
******************************************************************************/
AjBool ensPredictionexonSetFeature(EnsPPredictionexon pe,
EnsPFeature feature)
{
if (ajDebugTest("ensPredictionexonSetFeature"))
{
ajDebug("ensPredictionexonSetFeature\n"
" pe %p\n"
" feature %p\n",
pe,
feature);
ensPredictionexonTrace(pe, 1);
ensFeatureTrace(feature, 1);
}
if (!pe)
return ajFalse;
if (!feature)
return ajFalse;
/* Replace the current Feature. */
ensFeatureDel(&pe->Feature);
pe->Feature = ensFeatureNewRef(feature);
/* Clear the sequence cache. */
ajStrDel(&pe->SequenceCache);
return ajTrue;
}
/* @func ensPredictionexonSetIdentifier ***************************************
**
** Set the SQL database-internal identifier member of an
** Ensembl Prediction Exon.
**
** @cc Bio::EnsEMBL::Storable::dbID
** @param [u] pe [EnsPPredictionexon] Ensembl Prediction Exon
** @param [r] identifier [ajuint] SQL database-internal identifier
**
** @return [AjBool] ajTrue upon success, ajFalse otherwise
**
** @release 6.2.0
** @@
******************************************************************************/
AjBool ensPredictionexonSetIdentifier(EnsPPredictionexon pe,
ajuint identifier)
{
if (!pe)
return ajFalse;
pe->Identifier = identifier;
return ajTrue;
}
/* @func ensPredictionexonSetPhaseStart ***************************************
**
** Set the phase at start member of an Ensembl Prediction Exon.
**
** @cc Bio::EnsEMBL::PredictionExon::phase
** @param [u] pe [EnsPPredictionexon] Ensembl Prediction Exon
** @param [r] sphase [ajint] Start phase
**
** @return [AjBool] ajTrue upon success, ajFalse otherwise
**
** @release 6.4.0
** @@
******************************************************************************/
AjBool ensPredictionexonSetPhaseStart(EnsPPredictionexon pe,
ajint sphase)
{
if (!pe)
return ajFalse;
pe->PhaseStart = sphase;
return ajTrue;
}
/* @func ensPredictionexonSetPvalue *******************************************
**
** Set the p-value member of an Ensembl Prediction Exon.
**
** @cc Bio::EnsEMBL::PredictionExon::p_value
** @param [u] pe [EnsPPredictionexon] Ensembl Prediction Exon
** @param [r] pvalue [double] P-value
**
** @return [AjBool] ajTrue upon success, ajFalse otherwise
**
** @release 6.2.0
** @@
******************************************************************************/
AjBool ensPredictionexonSetPvalue(EnsPPredictionexon pe,
double pvalue)
{
if (!pe)
return ajFalse;
pe->Pvalue = pvalue;
return ajTrue;
}
/* @func ensPredictionexonSetScore ********************************************
**
** Set the score member of an Ensembl Prediction Exon.
**
** @cc Bio::EnsEMBL::PredictionExon::score
** @param [u] pe [EnsPPredictionexon] Ensembl Prediction Exon
** @param [r] score [double] Score
**
** @return [AjBool] ajTrue upon success, ajFalse otherwise
**
** @release 6.2.0
** @@
******************************************************************************/
AjBool ensPredictionexonSetScore(EnsPPredictionexon pe,
double score)
{
if (!pe)
return ajFalse;
pe->Score = score;
return ajTrue;
}
/* @section debugging *********************************************************
**
** Functions for reporting of an Ensembl Prediction Exon object.
**
** @fdata [EnsPPredictionexon]
**
** @nam3rule Trace Report Ensembl Prediction Exon members to debug file
**
** @argrule Trace pe [const EnsPPredictionexon] Ensembl Prediction Exon
** @argrule Trace level [ajuint] Indentation level
**
** @valrule * [AjBool] ajTrue upon success, ajFalse otherwise
**
** @fcategory misc
******************************************************************************/
/* @func ensPredictionexonTrace ***********************************************
**
** Trace an Ensembl Prediction Exon.
**
** @param [r] pe [const EnsPPredictionexon] Ensembl Prediction Exon
** @param [r] level [ajuint] Indentation level
**
** @return [AjBool] ajTrue upon success, ajFalse otherwise
**
** @release 6.2.0
** @@
******************************************************************************/
AjBool ensPredictionexonTrace(const EnsPPredictionexon pe, ajuint level)
{
AjPStr indent = NULL;
if (!pe)
return ajFalse;
indent = ajStrNew();
ajStrAppendCountK(&indent, ' ', level * 2);
ajDebug("%SensPredictionexonTrace %p\n"
"%S Use %u\n"
"%S Identifier %u\n"
"%S Adaptor %p\n"
"%S Feature %p\n"
"%S PhaseStart %d\n"
"%S Score %f\n"
"%S P-value %f\n",
indent, pe,
indent, pe->Use,
indent, pe->Identifier,
indent, pe->Adaptor,
indent, pe->Feature,
indent, pe->PhaseStart,
indent, pe->Score,
indent, pe->Pvalue);
ensFeatureTrace(pe->Feature, level + 1);
ajStrDel(&indent);
return ajTrue;
}
/* @section calculate *********************************************************
**
** Functions for calculating information from an
** Ensembl Prediction Exon object.
**
** @fdata [EnsPPredictionexon]
**
** @nam3rule Calculate Calculate Ensembl Prediction Exon information
** @nam4rule Memsize Calculate the memory size in bytes
**
** @argrule Memsize pe [const EnsPPredictionexon] Ensembl Prediction Exon
**
** @valrule Memsize [size_t] Memory size in bytes or 0
**
** @fcategory misc
******************************************************************************/
/* @func ensPredictionexonCalculateMemsize ************************************
**
** Calculate the memory size in bytes of an Ensembl Prediction Exon.
**
** @param [r] pe [const EnsPPredictionexon] Ensembl Prediction Exon
**
** @return [size_t] Memory size in bytes or 0
**
** @release 6.4.0
** @@
******************************************************************************/
size_t ensPredictionexonCalculateMemsize(const EnsPPredictionexon pe)
{
size_t size = 0;
if (!pe)
return 0;
size += sizeof (EnsOPredictionexon);
size += ensFeatureCalculateMemsize(pe->Feature);
return size;
}
/* @section convenience functions *********************************************
**
** Ensembl Prediction Exon convenience functions
**
** @fdata [EnsPPredictionexon]
**
** @nam3rule Get Get member(s) of associated objects
** @nam4rule Phase Get the phase
** @nam5rule End Get the end phase
**
** @argrule * pe [const EnsPPredictionexon] Ensembl Prediction Exon
**
** @valrule PhaseEnd [ajint] End phase or 0
**
** @fcategory use
******************************************************************************/
/* @func ensPredictionexonGetPhaseEnd *****************************************
**
** Get the end phase member of an Ensembl Prediction Exon.
**
** @cc Bio::EnsEMBL::PredictionExon::end_phase
** @param [r] pe [const EnsPPredictionexon] Ensembl Prediction Exon
**
** @return [ajint] End phase or 0
**
** @release 6.4.0
** @@
******************************************************************************/
ajint ensPredictionexonGetPhaseEnd(const EnsPPredictionexon pe)
{
if (!pe)
return 0;
return (pe->PhaseStart + ensFeatureCalculateLength(pe->Feature)) % 3;
}
/* @section map ***************************************************************
**
** Functions for mapping Ensembl Prediction Exon objects between
** Ensembl Coordinate System objects.
**
** @fdata [EnsPPredictionexon]
**
** @nam3rule Transfer Transfer an Ensembl Prediction Exon
** @nam3rule Transform Transform an Ensembl Prediction Exon
**
** @argrule * pe [EnsPPredictionexon] Ensembl Prediction Exon
** @argrule Transfer slice [EnsPSlice] Ensembl Slice
** @argrule Transform csname [const AjPStr] Ensembl Coordinate System name
** @argrule Transform csversion [const AjPStr] Ensembl Coordinate System
** version
**
** @valrule * [EnsPPredictionexon] Ensembl Prediction Exon or NULL
**
** @fcategory misc
******************************************************************************/
/* @func ensPredictionexonTransfer ********************************************
**
** Transfer an Ensembl Prediction Exon onto another Ensembl Slice.
**
** @cc Bio::EnsEMBL::PredictionExon::transfer
** @param [u] pe [EnsPPredictionexon] Ensembl Prediction Exon
** @param [u] slice [EnsPSlice] Ensembl Slice
** @see ensFeatureTransfer
**
** @return [EnsPPredictionexon] Ensembl Prediction Exon on the defined
** Ensembl Slice or NULL
**
** @release 6.2.0
** @@
******************************************************************************/
EnsPPredictionexon ensPredictionexonTransfer(EnsPPredictionexon pe,
EnsPSlice slice)
{
EnsPPredictionexon npe = NULL;
EnsPFeature newfeature = NULL;
if (!pe)
return NULL;
if (!slice)
return NULL;
newfeature = ensFeatureTransfer(pe->Feature, slice);
if (!newfeature)
return NULL;
npe = ensPredictionexonNewCpy(pe);
ensPredictionexonSetFeature(npe, newfeature);
ensFeatureDel(&newfeature);
return npe;
}
/* @func ensPredictionexonTransform *******************************************
**
** Transform an Ensembl Prediction Exon into another Ensembl Coordinate System.
**
** @cc Bio::EnsEMBL::PredictionExon::transform
** @param [u] pe [EnsPPredictionexon] Ensembl Prediction Exon
** @param [r] csname [const AjPStr] Ensembl Coordinate System name
** @param [r] csversion [const AjPStr] Ensembl Coordinate System version
** @see ensFeatureTransform
**
** @return [EnsPPredictionexon] Ensembl Prediction Exon in the defined
** Ensembl Coordinate System or NULL
**
** @release 6.2.0
** @@
******************************************************************************/
EnsPPredictionexon ensPredictionexonTransform(EnsPPredictionexon pe,
const AjPStr csname,
const AjPStr csversion)
{
EnsPPredictionexon npe = NULL;
EnsPFeature nfeature = NULL;
if (!pe)
return NULL;
if (!csname)
return NULL;
if (!csversion)
return NULL;
nfeature = ensFeatureTransform(pe->Feature,
csname,
csversion,
(EnsPSlice) NULL);
if (!nfeature)
return NULL;
npe = ensPredictionexonNewCpy(pe);
ensPredictionexonSetFeature(npe, nfeature);
ensFeatureDel(&nfeature);
return npe;
}
/* @section fetch *************************************************************
**
** Functions for fetching information from an Ensembl Prediction Exon object.
**
** @fdata [EnsPPredictionexon]
**
** @nam3rule Fetch Fetch Ensembl Prediction Exon information
** @nam4rule Displayidentifier Fetch the display identifier
** @nam4rule Sequence Fetch the sequence
** @nam5rule Seq Fetch the sequence as AJAX Sequence object
** @nam5rule Str Fetch the sequence as AJAX String object
**
** @argrule Displayidentifier pe [const EnsPPredictionexon] Ensembl Prediction
** Exon
** @argrule Displayidentifier Pidentifier [AjPStr*] Display identifier address
** @argrule SequenceSeq pe [EnsPPredictionexon] Ensembl Prediction Exon
** @argrule SequenceSeq Psequence [AjPSeq*] AJAX Sequence object address
** @argrule SequenceStr pe [EnsPPredictionexon] Ensembl Prediction Exon
** @argrule SequenceStr Psequence [AjPStr*] AJAX String object address
**
** @valrule * [AjBool] ajTrue upon success, ajFalse otherwise
**
** @fcategory misc
******************************************************************************/
/* @func ensPredictionexonFetchSequenceSeq ************************************
**
** Fetch the sequence of an Ensembl Prediction Exon as AJAX Sequence.
** The caller is responsible for deleting the AJAX Sequence.
**
** @cc Bio::EnsEMBL::PredictionExon:seq
** @param [u] pe [EnsPPredictionexon] Ensembl Prediction Exon
** @param [wP] Psequence [AjPSeq*] Ensembl Prediction Exon sequence address
**
** @return [AjBool] ajTrue upon success, ajFalse otherwise
**
** @release 6.3.0
** @@
******************************************************************************/
AjBool ensPredictionexonFetchSequenceSeq(EnsPPredictionexon pe,
AjPSeq *Psequence)
{
AjPStr name = NULL;
AjPStr sequence = NULL;
if (!pe)
return ajFalse;
if (!Psequence)
return ajFalse;
/*
** It is sligtly more efficient, if undefined AJAX String objects are
** directly allocated by the following functions to their final size.
*/
name = ajFmtStr("%u", pe->Identifier);
ensPredictionexonFetchSequenceStr(pe, &sequence);
if (*Psequence)
{
ajSeqClear(*Psequence);
ajSeqAssignNameS(*Psequence, name);
ajSeqAssignSeqS(*Psequence, sequence);
}
else
*Psequence = ajSeqNewNameS(sequence, name);
ajSeqSetNuc(*Psequence);
ajStrDel(&name);
ajStrDel(&sequence);
return ajTrue;
}
/* @func ensPredictionexonFetchSequenceStr ************************************
**
** Fetch the sequence of an Ensembl Prediction Exon as AJAX String.
** The caller is responsible for deleting the AJAX String.
**
** @param [u] pe [EnsPPredictionexon] Ensembl Prediction Exon
** @param [wP] Psequence [AjPStr*] Ensembl Exon sequence address
**
** @return [AjBool] ajTrue upon success, ajFalse otherwise
**
** @release 6.3.0
** @@
******************************************************************************/
AjBool ensPredictionexonFetchSequenceStr(EnsPPredictionexon pe,
AjPStr *Psequence)
{
EnsPFeature feature = NULL;
EnsPSlice slice = NULL;
if (!pe)
return ajFalse;
if (!Psequence)
return ajFalse;
if (*Psequence)
ajStrAssignClear(Psequence);
else
*Psequence = ajStrNew();
feature = pe->Feature;
if (!feature)
{
ajWarn("ensPredictionexonFetchSequenceStr cannot get sequence without "
"an Ensembl Feature attached to the Ensembl Prediction Exon "
"with idetifier %u.\n",
pe->Identifier);
return ajFalse;
}
slice = ensFeatureGetSlice(feature);
if (!slice)
{
ajWarn("ensPredictionExonFetchSequenceStr cannot get sequence without "
"an Ensembl Slice attached to the Ensembl Feature in the "
"Ensembl Prediction Exon with identifier %u.\n",
pe->Identifier);
return ajFalse;
}
/*
** It is sligtly more efficient, if undefined AJAX String objects are
** directly allocated by the following functions to their final size.
*/
if ((pe->SequenceCache == NULL) ||
(ajStrGetLen(pe->SequenceCache) == 0))
ensSliceFetchSequenceSubStr(slice,
feature->Start,
feature->End,
feature->Strand,
&pe->SequenceCache);
ajStrAssignS(Psequence, pe->SequenceCache);
return ajTrue;
}
/* @datasection [AjPList] AJAX List *******************************************
**
** @nam2rule List Functions for manipulating AJAX List objects
**
******************************************************************************/
/* @funcstatic listPredictionexonCompareEndAscending **************************
**
** AJAX List of Ensembl Prediction Exon objects comparison function to sort by
** Ensembl Feature end coordinate in ascending order.
**
** @param [r] item1 [const void*] Ensembl Prediction Exon address 1
** @param [r] item2 [const void*] Ensembl Prediction Exon address 2
** @see ajListSort
**
** @return [int] The comparison function returns an integer less than,
** equal to, or greater than zero if the first argument is
** considered to be respectively less than, equal to, or
** greater than the second.
**
** @release 6.4.0
** @@
******************************************************************************/
static int listPredictionexonCompareEndAscending(
const void *item1,
const void *item2)
{
EnsPPredictionexon pe1 = *(EnsOPredictionexon *const *) item1;
EnsPPredictionexon pe2 = *(EnsOPredictionexon *const *) item2;
#if defined(AJ_DEBUG) && AJ_DEBUG >= 2
if (ajDebugTest("listPredictionexonCompareEndAscending"))
ajDebug("listPredictionexonCompareEndAscending\n"
" pe1 %p\n"
" pe2 %p\n",
pe1,
pe2);
#endif /* defined(AJ_DEBUG) && AJ_DEBUG >= 2 */
/* Sort empty values towards the end of the AJAX List. */
if (pe1 && (!pe2))
return -1;
if ((!pe1) && (!pe2))
return 0;
if ((!pe1) && pe2)
return +1;
return ensFeatureCompareEndAscending(pe1->Feature, pe2->Feature);
}
/* @funcstatic listPredictionexonCompareEndDescending *************************
**
** AJAX List of Ensembl Exon objects comparison function to sort by
** Ensembl Feature start coordinate in descending order.
**
** @param [r] item1 [const void*] Ensembl Prediction Exon address 1
** @param [r] item2 [const void*] Ensembl Prediction Exon address 2
** @see ajListSort
**
** @return [int] The comparison function returns an integer less than,
** equal to, or greater than zero if the first argument is
** considered to be respectively less than, equal to, or
** greater than the second.
**
** @release 6.4.0
** @@
******************************************************************************/
static int listPredictionexonCompareEndDescending(
const void *item1,
const void *item2)
{
EnsPPredictionexon pe1 = *(EnsOPredictionexon *const *) item1;
EnsPPredictionexon pe2 = *(EnsOPredictionexon *const *) item2;
#if defined(AJ_DEBUG) && AJ_DEBUG >= 2
if (ajDebugTest("listPredictionexonCompareEndDescending"))
ajDebug("listPredictionexonCompareEndDescending\n"
" pe1 %p\n"
" pe2 %p\n",
pe1,
pe2);
#endif /* defined(AJ_DEBUG) && AJ_DEBUG >= 2 */
/* Sort empty values towards the end of the AJAX List. */
if (pe1 && (!pe2))
return -1;
if ((!pe1) && (!pe2))
return 0;
if ((!pe1) && pe2)
return +1;
return ensFeatureCompareEndDescending(pe1->Feature, pe2->Feature);
}
/* @funcstatic listPredictionexonCompareIdentifierAscending *******************
**
** AJAX List of Ensembl Prediction Exon objects comparison function to sort by
** identifier member in ascending order.
**
** @param [r] item1 [const void*] Ensembl Prediction Exon address 1
** @param [r] item2 [const void*] Ensembl Prediction Exon address 2
** @see ajListSort
**
** @return [int] The comparison function returns an integer less than,
** equal to, or greater than zero if the first argument is
** considered to be respectively less than, equal to, or
** greater than the second.
**
** @release 6.4.0
** @@
******************************************************************************/
static int listPredictionexonCompareIdentifierAscending(
const void *item1,
const void *item2)
{
EnsPPredictionexon pe1 = *(EnsOPredictionexon *const *) item1;
EnsPPredictionexon pe2 = *(EnsOPredictionexon *const *) item2;
#if defined(AJ_DEBUG) && AJ_DEBUG >= 2
if (ajDebugTest("listPredictionexonCompareIdentifierAscending"))
ajDebug("listPredictionexonCompareIdentifierAscending\n"
" pe1 %p\n"
" pe2 %p\n",
pe1,
pe2);
#endif /* defined(AJ_DEBUG) && AJ_DEBUG >= 2 */
/* Sort empty values towards the end of the AJAX List. */
if (pe1 && (!pe2))
return -1;
if ((!pe1) && (!pe2))
return 0;
if ((!pe1) && pe2)
return +1;
if (pe1->Identifier < pe2->Identifier)
return -1;
if (pe1->Identifier > pe2->Identifier)
return +1;
return 0;
}
/* @funcstatic listPredictionexonCompareStartAscending ************************
**
** AJAX List of Ensembl Prediction Exon objects comparison function to sort by
** Ensembl Feature start coordinate in ascending order.
**
** @param [r] item1 [const void*] Ensembl Prediction Exon address 1
** @param [r] item2 [const void*] Ensembl Prediction Exon address 2
** @see ajListSort
**
** @return [int] The comparison function returns an integer less than,
** equal to, or greater than zero if the first argument is
** considered to be respectively less than, equal to, or
** greater than the second.
**
** @release 6.4.0
** @@
******************************************************************************/
static int listPredictionexonCompareStartAscending(
const void *item1,
const void *item2)
{
EnsPPredictionexon pe1 = *(EnsOPredictionexon *const *) item1;
EnsPPredictionexon pe2 = *(EnsOPredictionexon *const *) item2;
#if defined(AJ_DEBUG) && AJ_DEBUG >= 2
if (ajDebugTest("listPredictionexonCompareStartAscending"))
ajDebug("listPredictionexonCompareStartAscending\n"
" pe1 %p\n"
" pe2 %p\n",
pe1,
pe2);
#endif /* defined(AJ_DEBUG) && AJ_DEBUG >= 2 */
/* Sort empty values towards the end of the AJAX List. */
if (pe1 && (!pe2))
return -1;
if ((!pe1) && (!pe2))
return 0;
if ((!pe1) && pe2)
return +1;
return ensFeatureCompareStartAscending(pe1->Feature, pe2->Feature);
}
/* @funcstatic listPredictionexonCompareStartDescending ***********************
**
** AJAX List of Ensembl Exon objects comparison function to sort by
** Ensembl Feature start coordinate in descending order.
**
** @param [r] item1 [const void*] Ensembl Prediction Exon address 1
** @param [r] item2 [const void*] Ensembl Prediction Exon address 2
** @see ajListSort
**
** @return [int] The comparison function returns an integer less than,
** equal to, or greater than zero if the first argument is
** considered to be respectively less than, equal to, or
** greater than the second.
**
** @release 6.4.0
** @@
******************************************************************************/
static int listPredictionexonCompareStartDescending(
const void *item1,
const void *item2)
{
EnsPPredictionexon pe1 = *(EnsOPredictionexon *const *) item1;
EnsPPredictionexon pe2 = *(EnsOPredictionexon *const *) item2;
#if defined(AJ_DEBUG) && AJ_DEBUG >= 2
if (ajDebugTest("listPredictionexonCompareStartDescending"))
ajDebug("listPredictionexonCompareStartDescending\n"
" pe1 %p\n"
" pe2 %p\n",
pe1,
pe2);
#endif /* defined(AJ_DEBUG) && AJ_DEBUG >= 2 */
/* Sort empty values towards the end of the AJAX List. */
if (pe1 && (!pe2))
return -1;
if ((!pe1) && (!pe2))
return 0;
if ((!pe1) && pe2)
return +1;
return ensFeatureCompareStartDescending(pe1->Feature, pe2->Feature);
}
/* @section list **************************************************************
**
** Functions for manipulating AJAX List objects.
**
** @fdata [AjPList]
**
** @nam3rule Predictionexon Functions for manipulating AJAX List objects of
** Ensembl Prediction Exon objects
** @nam4rule Sort Sort functions
** @nam5rule End Sort by Ensembl Feature end member
** @nam5rule Identifier Sort by identifier member
** @nam5rule Start Sort by Ensembl Feature start member
** @nam6rule Ascending Sort in ascending order
** @nam6rule Descending Sort in descending order
**
** @argrule * pes [AjPList]
** AJAX List of Ensembl Prediction Exon objects
**
** @valrule * [AjBool] ajTrue upon success, ajFalse otherwise
**
** @fcategory misc
******************************************************************************/
/* @func ensListPredictionexonSortEndAscending ********************************
**
** Sort an AJAX List of Ensembl Prediction Exon objects by their
** Ensembl Feature end coordinate in ascending order.
**
** @param [u] pes [AjPList] AJAX List of Ensembl Prediction Exon objects
**
** @return [AjBool] ajTrue upon success, ajFalse otherwise
**
** @release 6.4.0
** @@
******************************************************************************/
AjBool ensListPredictionexonSortEndAscending(AjPList pes)
{
if (!pes)
return ajFalse;
ajListSortTwoThree(pes,
&listPredictionexonCompareEndAscending,
&listPredictionexonCompareStartAscending,
&listPredictionexonCompareIdentifierAscending);
return ajTrue;
}
/* @func ensListPredictionexonSortEndDescending *******************************
**
** Sort an AJAX List of Ensembl Prediction Exon objects by their
** Ensembl Feature end coordinate in descending order.
**
** @param [u] pes [AjPList] AJAX List of Ensembl Prediction Exon objects
**
** @return [AjBool] ajTrue upon success, ajFalse otherwise
**
** @release 6.4.0
** @@
******************************************************************************/
AjBool ensListPredictionexonSortEndDescending(AjPList pes)
{
if (!pes)
return ajFalse;
ajListSortTwoThree(pes,
&listPredictionexonCompareEndDescending,
&listPredictionexonCompareStartDescending,
&listPredictionexonCompareIdentifierAscending);
return ajTrue;
}
/* @func ensListPredictionexonSortIdentifierAscending *************************
**
** Sort an AJAX List of Ensembl Prediction Exon objects by their
** identifier member in ascending order.
**
** @param [u] pes [AjPList] AJAX List of Ensembl Prediction Exon objects
**
** @return [AjBool] ajTrue upon success, ajFalse otherwise
**
** @release 6.4.0
** @@
******************************************************************************/
AjBool ensListPredictionexonSortIdentifierAscending(AjPList pes)
{
if (!pes)
return ajFalse;
ajListSort(pes, &listPredictionexonCompareIdentifierAscending);
return ajTrue;
}
/* @func ensListPredictionexonSortStartAscending ******************************
**
** Sort an AJAX List of Ensembl Prediction Exon objects by their
** Ensembl Feature start coordinate in ascending order.
**
** @param [u] pes [AjPList] AJAX List of Ensembl Prediction Exon objects
**
** @return [AjBool] ajTrue upon success, ajFalse otherwise
**
** @release 6.4.0
** @@
******************************************************************************/
AjBool ensListPredictionexonSortStartAscending(AjPList pes)
{
if (!pes)
return ajFalse;
ajListSortTwoThree(pes,
&listPredictionexonCompareStartAscending,
&listPredictionexonCompareEndAscending,
&listPredictionexonCompareIdentifierAscending);
return ajTrue;
}
/* @func ensListPredictionexonSortStartDescending *****************************
**
** Sort an AJAX List of Ensembl Prediction Exon objects by their
** Ensembl Feature start coordinate in descending order.
**
** @param [u] pes [AjPList] AJAX List of Ensembl Prediction Exon objects
**
** @return [AjBool] ajTrue upon success, ajFalse otherwise
**
** @release 6.4.0
** @@
******************************************************************************/
AjBool ensListPredictionexonSortStartDescending(AjPList pes)
{
if (!pes)
return ajFalse;
ajListSortTwoThree(pes,
&listPredictionexonCompareStartDescending,
&listPredictionexonCompareEndDescending,
&listPredictionexonCompareIdentifierAscending);
return ajTrue;
}
/* @datasection [EnsPPredictionexonadaptor] Ensembl Prediction Exon Adaptor ***
**
** @nam2rule Predictionexonadaptor Functions for manipulating
** Ensembl Prediction Exon Adaptor objects
**
** @cc Bio::EnsEMBL::DBSQL::PredictionExonAdaptor
** @cc CVS Revision: 1.21
** @cc CVS Tag: branch-ensembl-68
**
******************************************************************************/
/* @funcstatic predictionexonadaptorFetchAllbyStatement ***********************
**
** Fetch all Ensembl Prediction Exon objects via an SQL statement.
**
** @param [u] ba [EnsPBaseadaptor] Ensembl Base Adaptor
** @param [r] statement [const AjPStr] SQL statement
** @param [uN] am [EnsPAssemblymapper] Ensembl Assembly Mapper
** @param [uN] slice [EnsPSlice] Ensembl Slice
** @param [u] pes [AjPList] AJAX List of Ensembl Prediction Exon objects
**
** @return [AjBool] ajTrue upon success, ajFalse otherwise
**
** @release 6.4.0
** @@
******************************************************************************/
static AjBool predictionexonadaptorFetchAllbyStatement(
EnsPBaseadaptor ba,
const AjPStr statement,
EnsPAssemblymapper am,
EnsPSlice slice,
AjPList pes)
{
double score = 0.0;
double pvalue = 0.0;
ajint sphase = 0;
ajuint identifier = 0U;
ajuint srid = 0U;
ajuint srstart = 0U;
ajuint srend = 0U;
ajint srstrand = 0;
AjPSqlstatement sqls = NULL;
AjISqlrow sqli = NULL;
AjPSqlrow sqlr = NULL;
EnsPDatabaseadaptor dba = NULL;
EnsPPredictionexon pe = NULL;
EnsPPredictionexonadaptor pea = NULL;
EnsPFeature feature = NULL;
if (ajDebugTest("predictionexonadaptorFetchAllbyStatement"))
ajDebug("predictionexonadaptorFetchAllbyStatement\n"
" ba %p\n"
" statement %p\n"
" am %p\n"
" slice %p\n"
" pes %p\n",
ba,
statement,
am,
slice,
pes);
if (!ba)
return ajFalse;
if (!statement)
return ajFalse;
if (!pes)
return ajFalse;
dba = ensBaseadaptorGetDatabaseadaptor(ba);
pea = ensRegistryGetPredictionexonadaptor(dba);
sqls = ensDatabaseadaptorSqlstatementNew(dba, statement);
sqli = ajSqlrowiterNew(sqls);
while (!ajSqlrowiterDone(sqli))
{
identifier = 0;
srid = 0;
srstart = 0;
srend = 0;
srstrand = 0;
sphase = 0;
score = 0.0;
pvalue = 0.0;
sqlr = ajSqlrowiterGet(sqli);
ajSqlcolumnToUint(sqlr, &identifier);
ajSqlcolumnToUint(sqlr, &srid);
ajSqlcolumnToUint(sqlr, &srstart);
ajSqlcolumnToUint(sqlr, &srend);
ajSqlcolumnToInt(sqlr, &srstrand);
ajSqlcolumnToInt(sqlr, &sphase);
ajSqlcolumnToDouble(sqlr, &score);
ajSqlcolumnToDouble(sqlr, &pvalue);
ensBaseadaptorRetrieveFeature(ba,
0U,
srid,
srstart,
srend,
srstrand,
am,
slice,
&feature);
if (!feature)
continue;
/* Finally, create a new Ensembl Prediction Exon. */
pe = ensPredictionexonNewIni(pea,
identifier,
feature,
sphase,
score,
pvalue);
ajListPushAppend(pes, (void *) pe);
ensFeatureDel(&feature);
}
ajSqlrowiterDel(&sqli);
ensDatabaseadaptorSqlstatementDel(dba, &sqls);
return ajTrue;
}
/* @section constructors ******************************************************
**
** All constructors return a new Ensembl Prediction Exon Adaptor by pointer.
** It is the responsibility of the user to first destroy any previous
** Prediction Exon Adaptor. The target pointer does not need to be initialised
** to NULL, but it is good programming practice to do so anyway.
**
** @fdata [EnsPPredictionexonadaptor]
**
** @nam3rule New Constructor
**
** @argrule New dba [EnsPDatabaseadaptor] Ensembl Database Adaptor
**
** @valrule * [EnsPPredictionexonadaptor]
** Ensembl Prediction Exon Adaptor or NULL
**
** @fcategory new
******************************************************************************/
/* @func ensPredictionexonadaptorNew ******************************************
**
** Default constructor for an Ensembl Prediction Exon Adaptor.
**
** Ensembl Object Adaptors are singleton objects in the sense that a single
** instance of an Ensembl Object Adaptor connected to a particular database is
** sufficient to instantiate any number of Ensembl Objects from the database.
** Each Ensembl Object will have a weak reference to the Object Adaptor that
** instantiated it. Therefore, Ensembl Object Adaptors should not be
** instantiated directly, but rather obtained from the Ensembl Registry,
** which will in turn call this function if neccessary.
**
** @see ensRegistryGetDatabaseadaptor
** @see ensRegistryGetPredictionexonadaptor
**
** @param [u] dba [EnsPDatabaseadaptor] Ensembl Database Adaptor
**
** @return [EnsPPredictionexonadaptor] Ensembl Prediction Exon Adaptor or NULL
**
** @release 6.2.0
** @@
******************************************************************************/
EnsPPredictionexonadaptor ensPredictionexonadaptorNew(
EnsPDatabaseadaptor dba)
{
return ensFeatureadaptorNew(
dba,
predictionexonadaptorKTablenames,
predictionexonadaptorKColumnnames,
(const EnsPBaseadaptorLeftjoin) NULL,
(const char *) NULL,
predictionexonadaptorKFinalcondition,
&predictionexonadaptorFetchAllbyStatement,
(void *(*)(const void *)) NULL,
(void *(*)(void *)) &ensPredictionexonNewRef,
(AjBool (*)(const void *)) NULL,
(void (*)(void **)) &ensPredictionexonDel,
(size_t (*)(const void *)) &ensPredictionexonCalculateMemsize,
(EnsPFeature (*)(const void *)) &ensPredictionexonGetFeature,
"Predictionexon");
}
/* @section destructors *******************************************************
**
** Destruction destroys all internal data structures and frees the memory
** allocated for an Ensembl Prediction Exon Adaptor object.
**
** @fdata [EnsPPredictionexonadaptor]
**
** @nam3rule Del Destroy (free) an Ensembl Prediction Exon Adaptor
**
** @argrule * Ppea [EnsPPredictionexonadaptor*]
** Ensembl Prediction Exon Adaptor address
**
** @valrule * [void]
**
** @fcategory delete
******************************************************************************/
/* @func ensPredictionexonadaptorDel ******************************************
**
** Default destructor for an Ensembl Prediction Exon Adaptor.
**
** Ensembl Object Adaptors are singleton objects that are registered in the
** Ensembl Registry and weakly referenced by Ensembl Objects that have been
** instantiated by it. Therefore, Ensembl Object Adaptors should never be
** destroyed directly. Upon exit, the Ensembl Registry will call this function
** if required.
**
** @param [d] Ppea [EnsPPredictionexonadaptor*]
** Ensembl Prediction Exon Adaptor address
**
** @return [void]
**
** @release 6.2.0
** @@
******************************************************************************/
void ensPredictionexonadaptorDel(EnsPPredictionexonadaptor *Ppea)
{
ensFeatureadaptorDel(Ppea);
return;
}
/* @section member retrieval **************************************************
**
** Functions for returning members of an
** Ensembl Prediction Exon Adaptor object.
**
** @fdata [EnsPPredictionexonadaptor]
**
** @nam3rule Get Return Ensembl Prediction Exon Adaptor attribute(s)
** @nam4rule Baseadaptor Return the Ensembl Base Adaptor
** @nam4rule Databaseadaptor Return the Ensembl Database Adaptor
** @nam4rule Featureadaptor Return the Ensembl Feature Adaptor
**
** @argrule * pea [EnsPPredictionexonadaptor] Ensembl Prediction Exon Adaptor
**
** @valrule Baseadaptor [EnsPBaseadaptor]
** Ensembl Base Adaptor or NULL
** @valrule Databaseadaptor [EnsPDatabaseadaptor]
** Ensembl Database Adaptor or NULL
** @valrule Featureadaptor [EnsPFeatureadaptor]
** Ensembl Feature Adaptor or NULL
**
** @fcategory use
******************************************************************************/
/* @func ensPredictionexonadaptorGetBaseadaptor *******************************
**
** Get the Ensembl Base Adaptor member of the
** Ensembl Feature Adaptor member of an Ensembl Prediction Exon Adaptor.
**
** @param [u] pea [EnsPPredictionexonadaptor] Ensembl Prediction Exon Adaptor
**
** @return [EnsPBaseadaptor] Ensembl Base Adaptor or NULL
**
** @release 6.4.0
** @@
******************************************************************************/
EnsPBaseadaptor ensPredictionexonadaptorGetBaseadaptor(
EnsPPredictionexonadaptor pea)
{
return ensFeatureadaptorGetBaseadaptor(
ensPredictionexonadaptorGetFeatureadaptor(pea));
}
/* @func ensPredictionexonadaptorGetDatabaseadaptor ***************************
**
** Get the Ensembl Database Adaptor member of the
** Ensembl Feature Adaptor member of an Ensembl Prediction Exon Adaptor.
**
** @param [u] pea [EnsPPredictionexonadaptor] Ensembl Prediction Exon Adaptor
**
** @return [EnsPDatabaseadaptor] Ensembl Database Adaptor or NULL
**
** @release 6.4.0
** @@
******************************************************************************/
EnsPDatabaseadaptor ensPredictionexonadaptorGetDatabaseadaptor(
EnsPPredictionexonadaptor pea)
{
return ensFeatureadaptorGetDatabaseadaptor(
ensPredictionexonadaptorGetFeatureadaptor(pea));
}
/* @func ensPredictionexonadaptorGetFeatureadaptor ****************************
**
** Get the Ensembl Feature Adaptor member of an
** Ensembl Prediction Exon Adaptor.
**
** @param [u] pea [EnsPPredictionexonadaptor] Ensembl Prediction Exon Adaptor
**
** @return [EnsPFeatureadaptor] Ensembl Feature Adaptor or NULL
**
** @release 6.4.0
** @@
******************************************************************************/
EnsPFeatureadaptor ensPredictionexonadaptorGetFeatureadaptor(
EnsPPredictionexonadaptor pea)
{
return pea;
}
/* @section canonical object retrieval ****************************************
**
** Functions for fetching Ensembl Prediction Exon objects from an
** Ensembl SQL database.
**
** @fdata [EnsPPredictionexonadaptor]
**
** @nam3rule Fetch Fetch Ensembl Prediction Exon object(s)
** @nam4rule All Fetch all Ensembl Prediction Exon objects
** @nam4rule Allby Fetch all Ensembl Prediction Exon objects
** matching a criterion
** @nam5rule Predictiontranscript Fetch all by an Ensembl Prediction Transcript
** @nam5rule Slice Fetch all by an Ensembl Slice
** @nam4rule By Fetch one Ensembl Exon object matching a criterion
** @nam5rule Identifier Fetch by SQL database-internal identifier
**
** @argrule * pea [EnsPPredictionexonadaptor]
** Ensembl Prediction Exon Adaptor
** @argrule All pes [AjPList]
** AJAX List of Ensembl Prediction Exon objects
** @argrule AllbyPredictiontranscript pt [const EnsPPredictiontranscript]
** Ensembl Prediction Transcript
** @argrule AllbySlice slice [EnsPSlice] Ensembl Slice
** @argrule AllbySlice constraint [const AjPStr] SQL constraint
** @argrule Allby pes [AjPList]
** AJAX List of Ensembl Prediction Exon objects
** @argrule ByIdentifier identifier [ajuint] SQL database-internal identifier
** @argrule By Ppe [EnsPPredictionexon*]
** Ensembl Prediction Exon address
**
** @valrule * [AjBool] ajTrue upon success, ajFalse otherwise
**
** @fcategory use
******************************************************************************/
/* @func ensPredictionexonadaptorFetchAllbyPredictiontranscript ***************
**
** Fetch all Ensembl Prediction Exon objects via an
** Ensembl Prediction Transcript.
**
** The caller is responsible for deleting the Ensembl Prediction Exon objects
** before deleting the AJAX List.
**
** @param [u] pea [EnsPPredictionexonadaptor] Ensembl Prediction Exon Adaptor
** @param [r] pt [const EnsPPredictiontranscript] Ensembl Prediction Transcript
** @param [u] pes [AjPList] AJAX List of Ensembl Prediction Exon objects
**
** @return [AjBool] ajTrue upon success, ajFalse otherwise
**
** @release 6.4.0
** @@
******************************************************************************/
AjBool ensPredictionexonadaptorFetchAllbyPredictiontranscript(
EnsPPredictionexonadaptor pea,
const EnsPPredictiontranscript pt,
AjPList pes)
{
AjIList iter = NULL;
AjPStr constraint = NULL;
EnsPDatabaseadaptor dba = NULL;
EnsPPredictionexon pe = NULL;
EnsPFeature efeature = NULL;
EnsPFeature tfeature = NULL;
EnsPSlice eslice = NULL;
EnsPSlice tslice = NULL;
EnsPSliceadaptor sla = NULL;
if (ajDebugTest("ensPredictionexonadaptorFetchAllbyPredictiontranscript"))
{
ajDebug("ensPredictionexonadaptorFetchAllbyPredictiontranscript\n"
" pea %p\n"
" pt %p\n"
" pes %p\n",
pea,
pt,
pes);
ensPredictiontranscriptTrace(pt, 1);
}
if (!pea)
return ajFalse;
if (!pt)
return ajFalse;
if (!pes)
return ajFalse;
tfeature = ensPredictiontranscriptGetFeature(pt);
tslice = ensFeatureGetSlice(tfeature);
if (!tslice)
{
ajDebug("ensPredictionexonadaptorFetchAllbyPredictiontranscript "
"cannot fetch Ensembl Prediction Exon objects for an "
"Ensembl Prediction Transcript without an Ensembl Slice.\n");
return ajFalse;
}
dba = ensPredictionexonadaptorGetDatabaseadaptor(pea);
sla = ensRegistryGetSliceadaptor(dba);
/*
** Get a Slice that spans just this Prediction Transcript to place
** Ensembl Prediction Exon objects on.
*/
ensSliceadaptorFetchByFeature(sla, tfeature, 0, &eslice);
constraint = ajFmtStr("prediction_exon.prediction_transcript_id = %u",
ensPredictiontranscriptGetIdentifier(pt));
ensFeatureadaptorFetchAllbySlice(pea,
eslice,
constraint,
(const AjPStr) NULL,
pes);
/* Remap Exon coordinates if neccessary. */
if (!ensSliceMatch(eslice, tslice))
{
iter = ajListIterNew(pes);
while (!ajListIterDone(iter))
{
pe = (EnsPPredictionexon) ajListIterGet(iter);
efeature = ensFeatureTransfer(pe->Feature, tslice);
ensPredictionexonSetFeature(pe, efeature);
ensFeatureDel(&efeature);
}
ajListIterDel(&iter);
}
ajStrDel(&constraint);
ensSliceDel(&eslice);
return ajTrue;
}
/* @func ensPredictionexonadaptorFetchByIdentifier ****************************
**
** Fetch an Ensembl Prediction Exon via its SQL database-internal
** identifier.
** The caller is responsible for deleting the Ensembl Prediction Exon.
**
** @param [u] pea [EnsPPredictionexonadaptor]
** Ensembl Prediction Exon Adaptor
** @param [r] identifier [ajuint] SQL database-internal identifier
** @param [wP] Ppe [EnsPPredictionexon*] Ensembl Prediction Exon address
**
** @return [AjBool] ajTrue upon success, ajFalse otherwise
**
** @release 6.2.0
** @@
******************************************************************************/
AjBool ensPredictionexonadaptorFetchByIdentifier(
EnsPPredictionexonadaptor pea,
ajuint identifier,
EnsPPredictionexon *Ppe)
{
return ensBaseadaptorFetchByIdentifier(
ensPredictionexonadaptorGetBaseadaptor(pea),
identifier,
(void **) Ppe);
}
/* @datasection [EnsPPredictiontranscript] Ensembl Prediction Transcript ******
**
** @nam2rule Predictiontranscript Functions for manipulating
** Ensembl Prediction Transcript objects
**
** @cc Bio::EnsEMBL::PredictionTranscript
** @cc CVS Revision: 1.51
** @cc CVS Tag: branch-ensembl-68
**
******************************************************************************/
/* @section constructors ******************************************************
**
** All constructors return a new Ensembl Prediction Transcript by pointer.
** It is the responsibility of the user to first destroy any previous
** Prediction Transcript. The target pointer does not need to be initialised to
** NULL, but it is good programming practice to do so anyway.
**
** @fdata [EnsPPredictiontranscript]
**
** @nam3rule New Constructor
** @nam4rule Cpy Constructor with existing object
** @nam4rule Ini Constructor with initial values
** @nam4rule Ref Constructor by incrementing the reference counter
**
** @argrule Cpy pt [const EnsPPredictiontranscript]
** Ensembl Prediction Transcript
** @argrule Ini pta [EnsPPredictiontranscriptadaptor]
** Ensembl Prediction Transcript Adaptor
** @argrule Ini identifier [ajuint] SQL database-internal identifier
** @argrule Ini feature [EnsPFeature] Ensembl Feature
** @argrule Ini label [AjPStr] Display label
** @argrule Ref pt [EnsPPredictiontranscript] Ensembl Prediction Transcript
**
** @valrule * [EnsPPredictiontranscript] Ensembl Prediction Transcript or NULL
**
** @fcategory new
******************************************************************************/
/* @func ensPredictiontranscriptNewCpy ****************************************
**
** Object-based constructor function, which returns an independent object.
**
** @param [r] pt [const EnsPPredictiontranscript] Ensembl Prediction Transcript
**
** @return [EnsPPredictiontranscript] Ensembl Prediction Transcript or NULL
**
** @release 6.4.0
** @@
******************************************************************************/
EnsPPredictiontranscript ensPredictiontranscriptNewCpy(
const EnsPPredictiontranscript pt)
{
AjIList iter = NULL;
EnsPPredictionexon pe = NULL;
EnsPPredictiontranscript pthis = NULL;
if (!pt)
return NULL;
AJNEW0(pthis);
pthis->Use = 1U;
pthis->Identifier = pt->Identifier;
pthis->Adaptor = pt->Adaptor;
pthis->Feature = ensFeatureNewRef(pt->Feature);
if (pt->Displaylabel)
pthis->Displaylabel = ajStrNewRef(pt->Displaylabel);
/* Copy the AJAX List of Ensembl Prediction Exon objects. */
if (pt->Predictionexons && ajListGetLength(pt->Predictionexons))
{
pthis->Predictionexons = ajListNew();
iter = ajListIterNew(pt->Predictionexons);
while (!ajListIterDone(iter))
{
pe = (EnsPPredictionexon) ajListIterGet(iter);
ajListPushAppend(pthis->Predictionexons,
(void *) ensPredictionexonNewRef(pe));
}
ajListIterDel(&iter);
}
else
pthis->Predictionexons = NULL;
return pthis;
}
/* @func ensPredictiontranscriptNewIni ****************************************
**
** Constructor for an Ensembl Prediction Transcript with initial values.
**
** @cc Bio::EnsEMBL::Storable::new
** @param [u] pta [EnsPPredictiontranscriptadaptor]
** Ensembl Prediction Transcript Adaptor
** @param [r] identifier [ajuint] SQL database-internal identifier
** @cc Bio::EnsEMBL::Feature::new
** @param [u] feature [EnsPFeature] Ensembl Feature
** @cc Bio::EnsEMBL::PredictionTranscript::new
** @param [u] label [AjPStr] Display label
**
** @return [EnsPPredictiontranscript] Ensembl Prediction Transcript or NULL
**
** @release 6.4.0
** @@
******************************************************************************/
EnsPPredictiontranscript ensPredictiontranscriptNewIni(
EnsPPredictiontranscriptadaptor pta,
ajuint identifier,
EnsPFeature feature,
AjPStr label)
{
EnsPPredictiontranscript pt = NULL;
if (!feature)
return NULL;
AJNEW0(pt);
pt->Use = 1U;
pt->Identifier = identifier;
pt->Adaptor = pta;
pt->Feature = ensFeatureNewRef(feature);
if (label)
pt->Displaylabel = ajStrNewRef(label);
return pt;
}
/* @func ensPredictiontranscriptNewRef ****************************************
**
** Ensembl Object referencing function, which returns a pointer to the
** Ensembl Object passed in and increases its reference count.
**
** @param [u] pt [EnsPPredictiontranscript] Ensembl Prediction Transcript
**
** @return [EnsPPredictiontranscript] Ensembl Prediction Transcript or NULL
**
** @release 6.2.0
** @@
******************************************************************************/
EnsPPredictiontranscript ensPredictiontranscriptNewRef(
EnsPPredictiontranscript pt)
{
if (!pt)
return NULL;
pt->Use++;
return pt;
}
/* @funcstatic predictiontranscriptNewCpyFeatures *****************************
**
** Returns a new copy of an Ensembl Prediction Transcript, but in addition to
** the shallow copy provided by ensPredictiontranscriptNewCpy, also copies all
** Ensembl Prediction Transcript-internal Ensembl Objects based on the
** Ensembl Feature class. This is useful in preparation of
** ensPredictiontranscriptTransform and ensPredictiontranscriptTransfer, which
** return an independent Ensembl Prediction Transcript object and therefore,
** require independent mapping of all internal Feature objects to the new
** Ensembl Coordinate System or Ensembl Slice.
**
** @param [u] pt [EnsPPredictiontranscript] Ensembl Prediction Transcript
**
** @return [EnsPPredictiontranscript] Ensembl Prediction Transcript or NULL
**
** @release 6.4.0
** @@
******************************************************************************/
static EnsPPredictiontranscript predictiontranscriptNewCpyFeatures(
EnsPPredictiontranscript pt)
{
AjIList iter = NULL;
EnsPPredictionexon newpe = NULL;
EnsPPredictionexon oldpe = NULL;
EnsPPredictiontranscript newpt = NULL;
if (!pt)
return NULL;
newpt = ensPredictiontranscriptNewCpy(pt);
if (!newpt)
return NULL;
/* Copy the AJAX List of Ensembl Prediction Exon objects. */
if (newpt->Predictionexons)
{
iter = ajListIterNew(newpt->Predictionexons);
while (!ajListIterDone(iter))
{
oldpe = (EnsPPredictionexon) ajListIterGet(iter);
ajListIterRemove(iter);
newpe = ensPredictionexonNewCpy(oldpe);
ajListIterInsert(iter, (void *) newpe);
/* Advance the AJAX List Iterator after the insert. */
(void) ajListIterGet(iter);
ensPredictionexonDel(&oldpe);
}
ajListIterDel(&iter);
}
return newpt;
}
/* @section destructors *******************************************************
**
** Destruction destroys all internal data structures and frees the memory
** allocated for an Ensembl Prediction Transcript object.
**
** @fdata [EnsPPredictiontranscript]
**
** @nam3rule Del Destroy (free) an Ensembl Prediction Transcript
**
** @argrule * Ppt [EnsPPredictiontranscript*]
** Ensembl Prediction Transcript address
**
** @valrule * [void]
**
** @fcategory delete
******************************************************************************/
/* @func ensPredictiontranscriptDel *******************************************
**
** Default destructor for an Ensembl Prediction Transcript.
**
** @param [d] Ppt [EnsPPredictiontranscript*]
** Ensembl Prediction Transcript address
**
** @return [void]
**
** @release 6.2.0
** @@
******************************************************************************/
void ensPredictiontranscriptDel(
EnsPPredictiontranscript *Ppt)
{
EnsPPredictionexon pe = NULL;
EnsPPredictiontranscript pthis = NULL;
if (!Ppt)
return;
#if defined(AJ_DEBUG) && AJ_DEBUG >= 1
if (ajDebugTest("ensPredictiontranscriptDel"))
{
ajDebug("ensPredictiontranscriptDel\n"
" *Ppt %p\n",
*Ppt);
ensPredictiontranscriptTrace(*Ppt, 1);
}
#endif /* defined(AJ_DEBUG) && AJ_DEBUG >= 1 */
if (!(pthis = *Ppt) || --pthis->Use)
{
*Ppt = NULL;
return;
}
ensFeatureDel(&pthis->Feature);
ajStrDel(&pthis->Displaylabel);
/* Clear and delete the AJAX List of Ensembl Prediction Exon objects. */
while (ajListPop(pthis->Predictionexons, (void **) &pe))
ensPredictionexonDel(&pe);
ajListFree(&pthis->Predictionexons);
ajMemFree((void **) Ppt);
return;
}
/* @section member retrieval **************************************************
**
** Functions for returning members of an Ensembl Prediction Transcript object.
**
** @fdata [EnsPPredictiontranscript]
**
** @nam3rule Get Return Prediction Transcript attribute(s)
** @nam4rule Adaptor Return the Ensembl Prediction Transcript Adaptor
** @nam4rule Displaylabel Return the display label
** @nam4rule Feature Return the Ensembl Feature
** @nam4rule Identifier Return the SQL database-internal identifier
**
** @argrule * pt [const EnsPPredictiontranscript] Prediction Transcript
**
** @valrule Adaptor [EnsPPredictiontranscriptadaptor]
** Ensembl Prediction Transcript Adaptor or NULL
** @valrule Displaylabel [AjPStr] Display label or NULL
** @valrule Feature [EnsPFeature] Ensembl Feature or NULL
** @valrule Identifier [ajuint] SQL database-internal identifier or 0U
**
** @fcategory use
******************************************************************************/
/* @func ensPredictiontranscriptGetAdaptor ************************************
**
** Get the Ensembl Prediction Transcript Adaptor member of an
** Ensembl Prediction Transcript.
**
** @cc Bio::EnsEMBL::Storable::adaptor
** @param [r] pt [const EnsPPredictiontranscript] Ensembl Prediction Transcript
**
** @return [EnsPPredictiontranscriptadaptor]
** Ensembl Prediction Transcript Adaptor or NULL
**
** @release 6.2.0
** @@
******************************************************************************/
EnsPPredictiontranscriptadaptor ensPredictiontranscriptGetAdaptor(
const EnsPPredictiontranscript pt)
{
return (pt) ? pt->Adaptor : NULL;
}
/* @func ensPredictiontranscriptGetDisplaylabel *******************************
**
** Get the display label member of an Ensembl Prediction Transcript.
**
** @cc Bio::EnsEMBL::PredictionTranscript::display_label
** @param [r] pt [const EnsPPredictiontranscript] Ensembl Prediction Transcript
**
** @return [AjPStr] Display label or NULL
**
** @release 6.4.0
** @@
******************************************************************************/
AjPStr ensPredictiontranscriptGetDisplaylabel(
const EnsPPredictiontranscript pt)
{
return (pt) ? pt->Displaylabel : NULL;
}
/* @func ensPredictiontranscriptGetFeature ************************************
**
** Get the Ensembl Feature member of an Ensembl Prediction Transcript.
**
** @param [r] pt [const EnsPPredictiontranscript] Ensembl Prediction Transcript
**
** @return [EnsPFeature] Ensembl Feature or NULL
**
** @release 6.2.0
** @@
******************************************************************************/
EnsPFeature ensPredictiontranscriptGetFeature(
const EnsPPredictiontranscript pt)
{
return (pt) ? pt->Feature : NULL;
}
/* @func ensPredictiontranscriptGetIdentifier *********************************
**
** Get the SQL database-internal identifier member of an
** Ensembl Prediction Transcript.
**
** @cc Bio::EnsEMBL::Storable::dbID
** @param [r] pt [const EnsPPredictiontranscript] Ensembl Prediction Transcript
**
** @return [ajuint] SQL database-internal identifier or 0U
**
** @release 6.2.0
** @@
******************************************************************************/
ajuint ensPredictiontranscriptGetIdentifier(
const EnsPPredictiontranscript pt)
{
return (pt) ? pt->Identifier : 0U;
}
/* @section load on demand ****************************************************
**
** Functions for returning members of an Ensembl Prediction Transcript object,
** which may need loading from an Ensembl SQL database on demand.
**
** @fdata [EnsPPredictiontranscript]
**
** @nam3rule Load Return Ensembl Prediction Transcript attribute(s)
** loaded on demand
** @nam4rule Predictionexons Return all Ensembl Prediction Exon objects
**
** @argrule * pt [EnsPPredictiontranscript] Ensembl Prediction Transcript
**
** @valrule Predictionexons [const AjPList] AJAX List of
** Ensembl Prediction Exon objects or NULL
**
** @fcategory use
******************************************************************************/
/* @func ensPredictiontranscriptLoadPredictionexons ***************************
**
** Load all Ensembl Prediction Exon objects of an
** Ensembl Prediction Transcript.
**
** This is not a simple accessor function, since it will attempt fetching the
** Prediction Exon objects from the Ensembl Core database associated with the
** Prediction Transcript Adaptor.
**
** @cc Bio::EnsEMBL::PredictionTranscript::get_all_Exons
** @param [u] pt [EnsPPredictiontranscript] Ensembl Prediction Transcript
**
** @return [const AjPList] AJAX List of Ensembl Prediction Exon objects
**
** @release 6.4.0
** @@
******************************************************************************/
const AjPList ensPredictiontranscriptLoadPredictionexons(
EnsPPredictiontranscript pt)
{
EnsPDatabaseadaptor dba = NULL;
EnsPPredictionexonadaptor pea = NULL;
if (!pt)
return NULL;
if (pt->Predictionexons)
return pt->Predictionexons;
if (!pt->Adaptor)
{
ajDebug("ensPredictiontranscriptGetPredictionexons cannot fetch "
"Ensembl Prediction Exon objects for an "
"Ensembl Prediction Transcript without an "
"Ensembl Prediction Transcript Adaptor.\n");
return NULL;
}
dba = ensPredictiontranscriptadaptorGetDatabaseadaptor(pt->Adaptor);
pea = ensRegistryGetPredictionexonadaptor(dba);
pt->Predictionexons = ajListNew();
ensPredictionexonadaptorFetchAllbyPredictiontranscript(
pea,
pt,
pt->Predictionexons);
return pt->Predictionexons;
}
/* @section member assignment *************************************************
**
** Functions for assigning members of an Ensembl Prediction Transcript object.
**
** @fdata [EnsPPredictiontranscript]
**
** @nam3rule Set Set one member of a Prediction Transcript
** @nam4rule Adaptor Set the Ensembl Prediction Transcript Adaptor
** @nam4rule Displaylabel Set the display label
** @nam4rule Feature Set the Ensembl Feature
** @nam4rule Identifier Set the SQL database-internal identifier
**
** @argrule * pt [EnsPPredictiontranscript] Ensembl Prediction Transcript
** @argrule Adaptor pta [EnsPPredictiontranscriptadaptor]
** Ensembl Prediction Transcript Adaptor
** @argrule Displaylabel label [AjPStr] Display label
** @argrule Feature feature [EnsPFeature] Ensembl Feature
** @argrule Identifier identifier [ajuint] SQL database-internal identifier
**
** @valrule * [AjBool] ajTrue upon success, ajFalse otherwise
**
** @fcategory modify
******************************************************************************/
/* @func ensPredictiontranscriptSetAdaptor ************************************
**
** Set the Ensembl Prediction Transcript Adaptor member of an
** Ensembl Prediction Transcript.
**
** @cc Bio::EnsEMBL::Storable::adaptor
** @param [u] pt [EnsPPredictiontranscript] Ensembl Prediction Transcript
** @param [u] pta [EnsPPredictiontranscriptadaptor]
** Ensembl Prediction Transcript Adaptor
**
** @return [AjBool] ajTrue upon success, ajFalse otherwise
**
** @release 6.2.0
** @@
******************************************************************************/
AjBool ensPredictiontranscriptSetAdaptor(
EnsPPredictiontranscript pt,
EnsPPredictiontranscriptadaptor pta)
{
if (!pt)
return ajFalse;
pt->Adaptor = pta;
return ajTrue;
}
/* @func ensPredictiontranscriptSetDisplaylabel *******************************
**
** Set the display label member of an Ensembl Prediction Transcript.
**
** @cc Bio::EnsEMBL::PredictionTranscript::display_label
** @param [u] pt [EnsPPredictiontranscript] Ensembl Prediction Transcript
** @param [u] label [AjPStr] Display label
**
** @return [AjBool] ajTrue upon success, ajFalse otherwise
**
** @release 6.4.0
** @@
******************************************************************************/
AjBool ensPredictiontranscriptSetDisplaylabel(
EnsPPredictiontranscript pt,
AjPStr label)
{
if (!pt)
return ajFalse;
ajStrDel(&pt->Displaylabel);
pt->Displaylabel = ajStrNewRef(label);
return ajTrue;
}
/* @func ensPredictiontranscriptSetFeature ************************************
**
** Set the Ensembl Feature member of an Ensembl Prediction Transcript.
**
** @param [u] pt [EnsPPredictiontranscript] Ensembl Prediction Transcript
** @param [u] feature [EnsPFeature] Ensembl Feature
**
** @return [AjBool] ajTrue upon success, ajFalse otherwise
**
** @release 6.2.0
** @@
******************************************************************************/
AjBool ensPredictiontranscriptSetFeature(
EnsPPredictiontranscript pt,
EnsPFeature feature)
{
AjIList iter = NULL;
EnsPPredictionexon oldpe = NULL;
EnsPPredictionexon newpe = NULL;
EnsPSlice slice = NULL;
if (!pt)
return ajFalse;
ensFeatureDel(&pt->Feature);
pt->Feature = ensFeatureNewRef(feature);
slice = ensFeatureGetSlice(pt->Feature);
/*
** Transfer Ensembl Prediction Exon objects onto the new Ensembl Feature
** Slice.
*/
if (pt->Predictionexons)
{
iter = ajListIterNew(pt->Predictionexons);
while (!ajListIterDone(iter))
{
oldpe = (EnsPPredictionexon) ajListIterGet(iter);
ajListIterRemove(iter);
newpe = ensPredictionexonTransfer(oldpe, slice);
if (!newpe)
{
ajDebug("ensPredictiontranscriptSetFeature could not transfer "
"Prediction Exon onto new Ensembl Feature Slice.");
ensPredictionexonTrace(oldpe, 1);
}
ajListIterInsert(iter, (void *) newpe);
/* Advance the AJAX List Iterator after the insert. */
(void) ajListIterGet(iter);
ensPredictionexonDel(&oldpe);
}
ajListIterDel(&iter);
}
return ajTrue;
}
/* @func ensPredictiontranscriptSetIdentifier *********************************
**
** Set the SQL database-internal identifier member of an
** Ensembl Prediction Transcript.
**
** @cc Bio::EnsEMBL::Storable::dbID
** @param [u] pt [EnsPPredictiontranscript] Ensembl Prediction Transcript
** @param [r] identifier [ajuint] SQL database-internal identifier
**
** @return [AjBool] ajTrue upon success, ajFalse otherwise
**
** @release 6.2.0
** @@
******************************************************************************/
AjBool ensPredictiontranscriptSetIdentifier(
EnsPPredictiontranscript pt,
ajuint identifier)
{
if (!pt)
return ajFalse;
pt->Identifier = identifier;
return ajTrue;
}
/* @section debugging *********************************************************
**
** Functions for reporting of an Ensembl Prediction Transcript object.
**
** @fdata [EnsPPredictiontranscript]
**
** @nam3rule Trace Report Ensembl Prediction Transcript members to debug file
**
** @argrule Trace pt [const EnsPPredictiontranscript] Ensembl Prediction
** Transcript
** @argrule Trace level [ajuint] Indentation level
**
** @valrule * [AjBool] ajTrue upon success, ajFalse otherwise
**
** @fcategory misc
******************************************************************************/
/* @func ensPredictiontranscriptTrace *****************************************
**
** Trace an Ensembl Prediction Transcript.
**
** @param [r] pt [const EnsPPredictiontranscript] Ensembl Prediction Transcript
** @param [r] level [ajuint] Indentation level
**
** @return [AjBool] ajTrue upon success, ajFalse otherwise
**
** @release 6.2.0
** @@
******************************************************************************/
AjBool ensPredictiontranscriptTrace(
const EnsPPredictiontranscript pt,
ajuint level)
{
AjIList iter = NULL;
AjPStr indent = NULL;
EnsPPredictionexon pe = NULL;
if (!pt)
return ajFalse;
indent = ajStrNew();
ajStrAppendCountK(&indent, ' ', level * 2);
ajDebug("%SensPredictiontranscriptTrace %p\n"
"%S Use %u\n"
"%S Identifier %u\n"
"%S Adaptor %p\n"
"%S Feature %p\n"
"%S Displaylabel '%S'\n"
"%S Predictionexons %p\n",
indent, pt,
indent, pt->Use,
indent, pt->Identifier,
indent, pt->Adaptor,
indent, pt->Feature,
indent, pt->Displaylabel,
indent, pt->Predictionexons);
ensFeatureTrace(pt->Feature, level + 1);
/* Trace the AJAX List of Ensembl Prediction Exon objects. */
if (pt->Predictionexons)
{
ajDebug("%S AJAX List %p of Ensembl Prediction Exon objects\n",
indent, pt->Predictionexons);
iter = ajListIterNewread(pt->Predictionexons);
while (!ajListIterDone(iter))
{
pe = (EnsPPredictionexon) ajListIterGet(iter);
ensPredictionexonTrace(pe, level + 2);
}
ajListIterDel(&iter);
}
ajStrDel(&indent);
return ajTrue;
}
/* @section calculate *********************************************************
**
** Functions for calculating information from an
** Ensembl Prediction Transcript object.
**
** @fdata [EnsPPredictiontranscript]
**
** @nam3rule Calculate Calculate Ensembl Prediction Transcript information
** @nam4rule Length Calculate the length
** @nam4rule Memsize Calculate the memory size in bytes
** @nam4rule Slice Calculate Ensembl Transcript coordinates relative to
** an Ensembl Slice
** @nam5rule Coding Calculate Ensembl Transcript coding coordinates
** @nam6rule End Calculate the Ensembl Transcript coding end coordinate
** @nam6rule Start Calculate the Ensembl Transcript coding start coordinate
** @nam4rule Transcript Calculate Ensembl Transcript coordinates relative to
** an Ensembl Transcript
** @nam5rule Coding Calculate Ensembl Transcript coding coordinates
** @nam6rule End Calculate the Ensembl Transcript coding end coordinate
** @nam6rule Start Calculate the Ensembl Transcript coding start coordinate
** @nam5rule End Calculate the Ensembl Transcript end coordinate
** @nam5rule Start Calculate the Ensembl Transcript start coordinate
**
** @argrule Memsize pt [const EnsPPredictiontranscript]
** Ensembl Prediction Transcript
** @argrule Slice pt [const EnsPPredictiontranscript]
** Ensembl Prediction Transcript
** @argrule TranscriptCodingEnd pt [EnsPPredictiontranscript]
** Ensembl Prediction Transcript
** @argrule TranscriptCodingStart pt [const EnsPPredictiontranscript]
** Ensembl Prediction Transcript
**
** @valrule Length [ajuint] Transcript (cDNA) length or 0U
** @valrule Memsize [size_t] Memory size in bytes or 0
** @valrule SliceCodingEnd [ajint] End coordinate or 0
** @valrule SliceCodingStart [ajint] Start coordinate or 0
** @valrule TranscriptCodingEnd [ajuint] End coordinate or 0U
** @valrule TranscriptCodingStart [ajuint] Start coordinate or 0U
** @valrule TranscriptEnd [ajuint] End coordinate or 0U
** @valrule TranscriptStart [ajuint] Start coordinate or 0U
**
** @fcategory misc
******************************************************************************/
/* @func ensPredictiontranscriptCalculateMemsize ******************************
**
** Calculate the memory size in bytes of an Ensembl Prediction Transcript.
**
** @param [r] pt [const EnsPPredictiontranscript] Ensembl Prediction Transcript
**
** @return [size_t] Memory size in bytes or 0
**
** @release 6.4.0
** @@
******************************************************************************/
size_t ensPredictiontranscriptCalculateMemsize(
const EnsPPredictiontranscript pt)
{
size_t size = 0;
AjIList iter = NULL;
EnsPPredictionexon pe = NULL;
if (!pt)
return 0;
size += sizeof (EnsOPredictiontranscript);
size += ensFeatureCalculateMemsize(pt->Feature);
if (pt->Displaylabel)
{
size += sizeof (AjOStr);
size += ajStrGetRes(pt->Displaylabel);
}
/* Summarise the AJAX List of Ensembl Prediction Exon objects. */
if (pt->Predictionexons)
{
size += sizeof (AjOList);
iter = ajListIterNewread(pt->Predictionexons);
while (!ajListIterDone(iter))
{
pe = (EnsPPredictionexon) ajListIterGet(iter);
size += ensPredictionexonCalculateMemsize(pe);
}
ajListIterDel(&iter);
}
return size;
}
/* @func ensPredictiontranscriptCalculateSliceCodingEnd ***********************
**
** Calculate the end position of the coding region in Slice coordinates.
**
** Calculates the end of the coding region of this Prediction Transcript in
** Slice coordinates. For Prediction Transcript objects this is always the same
** as the end since no UTRs are stored. By convention, the coding region end,
** returned by ensPredictiontranscriptCalculateSliceCodingEnd is always higher
** than the value returned by the
** ensPredictiontranscriptCalculateSliceCodingStart function. The value
** returned by this function is NOT the biological coding end, since on the
** reverse strand the biological coding end would be the lower genomic value.
**
** @cc Bio::EnsEMBL::PredictionTranscript::coding_region_end
** @param [r] pt [const EnsPPredictiontranscript] Ensembl Prediction Transcript
**
** @return [ajint] Coding region end in Slice coordinates
**
** @release 6.4.0
** @@
******************************************************************************/
ajint ensPredictiontranscriptCalculateSliceCodingEnd(
const EnsPPredictiontranscript pt)
{
if (!pt)
return 0;
return ensFeatureGetEnd(pt->Feature);
}
/* @func ensPredictiontranscriptCalculateSliceCodingStart *********************
**
** Calculate the start position of the coding region in Slice coordinates.
**
** Calculates the start of the coding region of this Prediction Transcript in
** Slice coordinates. For Prediction Transcript objects this is always the
** start of the transcript (i.e. there is no UTR). By convention, the coding
** region start returned by ensPredictiontranscriptCalculateSliceCodingStart
** is always lower than the value returned by the
** ensPredictiontranscriptCalculateSliceCodingEnd function.
** The value returned by this function is NOT the biological coding start,
** since on the reverse strand the biological coding start would be the higher
** genomic value.
**
** @cc Bio::EnsEMBL::PredictionTranscript::coding_region_start
** @param [r] pt [const EnsPPredictiontranscript] Ensembl Prediction Transcript
**
** @return [ajint] Coding region start in Slice coordinates
**
** @release 6.4.0
** @@
******************************************************************************/
ajint ensPredictiontranscriptCalculateSliceCodingStart(
const EnsPPredictiontranscript pt)
{
if (!pt)
return 0;
return ensFeatureGetStart(pt->Feature);
}
/* @func ensPredictiontranscriptCalculateTranscriptCodingEnd ******************
**
** Calculate the end position of the coding region in Prediction Transcript
** coordinates.
**
** @cc Bio::EnsEMBL::PredictionTranscript::cdna_coding_end
** @param [u] pt [EnsPPredictiontranscript] Ensembl Prediction Transcript
**
** @return [ajuint] Coding region end in Transcript coordinates or 0U
**
** @release 6.4.0
** @@
******************************************************************************/
ajuint ensPredictiontranscriptCalculateTranscriptCodingEnd(
EnsPPredictiontranscript pt)
{
ajuint end = 0U;
AjIList iter = NULL;
const AjPList pes = NULL;
EnsPPredictionexon pe = NULL;
EnsPFeature feature = NULL;
if (!pt)
return 0U;
pes = ensPredictiontranscriptLoadPredictionexons(pt);
iter = ajListIterNewread(pes);
while (!ajListIterDone(iter))
{
pe = (EnsPPredictionexon) ajListIterGet(iter);
/* Add the entire length of this Prediction Exon. */
feature = ensPredictionexonGetFeature(pe);
end += ensFeatureCalculateLength(feature);
}
ajListIterDel(&iter);
return end;
}
/* @func ensPredictiontranscriptCalculateTranscriptCodingStart ****************
**
** Calculate the start position of the coding region in Prediction Transcript
** coordinates.
**
** @cc Bio::EnsEMBL::PredictionTranscript::cdna_coding_start
** @param [r] pt [const EnsPPredictiontranscript] Ensembl Prediction Transcript
**
** @return [ajuint] Coding region start in Transcript coordinates or 0U
**
** @release 6.4.0
** @@
******************************************************************************/
ajuint ensPredictiontranscriptCalculateTranscriptCodingStart(
const EnsPPredictiontranscript pt)
{
if (!pt)
return 0U;
return 1U;
}
/* @section fetch *************************************************************
**
** Functions for fetching information from an
** Ensembl Prediction Transcript object.
**
** @fdata [EnsPPredictiontranscript]
**
** @nam3rule Fetch Fetch Ensembl Prediction Transcript information
** @nam4rule All Fetch all objects
** @nam4rule Sequence Fetch the sequence
** @nam5rule Coding Fetch the coding sequence
** @nam5rule Transcript Fetch the Ensembl Transcript (cDNA) sequence
** @nam6rule Seq Fetch as AJAX Sequence object
** @nam6rule Str Fetch as AJAX String object
** @nam5rule Translation Fetch the Ensembl Translation sequence
** @nam6rule Seq Fetch as AJAX Sequence object
** @nam6rule Str Fetch as AJAX String object
**
** @argrule * pt [EnsPPredictiontranscript] Ensembl Prediction Transcript
** @argrule Seq Psequence [AjPSeq*] AJAX Sequence address
** @argrule Str Psequence [AjPStr*] AJAX String address
**
** @valrule * [AjBool] ajTrue upon success, ajFalse otherwise
**
** @fcategory misc
******************************************************************************/
/* @func ensPredictiontranscriptFetchSequenceTranscriptSeq ********************
**
** Fetch the sequence of an Ensembl Prediction Transcript as AJAX Sequence.
** The caller is responsible for deleting the AJAX Sequence.
**
** @cc Bio::EnsEMBL::PredictionTranscript:spliced_seq
** @param [u] pt [EnsPPredictiontranscript] Ensembl Prediction Transcript
** @param [wP] Psequence [AjPSeq*] AJAX Sequence address
**
** @return [AjBool] ajTrue upon success, ajFalse otherwise
**
** @release 6.4.0
** @@
******************************************************************************/
AjBool ensPredictiontranscriptFetchSequenceTranscriptSeq(
EnsPPredictiontranscript pt,
AjPSeq *Psequence)
{
AjPStr sequence = NULL;
if (!pt)
return ajFalse;
if (!Psequence)
return ajFalse;
/*
** It is sligtly more efficient, if undefined AJAX String objects are
** directly allocated by the following functions to their final size.
*/
ensPredictiontranscriptFetchSequenceTranscriptStr(pt, &sequence);
if (*Psequence)
{
ajSeqClear(*Psequence);
ajSeqAssignNameS(*Psequence, pt->Displaylabel);
ajSeqAssignSeqS(*Psequence, sequence);
}
else
*Psequence = ajSeqNewNameS(sequence, pt->Displaylabel);
ajSeqSetNuc(*Psequence);
ajStrDel(&sequence);
return ajTrue;
}
/* @func ensPredictiontranscriptFetchSequenceTranscriptStr ********************
**
** Fetch the spliced sequence of an Ensembl Prediction Transcript as
** AJAX String.
**
** The sequence of all Ensembl Prediction Exon objects is concatenated.
**
** The caller is responsible for deleting the AJAX String.
**
** @cc Bio::EnsEMBL::PredictionTranscript::spliced_seq
** @param [u] pt [EnsPPredictiontranscript] Ensembl Prediction Transcript
** @param [wP] Psequence [AjPStr*] AJAX String address
**
** @return [AjBool] ajTrue upon success, ajFalse otherwise
**
** @release 6.4.0
** @@
******************************************************************************/
AjBool ensPredictiontranscriptFetchSequenceTranscriptStr(
EnsPPredictiontranscript pt,
AjPStr *Psequence)
{
AjIList iter = NULL;
const AjPList pes = NULL;
AjPStr sequence = NULL;
EnsPPredictionexon pe = NULL;
EnsPFeature feature = NULL;
if (!pt)
return ajFalse;
if (!Psequence)
return ajFalse;
if (*Psequence)
ajStrAssignClear(Psequence);
else
*Psequence = ajStrNew();
sequence = ajStrNew();
pes = ensPredictiontranscriptLoadPredictionexons(pt);
iter = ajListIterNewread(pes);
while (!ajListIterDone(iter))
{
pe = (EnsPPredictionexon) ajListIterGet(iter);
ensPredictionexonFetchSequenceStr(pe, &sequence);
if (sequence && ajStrGetLen(sequence))
ajStrAppendS(Psequence, sequence);
else
{
ajDebug("ensPredictiontranscriptFetchSequenceTranscriptStr could "
"not get sequence for Prediction Exon. The "
"Prediction Transcript sequence may not be correct.\n");
feature = ensPredictionexonGetFeature(pe);
ajStrAppendCountK(Psequence,
'N',
ensFeatureCalculateLength(feature));
}
}
ajListIterDel(&iter);
ajStrDel(&sequence);
return ajTrue;
}
/* @func ensPredictiontranscriptFetchSequenceTranslationSeq *******************
**
** Fetch the sequence of the Ensembl Prediction Translation of an
** Ensembl Prediction Transcript as AJAX Sequence.
**
** The sequence is based on ensPredictiontranscriptFetchSequenceTranslationStr.
**
** The caller is responsible for deleting the AJAX Sequence.
**
** @cc Bio::EnsEMBL::PredictionTranscript::translate
** @param [u] pt [EnsPPredictiontranscript] Ensembl Prediction Transcript
** @param [wP] Psequence [AjPSeq*] AJAX Sequence address
**
** @return [AjBool] ajTrue upon success, ajFalse otherwise
**
** @release 6.4.0
** @@
******************************************************************************/
AjBool ensPredictiontranscriptFetchSequenceTranslationSeq(
EnsPPredictiontranscript pt,
AjPSeq *Psequence)
{
AjPStr sequence = NULL;
if (!pt)
return ajFalse;
if (!Psequence)
return ajFalse;
/*
** It is sligtly more efficient, if undefined AJAX String objects are
** directly allocated by the following functions to their final size.
*/
ensPredictiontranscriptFetchSequenceTranslationStr(pt, &sequence);
if (*Psequence)
{
ajSeqClear(*Psequence);
ajSeqAssignNameS(*Psequence, pt->Displaylabel);
ajSeqAssignSeqS(*Psequence, sequence);
}
else
*Psequence = ajSeqNewNameS(sequence, pt->Displaylabel);
ajSeqSetProt(*Psequence);
ajStrDel(&sequence);
return ajTrue;
}
/* @func ensPredictiontranscriptFetchSequenceTranslationStr *******************
**
** Fetch the sequence of the Ensembl Prediction Translation of an
** Ensembl Prediction Transcript as AJAX String.
**
** The sequence is based on ensPredictiontranscriptFetchSequenceTranscriptStr.
**
** The caller is responsible for deleting the AJAX String.
**
** @cc Bio::EnsEMBL::PredictionTranscript::translate
** @param [u] pt [EnsPPredictiontranscript] Ensembl Prediction Transcript
** @param [wP] Psequence [AjPStr*] AJAX String address
**
** @return [AjBool] ajTrue upon success, ajFalse otherwise
**
** @release 6.4.0
** @@
******************************************************************************/
AjBool ensPredictiontranscriptFetchSequenceTranslationStr(
EnsPPredictiontranscript pt,
AjPStr *Psequence)
{
AjPStr sequence = NULL;
const AjPTrn atranslation = NULL;
EnsPSlice slice = NULL;
if (ajDebugTest("ensPredictiontranscriptFetchSequenceTranslationStr"))
ajDebug("ensPredictiontranscriptFetchSequenceTranslationStr\n"
" pt %p\n"
" Psequence %p\n",
pt,
Psequence);
if (!pt)
return ajFalse;
if (!Psequence)
return ajFalse;
if (*Psequence)
ajStrAssignClear(Psequence);
else
*Psequence = ajStrNew();
/*
** Ensembl Prediction Transcript objects have no untranslated regions
** (UTRs), so that it is sufficient to fetch the Prediction Transcript
** sequence, rather than the translatable sequence, as in the case of an
** Ensembl Transcript.
**
** It is sligtly more efficient, if undefined AJAX String objects are
** directly allocated by the following functions to their final size.
*/
ensPredictiontranscriptFetchSequenceTranscriptStr(pt, &sequence);
if (ajStrGetLen(sequence) < 1)
return ajTrue;
slice = ensFeatureGetSlice(pt->Feature);
atranslation = ensSliceGetTranslation(slice);
ajTrnSeqS(atranslation, sequence, Psequence);
ajStrDel(&sequence);
/*
** Remove the final stop codon from the mRNA if it is present, so that the
** resulting peptides do not end with a '*'. If a terminal stop codon is
** desired, call ensTranscriptFetchSequenceCodingStr and translate it
** directly.
** NOTE: This test is simpler and hopefully more efficient than the one
** in the Perl API, which tests for a termination codon in a
** codon table-specifc manner and removes the last triplet from the cDNA.
*/
if (ajStrGetCharLast(*Psequence) == '*')
ajStrCutEnd(Psequence, 1);
return ajTrue;
}
/* @section map ***************************************************************
**
** Functions for mapping Ensembl Prediction Transcript objects between
** Ensembl Coordinate System objects.
**
** @fdata [EnsPPredictiontranscript]
**
** @nam3rule Transfer Transfer an Ensembl Prediction Transcript
** @nam3rule Transform Transform an Ensembl Prediction Transcript
**
** @argrule * pt [EnsPPredictiontranscript] Ensembl Prediction Transcript
** @argrule Transfer slice [EnsPSlice] Ensembl Slice
** @argrule Transform csname [const AjPStr] Ensembl Coordinate System name
** @argrule Transform csversion [const AjPStr] Ensembl Coordinate System
** version
**
** @valrule * [EnsPPredictiontranscript] Ensembl Prediction Transcript or NULL
**
** @fcategory misc
******************************************************************************/
/* @func ensPredictiontranscriptTransfer **************************************
**
** Transfer an Ensembl Prediction Transcript onto another Ensembl Slice.
**
** @cc Bio::EnsEMBL::PredictionTranscript::transfer
** @param [u] pt [EnsPPredictiontranscript] Ensembl Prediction Transcript
** @param [u] slice [EnsPSlice] Ensembl Slice
** @see ensFeatureTransfer
**
** @return [EnsPPredictiontranscript] Ensembl Prediction Transcript or NULL
**
** @release 6.4.0
** @@
******************************************************************************/
EnsPPredictiontranscript ensPredictiontranscriptTransfer(
EnsPPredictiontranscript pt,
EnsPSlice slice)
{
EnsPFeature newptf = NULL;
EnsPPredictiontranscript newpt = NULL;
if (ajDebugTest("ensPredictiontranscriptTransfer"))
ajDebug("ensPredictiontranscriptTransfer\n"
" pt %p\n"
" slice %p\n",
pt,
slice);
if (!pt)
return NULL;
if (!slice)
return NULL;
if (!pt->Feature)
ajFatal("ensPredictiontranscriptTransfer cannot transfer an "
"Ensembl Prediction Transcript "
"without an Ensembl Feature.\n");
newptf = ensFeatureTransfer(pt->Feature, slice);
if (!newptf)
return NULL;
newpt = predictiontranscriptNewCpyFeatures(pt);
ensPredictiontranscriptSetFeature(newpt, newptf);
ensFeatureDel(&newptf);
return newpt;
}
/* @func ensPredictiontranscriptTransform *************************************
**
** Transform an Ensembl Prediction Transcript into another
** Ensembl Coordinate System.
**
** @cc Bio::EnsEMBL::PredictionTranscript::transform
** @param [u] pt [EnsPPredictiontranscript] Ensembl Prediction Transcript
** @param [r] csname [const AjPStr] Ensembl Coordinate System name
** @param [rN] csversion [const AjPStr] Ensembl Coordinate System version
** @see ensFeatureTransform
**
** @return [EnsPPredictiontranscript] Ensembl Prediction Transcript or NULL
**
** @release 6.4.0
** @@
******************************************************************************/
EnsPPredictiontranscript ensPredictiontranscriptTransform(
EnsPPredictiontranscript pt,
const AjPStr csname,
const AjPStr csversion)
{
EnsPFeature newptf = NULL;
EnsPPredictiontranscript newpt = NULL;
if (ajDebugTest("ensPredictiontranscriptTransform"))
ajDebug("ensPredictiontranscriptTransform\n"
" pt %p\n"
" csname '%S'\n"
" csversion '%S'\n",
pt,
csname,
csversion);
if (!pt)
return NULL;
if (!csname)
return NULL;
if (!pt->Feature)
ajFatal("ensPredictiontranscriptTransfer cannot transfer an "
"Ensembl Prediction Transcript "
"without an Ensembl Feature.\n");
newptf = ensFeatureTransform(pt->Feature,
csname,
csversion,
(EnsPSlice) NULL);
if (!newptf)
return NULL;
newpt = predictiontranscriptNewCpyFeatures(pt);
ensPredictiontranscriptSetFeature(newpt, newptf);
ensFeatureDel(&newptf);
return newpt;
}
/* @datasection [AjPList] AJAX List *******************************************
**
** @nam2rule List Functions for manipulating AJAX List objects
**
******************************************************************************/
/* @funcstatic listPredictiontranscriptCompareEndAscending ********************
**
** AJAX List of Ensembl Prediction Transcript objects comparison function to
** sort by Ensembl Feature end member in ascending order.
**
** @param [r] item1 [const void*] Ensembl Prediction Transcript address 1
** @param [r] item2 [const void*] Ensembl Prediction Transcript address 2
** @see ajListSort
**
** @return [int] The comparison function returns an integer less than,
** equal to, or greater than zero if the first argument is
** considered to be respectively less than, equal to, or
** greater than the second.
**
** @release 6.4.0
** @@
******************************************************************************/
static int listPredictiontranscriptCompareEndAscending(
const void *item1,
const void *item2)
{
EnsPPredictiontranscript pt1 = *(EnsOPredictiontranscript *const *) item1;
EnsPPredictiontranscript pt2 = *(EnsOPredictiontranscript *const *) item2;
#if defined(AJ_DEBUG) && AJ_DEBUG >= 2
if (ajDebugTest("listPredictiontranscriptCompareEndAscending"))
ajDebug("listPredictiontranscriptCompareEndAscending\n"
" pt1 %p\n"
" pt2 %p\n",
pt1,
pt2);
#endif /* defined(AJ_DEBUG) && AJ_DEBUG >= 2 */
/* Sort empty values towards the end of the AJAX List. */
if (pt1 && (!pt2))
return -1;
if ((!pt1) && (!pt2))
return 0;
if ((!pt1) && pt2)
return +1;
return ensFeatureCompareEndAscending(pt1->Feature, pt2->Feature);
}
/* @funcstatic listPredictiontranscriptCompareEndDescending *******************
**
** AJAX List of Ensembl Prediction Transcript objects comparison function to
** sort by Ensembl Feature end member in descending order.
**
** @param [r] item1 [const void*] Ensembl Prediction Transcript address 1
** @param [r] item2 [const void*] Ensembl Prediction Transcript address 2
** @see ajListSort
**
** @return [int] The comparison function returns an integer less than,
** equal to, or greater than zero if the first argument is
** considered to be respectively less than, equal to, or
** greater than the second.
**
** @release 6.4.0
** @@
******************************************************************************/
static int listPredictiontranscriptCompareEndDescending(
const void *item1,
const void *item2)
{
EnsPPredictiontranscript pt1 = *(EnsOPredictiontranscript *const *) item1;
EnsPPredictiontranscript pt2 = *(EnsOPredictiontranscript *const *) item2;
#if defined(AJ_DEBUG) && AJ_DEBUG >= 2
if (ajDebugTest("listPredictiontranscriptCompareEndDescending"))
ajDebug("listPredictiontranscriptCompareEndDescending\n"
" pt1 %p\n"
" pt2 %p\n",
pt1,
pt2);
#endif /* defined(AJ_DEBUG) && AJ_DEBUG >= 2 */
/* Sort empty values towards the end of the AJAX List. */
if (pt1 && (!pt2))
return -1;
if ((!pt1) && (!pt2))
return 0;
if ((!pt1) && pt2)
return +1;
return ensFeatureCompareEndDescending(pt1->Feature, pt2->Feature);
}
/* @funcstatic listPredictiontranscriptCompareIdentifierAscending *************
**
** AJAX List of Ensembl Prediction Transcript objects comparison function to
** sort by identifier member in ascending order.
**
** @param [r] item1 [const void*] Ensembl Prediction Transcript address 1
** @param [r] item2 [const void*] Ensembl Prediction Transcript address 2
** @see ajListSort
**
** @return [int] The comparison function returns an integer less than,
** equal to, or greater than zero if the first argument is
** considered to be respectively less than, equal to, or
** greater than the second.
**
** @release 6.4.0
** @@
******************************************************************************/
static int listPredictiontranscriptCompareIdentifierAscending(
const void *item1,
const void *item2)
{
EnsPPredictiontranscript pt1 = *(EnsOPredictiontranscript *const *) item1;
EnsPPredictiontranscript pt2 = *(EnsOPredictiontranscript *const *) item2;
#if defined(AJ_DEBUG) && AJ_DEBUG >= 2
if (ajDebugTest("listPredictiontranscriptCompareIdentifierAscending"))
ajDebug("listPredictiontranscriptCompareIdentifierAscending\n"
" pt1 %p\n"
" pt2 %p\n",
pt1,
pt2);
#endif /* defined(AJ_DEBUG) && AJ_DEBUG >= 2 */
/* Sort empty values towards the end of the AJAX List. */
if (pt1 && (!pt2))
return -1;
if ((!pt1) && (!pt2))
return 0;
if ((!pt1) && pt2)
return +1;
if (pt1->Identifier < pt2->Identifier)
return -1;
if (pt1->Identifier > pt2->Identifier)
return +1;
return 0;
}
/* @funcstatic listPredictiontranscriptCompareStartAscending ******************
**
** AJAX List of Ensembl Prediction Transcript objects comparison function to
** sort by Ensembl Feature start member in ascending order.
**
** @param [r] item1 [const void*] Ensembl Prediction Transcript address 1
** @param [r] item2 [const void*] Ensembl Prediction Transcript address 2
** @see ajListSort
**
** @return [int] The comparison function returns an integer less than,
** equal to, or greater than zero if the first argument is
** considered to be respectively less than, equal to, or
** greater than the second.
**
** @release 6.4.0
** @@
******************************************************************************/
static int listPredictiontranscriptCompareStartAscending(
const void *item1,
const void *item2)
{
EnsPPredictiontranscript pt1 = *(EnsOPredictiontranscript *const *) item1;
EnsPPredictiontranscript pt2 = *(EnsOPredictiontranscript *const *) item2;
#if defined(AJ_DEBUG) && AJ_DEBUG >= 2
if (ajDebugTest("listPredictiontranscriptCompareStartAscending"))
ajDebug("listPredictiontranscriptCompareStartAscending\n"
" pt1 %p\n"
" pt2 %p\n",
pt1,
pt2);
#endif /* defined(AJ_DEBUG) && AJ_DEBUG >= 2 */
/* Sort empty values towards the end of the AJAX List. */
if (pt1 && (!pt2))
return -1;
if ((!pt1) && (!pt2))
return 0;
if ((!pt1) && pt2)
return +1;
return ensFeatureCompareStartAscending(pt1->Feature, pt2->Feature);
}
/* @funcstatic listPredictiontranscriptCompareStartDescending *****************
**
** AJAX List of Ensembl Prediction Transcript objects comparison function to
** sort by Ensembl Feature start member in descending order.
**
** @param [r] item1 [const void*] Ensembl Prediction Transcript address 1
** @param [r] item2 [const void*] Ensembl Prediction Transcript address 2
** @see ajListSort
**
** @return [int] The comparison function returns an integer less than,
** equal to, or greater than zero if the first argument is
** considered to be respectively less than, equal to, or
** greater than the second.
**
** @release 6.4.0
** @@
******************************************************************************/
static int listPredictiontranscriptCompareStartDescending(
const void *item1,
const void *item2)
{
EnsPPredictiontranscript pt1 = *(EnsOPredictiontranscript *const *) item1;
EnsPPredictiontranscript pt2 = *(EnsOPredictiontranscript *const *) item2;
#if defined(AJ_DEBUG) && AJ_DEBUG >= 2
if (ajDebugTest("listPredictiontranscriptCompareStartDescending"))
ajDebug("listPredictiontranscriptCompareStartDescending\n"
" pt1 %p\n"
" pt2 %p\n",
pt1,
pt2);
#endif /* defined(AJ_DEBUG) && AJ_DEBUG >= 2 */
/* Sort empty values towards the end of the AJAX List. */
if (pt1 && (!pt2))
return -1;
if ((!pt1) && (!pt2))
return 0;
if ((!pt1) && pt2)
return +1;
return ensFeatureCompareStartDescending(pt1->Feature, pt2->Feature);
}
/* @section list **************************************************************
**
** Functions for manipulating AJAX List objects.
**
** @fdata [AjPList]
**
** @nam3rule Predictiontranscript Functions for manipulating AJAX List objects
** of Ensembl Prediction Transcript objects
** @nam4rule Sort Sort functions
** @nam5rule End Sort by Ensembl feature end member
** @nam5rule Identifier Sort by identifier member
** @nam5rule Start Sort by Ensembl Feature start member
** @nam6rule Ascending Sort in ascending order
** @nam6rule Descending Sort in descending order
**
** @argrule * pts [AjPList]
** AJAX List of Ensembl Prediction Transcript objects
**
** @valrule * [AjBool] ajTrue upon success, ajFalse otherwise
**
** @fcategory misc
******************************************************************************/
/* @func ensListPredictiontranscriptSortEndAscending **************************
**
** Sort Ensembl Prediction Transcript objects by their
** Ensembl Feature end coordinate in ascending order.
**
** @param [u] pts [AjPList] AJAX List of Ensembl Prediction Transcript objects
**
** @return [AjBool] ajTrue upon success, ajFalse otherwise
**
** @release 6.4.0
** @@
******************************************************************************/
AjBool ensListPredictiontranscriptSortEndAscending(AjPList pts)
{
if (!pts)
return ajFalse;
ajListSortTwoThree(pts,
&listPredictiontranscriptCompareEndAscending,
&listPredictiontranscriptCompareStartAscending,
&listPredictiontranscriptCompareIdentifierAscending);
return ajTrue;
}
/* @func ensListPredictiontranscriptSortEndDescending *************************
**
** Sort Ensembl Prediction Transcript objects by their
** Ensembl Feature end coordinate in descending order.
**
** @param [u] pts [AjPList] AJAX List of Ensembl Prediction Transcript objects
**
** @return [AjBool] ajTrue upon success, ajFalse otherwise
**
** @release 6.4.0
** @@
******************************************************************************/
AjBool ensListPredictiontranscriptSortEndDescending(AjPList pts)
{
if (!pts)
return ajFalse;
ajListSortTwoThree(pts,
&listPredictiontranscriptCompareEndDescending,
&listPredictiontranscriptCompareStartDescending,
&listPredictiontranscriptCompareIdentifierAscending);
return ajTrue;
}
/* @func ensListPredictiontranscriptSortIdentifierAscending *******************
**
** Sort Ensembl Prediction Transcript objects by their
** identifier member in ascending order.
**
** @param [u] pts [AjPList] AJAX List of Ensembl Prediction Transcript objects
**
** @return [AjBool] ajTrue upon success, ajFalse otherwise
**
** @release 6.4.0
** @@
******************************************************************************/
AjBool ensListPredictiontranscriptSortIdentifierAscending(AjPList pts)
{
if (!pts)
return ajFalse;
ajListSort(pts, &listPredictiontranscriptCompareIdentifierAscending);
return ajTrue;
}
/* @func ensListPredictiontranscriptSortStartAscending ************************
**
** Sort Ensembl Prediction Transcript objects by their
** Ensembl Feature start coordinate in ascending order.
**
** @param [u] pts [AjPList] AJAX List of Ensembl Prediction Transcript objects
**
** @return [AjBool] ajTrue upon success, ajFalse otherwise
**
** @release 6.4.0
** @@
******************************************************************************/
AjBool ensListPredictiontranscriptSortStartAscending(AjPList pts)
{
if (!pts)
return ajFalse;
ajListSortTwoThree(pts,
&listPredictiontranscriptCompareStartAscending,
&listPredictiontranscriptCompareEndAscending,
&listPredictiontranscriptCompareIdentifierAscending);
return ajTrue;
}
/* @func ensListPredictiontranscriptSortStartDescending ***********************
**
** Sort Ensembl Prediction Transcript objects by their
** Ensembl Feature start coordinate in descending order.
**
** @param [u] pts [AjPList] AJAX List of Ensembl Prediction Transcript objects
**
** @return [AjBool] ajTrue upon success, ajFalse otherwise
**
** @release 6.4.0
** @@
******************************************************************************/
AjBool ensListPredictiontranscriptSortStartDescending(AjPList pts)
{
if (!pts)
return ajFalse;
ajListSortTwoThree(pts,
&listPredictiontranscriptCompareStartDescending,
&listPredictiontranscriptCompareEndDescending,
&listPredictiontranscriptCompareIdentifierAscending);
return ajTrue;
}
/* @datasection [EnsPPredictiontranscriptadaptor] Ensembl Prediction Transcript
** Adaptor
**
** @nam2rule Predictiontranscriptadaptor Functions for manipulating
** Ensembl Prediction Transcript Adaptor objects
**
** @cc Bio::EnsEMBL::DBSQL::PredictionTranscriptAdaptor
** @cc CVS Revision: 1.53
** @cc CVS Tag: branch-ensembl-68
**
******************************************************************************/
/* @funcstatic predictiontranscriptadaptorFetchAllbyStatement *****************
**
** Fetch all Ensembl Prediction Transcript objects via an SQL statement.
**
** @param [u] ba [EnsPBaseadaptor] Ensembl Base Adaptor
** @param [r] statement [const AjPStr] SQL statement
** @param [uN] am [EnsPAssemblymapper] Ensembl Assembly Mapper
** @param [uN] slice [EnsPSlice] Ensembl Slice
** @param [u] pts [AjPList] AJAX List of Ensembl Prediction Transcript objects
**
** @return [AjBool] ajTrue upon success, ajFalse otherwise
**
** @release 6.4.0
** @@
******************************************************************************/
static AjBool predictiontranscriptadaptorFetchAllbyStatement(
EnsPBaseadaptor ba,
const AjPStr statement,
EnsPAssemblymapper am,
EnsPSlice slice,
AjPList pts)
{
ajuint identifier = 0U;
ajuint analysisid = 0U;
ajuint srid = 0U;
ajuint srstart = 0U;
ajuint srend = 0U;
ajint srstrand = 0;
AjPSqlstatement sqls = NULL;
AjISqlrow sqli = NULL;
AjPSqlrow sqlr = NULL;
AjPStr label = NULL;
EnsPDatabaseadaptor dba = NULL;
EnsPFeature feature = NULL;
EnsPPredictiontranscript pt = NULL;
EnsPPredictiontranscriptadaptor pta = NULL;
if (ajDebugTest("predictiontranscriptadaptorFetchAllbyStatement"))
ajDebug("predictiontranscriptadaptorFetchAllbyStatement\n"
" ba %p\n"
" statement %p\n"
" am %p\n"
" slice %p\n"
" pts %p\n",
ba,
statement,
am,
slice,
pts);
if (!ba)
return ajFalse;
if (!statement)
return ajFalse;
if (!pts)
return ajFalse;
dba = ensBaseadaptorGetDatabaseadaptor(ba);
pta = ensRegistryGetPredictiontranscriptadaptor(dba);
sqls = ensDatabaseadaptorSqlstatementNew(dba, statement);
sqli = ajSqlrowiterNew(sqls);
while (!ajSqlrowiterDone(sqli))
{
identifier = 0;
srid = 0;
srstart = 0;
srend = 0;
srstrand = 0;
analysisid = 0;
label = ajStrNew();
sqlr = ajSqlrowiterGet(sqli);
ajSqlcolumnToUint(sqlr, &identifier);
ajSqlcolumnToUint(sqlr, &srid);
ajSqlcolumnToUint(sqlr, &srstart);
ajSqlcolumnToUint(sqlr, &srend);
ajSqlcolumnToInt(sqlr, &srstrand);
ajSqlcolumnToUint(sqlr, &analysisid);
ajSqlcolumnToStr(sqlr, &label);
ensBaseadaptorRetrieveFeature(ba,
analysisid,
srid,
srstart,
srend,
srstrand,
am,
slice,
&feature);
if (!feature)
{
ajStrDel(&label);
continue;
}
/* Finally, create a new Ensembl Prediction Transcript. */
pt = ensPredictiontranscriptNewIni(pta,
identifier,
feature,
label);
ajListPushAppend(pts, (void *) pt);
ensFeatureDel(&feature);
ajStrDel(&label);
}
ajSqlrowiterDel(&sqli);
ensDatabaseadaptorSqlstatementDel(dba, &sqls);
return ajTrue;
}
/* @section constructors ******************************************************
**
** All constructors return a new Ensembl Prediction Transcript Adaptor by
** pointer.
** It is the responsibility of the user to first destroy any previous
** Prediction Transcript Adaptor. The target pointer does not need to be
** initialised to NULL, but it is good programming practice to do so anyway.
**
** @fdata [EnsPPredictiontranscriptadaptor]
**
** @nam3rule New Constructor
**
** @argrule New dba [EnsPDatabaseadaptor] Ensembl Database Adaptor
**
** @valrule * [EnsPPredictiontranscriptadaptor]
** Ensembl Prediction Transcript Adaptor or NULL
**
** @fcategory new
******************************************************************************/
/* @func ensPredictiontranscriptadaptorNew ************************************
**
** Default constructor for an Ensembl Prediction Transcript Adaptor.
**
** Ensembl Object Adaptors are singleton objects in the sense that a single
** instance of an Ensembl Object Adaptor connected to a particular database is
** sufficient to instantiate any number of Ensembl Objects from the database.
** Each Ensembl Object will have a weak reference to the Object Adaptor that
** instantiated it. Therefore, Ensembl Object Adaptors should not be
** instantiated directly, but rather obtained from the Ensembl Registry,
** which will in turn call this function if neccessary.
**
** @see ensRegistryGetDatabaseadaptor
** @see ensRegistryGetPredictiontranscriptadaptor
**
** @param [u] dba [EnsPDatabaseadaptor] Ensembl Database Adaptor
**
** @return [EnsPPredictiontranscriptadaptor]
** Ensembl Prediction Transcript Adaptor or NULL
**
** @release 6.2.0
** @@
******************************************************************************/
EnsPPredictiontranscriptadaptor ensPredictiontranscriptadaptorNew(
EnsPDatabaseadaptor dba)
{
return ensFeatureadaptorNew(
dba,
predictiontranscriptadaptorKTablenames,
predictiontranscriptadaptorKColumnnames,
(const EnsPBaseadaptorLeftjoin) NULL,
(const char *) NULL,
(const char *) NULL,
&predictiontranscriptadaptorFetchAllbyStatement,
(void *(*)(const void *)) NULL,
(void *(*)(void *)) &ensPredictiontranscriptNewRef,
(AjBool (*)(const void *)) NULL,
(void (*)(void **)) &ensPredictiontranscriptDel,
(size_t (*)(const void *)) &ensPredictiontranscriptCalculateMemsize,
(EnsPFeature (*)(const void *)) &ensPredictiontranscriptGetFeature,
"Predictiontranscript");
}
/* @section destructors *******************************************************
**
** Destruction destroys all internal data structures and frees the memory
** allocated for an Ensembl Prediction Transcript Adaptor object.
**
** @fdata [EnsPPredictiontranscriptadaptor]
**
** @nam3rule Del Destroy (free) an
** Ensembl Prediction Transcript Adaptor
**
** @argrule * Ppta [EnsPPredictiontranscriptadaptor*]
** Ensembl Prediction Transcript Adaptor address
**
** @valrule * [void]
**
** @fcategory delete
******************************************************************************/
/* @func ensPredictiontranscriptadaptorDel ************************************
**
** Default destructor for an Ensembl Prediction Transcript Adaptor.
**
** Ensembl Object Adaptors are singleton objects that are registered in the
** Ensembl Registry and weakly referenced by Ensembl Objects that have been
** instantiated by it. Therefore, Ensembl Object Adaptors should never be
** destroyed directly. Upon exit, the Ensembl Registry will call this function
** if required.
**
** @param [d] Ppta [EnsPPredictiontranscriptadaptor*]
** Ensembl Prediction Transcript Adaptor address
**
** @return [void]
**
** @release 6.2.0
** @@
******************************************************************************/
void ensPredictiontranscriptadaptorDel(
EnsPPredictiontranscriptadaptor *Ppta)
{
ensFeatureadaptorDel(Ppta);
return;
}
/* @section member retrieval **************************************************
**
** Functions for returning members of an
** Ensembl Prediction Transcript Adaptor object.
**
** @fdata [EnsPPredictiontranscriptadaptor]
**
** @nam3rule Get Return Ensembl Prediction Transcript Adaptor attribute(s)
** @nam4rule Baseadaptor Return the Ensembl Base Adaptor
** @nam4rule Databaseadaptor Return the Ensembl Database Adaptor
** @nam4rule Featureadaptor Return the Ensembl Feature Adaptor
**
** @argrule * pta [EnsPPredictiontranscriptadaptor]
** Ensembl Prediction Transcript Adaptor
**
** @valrule Baseadaptor [EnsPBaseadaptor]
** Ensembl Base Adaptor or NULL
** @valrule Databaseadaptor [EnsPDatabaseadaptor]
** Ensembl Database Adaptor or NULL
** @valrule Featureadaptor [EnsPFeatureadaptor]
** Ensembl Feature Adaptor or NULL
**
** @fcategory use
******************************************************************************/
/* @func ensPredictiontranscriptadaptorGetBaseadaptor *************************
**
** Get the Ensembl Base Adaptor member of an
** Ensembl Prediction Transcript Adaptor.
**
** @param [u] pta [EnsPPredictiontranscriptadaptor]
** Ensembl Prediction Transcript Adaptor
**
** @return [EnsPBaseadaptor] Ensembl Base Adaptor or NULL
**
** @release 6.4.0
** @@
******************************************************************************/
EnsPBaseadaptor ensPredictiontranscriptadaptorGetBaseadaptor(
EnsPPredictiontranscriptadaptor pta)
{
return ensFeatureadaptorGetBaseadaptor(
ensPredictiontranscriptadaptorGetFeatureadaptor(pta));
}
/* @func ensPredictiontranscriptadaptorGetDatabaseadaptor *********************
**
** Get the Ensembl Database Adaptor member of an
** Ensembl Prediction Transcript Adaptor.
**
** @param [u] pta [EnsPPredictiontranscriptadaptor]
** Ensembl Prediction Transcript Adaptor
**
** @return [EnsPDatabaseadaptor] Ensembl Database Adaptor or NULL
**
** @release 6.4.0
** @@
******************************************************************************/
EnsPDatabaseadaptor ensPredictiontranscriptadaptorGetDatabaseadaptor(
EnsPPredictiontranscriptadaptor pta)
{
return ensFeatureadaptorGetDatabaseadaptor(
ensPredictiontranscriptadaptorGetFeatureadaptor(pta));
}
/* @func ensPredictiontranscriptadaptorGetFeatureadaptor **********************
**
** Get the Ensembl Feature Adaptor member of an
** Ensembl Prediction Transcript Adaptor.
**
** @param [u] pta [EnsPPredictiontranscriptadaptor]
** Ensembl Prediction Transcript Adaptor
**
** @return [EnsPFeatureadaptor] Ensembl Feature Adaptor or NULL
**
** @release 6.4.0
** @@
******************************************************************************/
EnsPFeatureadaptor ensPredictiontranscriptadaptorGetFeatureadaptor(
EnsPPredictiontranscriptadaptor pta)
{
return pta;
}
/* @section canonical object retrieval ****************************************
**
** Functions for fetching Ensembl Prediction Transcript objects from an
** Ensembl SQL database.
**
** @fdata [EnsPPredictiontranscriptadaptor]
**
** @nam3rule Fetch Fetch Ensembl Prediction Transcript object(s)
** @nam4rule All Fetch all Ensembl Prediction Transcript objects
** @nam4rule Allby Fetch all Ensembl Prediction Transcript objects
** matching a criterion
** @nam5rule Slice Fetch all by an Ensembl Slice
** @nam5rule Stableidentifier Fetch all by a stable identifier
** @nam4rule By Fetch one Ensembl Prediction Transcript object
** matching a criterion
** @nam5rule Displaylabel Fetch by display label
** @nam5rule Identifier Fetch by SQL database-internal identifier
** @nam5rule Stableidentifier Fetch by a stable identifier
**
** @argrule * pta [EnsPPredictiontranscriptadaptor]
** Ensembl Prediction Transcript Adaptor
** @argrule All pts [AjPList]
** AJAX List of Ensembl Prediction Transcript objects
** @argrule AllbySlice slice [EnsPSlice] Ensembl Slice
** @argrule AllbySlice anname [const AjPStr] Ensembl Analysis name
** @argrule AllbySlice constraint [const AjPStr] SQL constraint
** @argrule AllbySlice loadexons [AjBool] Load Ensembl Prediction Exon objects
** @argrule AllbyStableidentifier stableid [const AjPStr] Stable identifier
** @argrule Allby pts [AjPList]
** AJAX List of Ensembl Prediction Transcript objects
** @argrule ByDisplaylabel label [const AjPStr] Display label
** @argrule ByExonidentifier identifier [ajuint]
** Ensembl Prediction Exon identifier
** @argrule ByIdentifier identifier [ajuint] SQL database-internal identifier
** @argrule ByStableidentifier stableid [const AjPStr] Stable identifier
** @argrule By Ppt [EnsPPredictiontranscript*]
** Ensembl Prediction Transcript address
**
** @valrule * [AjBool] ajTrue upon success, ajFalse otherwise
**
** @fcategory use
******************************************************************************/
/* @func ensPredictiontranscriptadaptorFetchByIdentifier **********************
**
** Fetch an Ensembl Prediction Transcript via its SQL database-internal
** identifier.
** The caller is responsible for deleting the Ensembl Prediction Transcript.
**
** @param [u] pta [EnsPPredictiontranscriptadaptor]
** Ensembl Prediction Transcript Adaptor
** @param [r] identifier [ajuint] SQL database-internal identifier
** @param [wP] Ppt [EnsPPredictiontranscript*]
** Ensembl Prediction Transcript address
**
** @return [AjBool] ajTrue upon success, ajFalse otherwise
**
** @release 6.2.0
** @@
******************************************************************************/
AjBool ensPredictiontranscriptadaptorFetchByIdentifier(
EnsPPredictiontranscriptadaptor pta,
ajuint identifier,
EnsPPredictiontranscript *Ppt)
{
return ensBaseadaptorFetchByIdentifier(
ensPredictiontranscriptadaptorGetBaseadaptor(pta),
identifier,
(void **) Ppt);
}
/* @func ensPredictiontranscriptadaptorFetchByStableidentifier ****************
**
** Fetch an Ensembl Prediction Transcript via its stable identifier and
** version. This method is called FetchByStableidentifier for polymorphism with
** the Ensembl Transcript Adaptor. Prediction Transcript display
** labels are not necessarily stable in that the same identifier may be reused
** for a completely different Ensembl Prediction Transcript in a subsequent
** database release.
**
** The caller is responsible for deleting the Ensembl Prediction Transcript.
**
** @param [u] pta [EnsPPredictiontranscriptadaptor]
** Ensembl Prediction Transcript Adaptor
** @param [r] stableid [const AjPStr] Stable identifier
** @param [wP] Ppt [EnsPPredictiontranscript*]
** Ensembl Prediction Transcript address
**
** @return [AjBool] ajTrue upon success, ajFalse otherwise
**
** @release 6.4.0
** @@
******************************************************************************/
AjBool ensPredictiontranscriptadaptorFetchByStableidentifier(
EnsPPredictiontranscriptadaptor pta,
const AjPStr stableid,
EnsPPredictiontranscript *Ppt)
{
char *txtstableid = NULL;
AjBool result = AJFALSE;
AjPList pts = NULL;
AjPStr constraint = NULL;
EnsPBaseadaptor ba = NULL;
EnsPPredictiontranscript pt = NULL;
if (!pta)
return ajFalse;
if (!stableid)
return ajFalse;
if (!Ppt)
return ajFalse;
ba = ensPredictiontranscriptadaptorGetBaseadaptor(pta);
ensBaseadaptorEscapeC(ba, &txtstableid, stableid);
constraint =
ajFmtStr("prediction_transcript.display_label = '%s'", txtstableid);
ajCharDel(&txtstableid);
pts = ajListNew();
result = ensBaseadaptorFetchAllbyConstraint(
ba,
constraint,
(EnsPAssemblymapper) NULL,
(EnsPSlice) NULL,
pts);
if (ajListGetLength(pts) > 1)
ajDebug("ensPredictiontranscriptadaptorFetchByStableidentifier got "
"more than one Ensembl Prediction Transcript for "
"stable identifier '%S'.\n",
stableid);
ajListPop(pts, (void **) Ppt);
while (ajListPop(pts, (void **) &pt))
ensPredictiontranscriptDel(&pt);
ajListFree(&pts);
ajStrDel(&constraint);
return result;
}
|