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
|
/* Unaligned ascii sequence file i/o.
*
* Contents:
* 1. An <ESL_SQFILE> object, in text mode.
* 2. An <ESL_SQFILE> object, in digital mode.
* 3. Miscellaneous routines.
* 4. Sequence reading (sequential).
* 5. Sequence/subsequence fetching, random access
* 6. Internal routines shared by parsers.
* 7. Internal routines for EMBL format (including UniProt, TrEMBL)
* 8. Internal routines for GenBank format
* 9. Internal routines for FASTA format
* 10. Internal routines for daemon format
* 11. Internal routines for HMMPGMD format
*
* This module shares remote evolutionary homology with Don Gilbert's
* seminal, public domain ReadSeq package, though the last common
* ancestor was circa 1991 and no recognizable vestiges are likely to
* remain. Thanks Don!
*
*/
#include "esl_config.h"
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <ctype.h>
#include <unistd.h>
#include "easel.h"
#include "esl_alphabet.h"
#include "esl_msa.h"
#include "esl_msafile.h"
#include "esl_sqio.h"
#include "esl_sq.h"
#include "esl_ssi.h"
/* format specific routines */
static int sqascii_GuessFileFormat(ESL_SQFILE *sqfp, int *ret_fmt);
static int sqascii_Position (ESL_SQFILE *sqfp, off_t offset);
static void sqascii_Close (ESL_SQFILE *sqfp);
static int sqascii_SetDigital (ESL_SQFILE *sqfp, const ESL_ALPHABET *abc);
static int sqascii_GuessAlphabet (ESL_SQFILE *sqfp, int *ret_type);
static int sqascii_Read (ESL_SQFILE *sqfp, ESL_SQ *sq);
static int sqascii_ReadInfo (ESL_SQFILE *sqfp, ESL_SQ *sq);
static int sqascii_ReadSequence (ESL_SQFILE *sqfp, ESL_SQ *sq);
static int sqascii_ReadWindow (ESL_SQFILE *sqfp, int C, int W, ESL_SQ *sq);
static int sqascii_ReadBlock (ESL_SQFILE *sqfp, ESL_SQ_BLOCK *sqBlock, int max_residues, int max_sequences, int long_target);
static int sqascii_Echo (ESL_SQFILE *sqfp, const ESL_SQ *sq, FILE *ofp);
static int sqascii_IsRewindable (const ESL_SQFILE *sqfp);
static const char *sqascii_GetError (const ESL_SQFILE *sqfp);
static int sqascii_OpenSSI (ESL_SQFILE *sqfp, const char *ssifile_hint);
static int sqascii_PositionByKey (ESL_SQFILE *sqfp, const char *key);
static int sqascii_PositionByNumber(ESL_SQFILE *sqfp, int which);
static int sqascii_Fetch (ESL_SQFILE *sqfp, const char *key, ESL_SQ *sq);
static int sqascii_FetchInfo (ESL_SQFILE *sqfp, const char *key, ESL_SQ *sq);
static int sqascii_FetchSubseq (ESL_SQFILE *sqfp, const char *source, int64_t start, int64_t end, ESL_SQ *sq);
/* Internal routines shared by parsers. */
static int loadmem (ESL_SQFILE *sqfp);
static int loadbuf (ESL_SQFILE *sqfp);
static int nextchar (ESL_SQFILE *sqfp, char *ret_c);
static int seebuf (ESL_SQFILE *sqfp, int64_t maxn, int64_t *opt_nres, int64_t *opt_endpos);
static void addbuf (ESL_SQFILE *sqfp, ESL_SQ *sq, int64_t nres);
static void skipbuf (ESL_SQFILE *sqfp, int64_t nskip);
static int read_nres(ESL_SQFILE *sqfp, ESL_SQ *sq, int64_t nskip, int64_t nres, int64_t *opt_actual_nres);
static int skip_whitespace(ESL_SQFILE *sqfp);
/* EMBL format; also UniProt, TrEMBL */
static void config_embl(ESL_SQFILE *sqfp);
static void inmap_embl (ESL_SQFILE *sqfp, const ESL_DSQ *abc_inmap);
static int header_embl(ESL_SQFILE *sqfp, ESL_SQ *sq);
static int skip_embl (ESL_SQFILE *sqfp, ESL_SQ *sq);
static int end_embl (ESL_SQFILE *sqfp, ESL_SQ *sq);
/* GenBank format; also DDBJ */
static void config_genbank(ESL_SQFILE *sqfp);
static void inmap_genbank (ESL_SQFILE *sqfp, const ESL_DSQ *abc_inmap);
static int header_genbank(ESL_SQFILE *sqfp, ESL_SQ *sq);
static int skip_genbank (ESL_SQFILE *sqfp, ESL_SQ *sq);
static int end_genbank (ESL_SQFILE *sqfp, ESL_SQ *sq);
/* FASTA format */
static void config_fasta(ESL_SQFILE *sqfp);
static void inmap_fasta (ESL_SQFILE *sqfp, const ESL_DSQ *abc_inmap);
static int header_fasta(ESL_SQFILE *sqfp, ESL_SQ *sq);
static int skip_fasta (ESL_SQFILE *sqfp, ESL_SQ *sq);
static int end_fasta (ESL_SQFILE *sqfp, ESL_SQ *sq);
/* daemon format */
static void config_daemon(ESL_SQFILE *sqfp);
static void inmap_daemon (ESL_SQFILE *sqfp, const ESL_DSQ *abc_inmap);
static int end_daemon (ESL_SQFILE *sqfp, ESL_SQ *sq);
/* HMMPGMD format */
static int fileheader_hmmpgmd(ESL_SQFILE *sqfp);
/*****************************************************************
*# 1. An <ESL_SQFILE> object, in text mode.
*****************************************************************/
/* Function: esl_sqascii_Open()
* Synopsis: Open a sequence file for reading.
*
* Purpose: Open a sequence file <filename> for reading.
* The opened <ESL_SQFILE> is returned through <ret_sqfp>.
*
* The format of the file is asserted to be <format> (for
* example, <eslSQFILE_FASTA>). If <format> is
* <eslSQFILE_UNKNOWN> then the routine attempts to
* autodetect the file format.
*
* There are two special cases for <filename>. If
* <filename> is "-", the sequence data are read from a
* <STDIN> pipe. If <filename> ends in ".gz", the file is
* assumed to be compressed with <gzip>, and it is opened
* by a pipe from <gzip -dc>. Reading gzip files only works
* on POSIX-compliant systems that have pipes
* (specifically, the POSIX.2 popen() call).
*
* Returns: <eslOK> on success, and <*ret_sqfp> points to a new
* open <ESL_SQFILE>. Caller deallocates this object with
* <esl_sqfile_Close()>.
*
* Returns <eslENOTFOUND> if <filename> can't be found or
* opened. Returns <eslEFORMAT> if the file is empty, or
* if autodetection is attempted and the format can't be
* determined. On any error condition, <*ret_sqfp> is
* returned NULL.
*
* Throws: <eslEMEM> on allocation failure.
*/
int
esl_sqascii_Open(char *filename, int format, ESL_SQFILE *sqfp)
{
int status;/* return status from an ESL call */
int n;
ESL_SQASCII_DATA *ascii = &sqfp->data.ascii;
/* before we go any further, make sure we can handle the format */
if (format == eslSQFILE_NCBI) return eslENOTFOUND;
/* Default initializations */
ascii->fp = NULL;
ascii->do_gzip = FALSE;
ascii->do_stdin = FALSE;
ascii->do_buffer = FALSE;
ascii->mem = NULL;
ascii->allocm = 0;
ascii->mn = 0;
ascii->mpos = 0;
ascii->moff = -1;
ascii->is_recording = FALSE;
ascii->buf = NULL;
ascii->boff = 0;
ascii->balloc = 0;
ascii->nc = 0;
ascii->bpos = 0;
ascii->L = 0;
ascii->linenumber = 1;
ascii->bookmark_offset = 0;
ascii->bookmark_linenum = 0;
ascii->is_linebased = FALSE;
ascii->eof_is_ok = FALSE;
ascii->parse_header = NULL;
ascii->skip_header = NULL;
ascii->parse_end = NULL;
ascii->afp = NULL;
ascii->msa = NULL;
ascii->idx = -1;
ascii->ssifile = NULL;
ascii->rpl = -1; /* -1 = not set yet */
ascii->bpl = -1; /* (ditto) */
ascii->prvrpl = -1; /* (ditto) */
ascii->prvbpl = -1; /* (ditto) */
ascii->currpl = -1;
ascii->curbpl = -1;
ascii->ssi = NULL;
/* MSA formats are handled entirely by msafile module -
* let it handle stdin, .gz, etc
*/
if (! esl_sqio_IsAlignment(format))
{
if (strcmp(filename, "-") == 0) /* stdin special case */
{
ascii->fp = stdin;
ascii->do_stdin = TRUE;
}
else
{ /* Check the current working directory first. */
if ((ascii->fp = fopen(filename, "r")) == NULL) {
status = eslENOTFOUND;
goto ERROR;
}
}
/* Deal with the .gz special case: to popen(), "success" only means
* it found and executed gzip -dc. If gzip -dc doesn't find our
* file, popen() still blithely returns success, so we have to be
* sure the file exists. That's why we fopen()'ed it above, only to
* close it and popen() it here.
*/
#ifdef HAVE_POPEN
n = strlen(filename);
if (n > 3 && strcmp(filename+n-3, ".gz") == 0)
{
char *cmd;
fclose(ascii->fp);
ESL_ALLOC(cmd, sizeof(char) * (n+1+strlen("gzip -dc ")));
sprintf(cmd, "gzip -dc %s", filename);
ascii->fp = popen(cmd, "r");
if (ascii->fp == NULL) { status = eslENOTFOUND; goto ERROR; }
ascii->do_gzip = TRUE;
free(cmd);
}
#endif /*HAVE_POPEN*/
/* If we don't know the format yet, try to autodetect it now. */
if (format == eslSQFILE_UNKNOWN)
{
status = sqascii_GuessFileFormat(sqfp, &format);
if (status == eslOK) sqfp->format = format;
else if (status != eslEFORMAT) goto ERROR; /* <format> might still be eslSQFILE_UNKNOWN, for MSA files */
}
/* If the format is still unknown, it may be an MSA file. The
* msafile module is capable of autodetecting format even in a .gz
* or stdin pipe, but the stuff above has already read from these
* nonrewindable sources, trying to guess an unaligned format. We
* could open a second .gz pipe, but that's ugly; and in any case,
* we can't rewind stdin. Eventually, this will get resolved, by
* having sqio open an ESL_BUFFER, then doing an
* esl_msafile_OpenBuffer() if we need to hand control to the
* msafile module. For now, sqio is already documented to be
* unable to autodetect MSA file formats in stdin or .gz pipes,
* so leave it that way.
*/
if (format == eslSQFILE_UNKNOWN && (ascii->do_gzip || ascii->do_stdin))
{ status = eslEFORMAT; goto ERROR; }
}
/* If format is definitely an MSA, open it through the msafile interface.
* Or, if format is still unknown, try to open the file as an MSA file,
* using msafile autodetection.
*/
if (format == eslSQFILE_UNKNOWN || esl_sqio_IsAlignment(format))
{
status = esl_msafile_Open(NULL, filename, NULL, format, NULL, &(ascii->afp));
if (status != eslOK) { status = eslEFORMAT; goto ERROR; } /* This was our last attempt. Failure to open == failure to detect format */
sqfp->format = format = ascii->afp->format;
}
if (format == eslSQFILE_UNKNOWN) { status = eslEFORMAT; goto ERROR; }
/* Configure the <sqfp>'s parser and inmaps for this format. */
if (!esl_sqio_IsAlignment(format))
{
switch (format) {
case eslSQFILE_EMBL: config_embl(sqfp); inmap_embl(sqfp, NULL); break;
case eslSQFILE_UNIPROT: config_embl(sqfp); inmap_embl(sqfp, NULL); break;
case eslSQFILE_GENBANK: config_genbank(sqfp); inmap_genbank(sqfp, NULL); break;
case eslSQFILE_DDBJ: config_genbank(sqfp); inmap_genbank(sqfp, NULL); break;
case eslSQFILE_FASTA: config_fasta(sqfp); inmap_fasta(sqfp, NULL); break;
case eslSQFILE_DAEMON: config_daemon(sqfp); inmap_daemon(sqfp, NULL); break;
case eslSQFILE_HMMPGMD: config_fasta(sqfp); inmap_fasta(sqfp, NULL); break;
default:status = eslEFORMAT; goto ERROR;
}
/* Preload the first line or chunk of file. */
status = loadbuf(sqfp);
if (status == eslEOF) { status = eslEFORMAT; goto ERROR; }
else if (status != eslOK) { goto ERROR; }
/* hmmpgmd is a special case: we need to skip first line before parsing it.
* generalize that a little: this could be a section for parsing a file header,
* and leaving the buf positioned at the first char of the first record
* (just as expected if there's no file header)
*/
switch (format) {
case eslSQFILE_HMMPGMD: status = fileheader_hmmpgmd(sqfp); break;
default: status = eslOK; break;
}
if (status != eslOK) goto ERROR;
}
else
{
ascii->is_linebased = TRUE;
ascii->eof_is_ok = FALSE; /* no-op for msa's */
ascii->parse_header = NULL; /* no-op for msa's */
ascii->skip_header = NULL; /* no-op for msa's */
ascii->parse_end = NULL; /* no-op for msa's */
}
/* initialize the function pointers for the ascii routines */
sqfp->position = &sqascii_Position;
sqfp->close = &sqascii_Close;
sqfp->set_digital = &sqascii_SetDigital;
sqfp->guess_alphabet = &sqascii_GuessAlphabet;
sqfp->is_rewindable = &sqascii_IsRewindable;
sqfp->read = &sqascii_Read;
sqfp->read_info = &sqascii_ReadInfo;
sqfp->read_seq = &sqascii_ReadSequence;
sqfp->read_window = &sqascii_ReadWindow;
sqfp->echo = &sqascii_Echo;
sqfp->read_block = &sqascii_ReadBlock;
sqfp->open_ssi = &sqascii_OpenSSI;
sqfp->pos_by_key = &sqascii_PositionByKey;
sqfp->pos_by_number = &sqascii_PositionByNumber;
sqfp->fetch = &sqascii_Fetch;
sqfp->fetch_info = &sqascii_FetchInfo;
sqfp->fetch_subseq = &sqascii_FetchSubseq;
sqfp->get_error = &sqascii_GetError;
return eslOK;
ERROR:
sqascii_Close(sqfp);
return status;
}
/* Function: sqascii_GuessFileFormat()
* Synopsis: Guess the format of an open <ESL_SQFILE>.
*
* Purpose: Try to guess the sequence file format of <sqfp>, and
* return the format code in <*ret_fmt>.
*
* First we attempt to guess based on the <filename>'s
* suffix. <*.fa> is assumed to be in FASTA format; <*.gb>
* is assumed to be in GenBank format.
*
* If that fails, we attempt to guess based on peeking at
* the first nonblank line of <filename>. If the line
* starts with $>$, we assume FASTA format; if the line
* starts with <ID>, we assume EMBL format; if the line
* starts with <LOCUS> or it contains the string <Genetic
* Sequence Data Bank> we assume GenBank format.
*
* If that fails too, return an <eslEFORMAT> error, and
* <*ret_fmt> is set to <eslSQFILE_UNKNOWN>.
*
* Returns: <eslOK> on success, and <*ret_fmt> contains
* a valid sequence file format code, such as
* <eslSQFILE_FASTA>.
*
* Returns <eslEFORMAT> if we opened <filename> but it
* contains no nonblank lines, or if we peeked at the first
* nonblank line and still couldn't guess the format;
* <*ret_fmt> is then <eslSQFILE_UNKNOWN>.
*
* Throws: <eslEMEM> on allocation failure.
*/
static int
sqascii_GuessFileFormat(ESL_SQFILE *sqfp, int *ret_fmt)
{
int n = strlen(sqfp->filename);
const char *sfx = NULL;
int is_gzip = FALSE;
int nsfx;
int status;
ESL_SQASCII_DATA *ascii = &sqfp->data.ascii;
/* On any premature exit, *ret_fmt is eslSQFILE_UNKNOWN */
*ret_fmt = eslSQFILE_UNKNOWN;
/* Is <filename> gzip'ed? Look at suffix. */
if (n > 3 && strcmp(sqfp->filename+n-3, ".gz") == 0) is_gzip = TRUE;
/* Locate the suffix that might indicate format (ignore .gz) */
for (nsfx = 1, sfx = sqfp->filename + n - 1 - (is_gzip ? 3 : 0);
sfx != sqfp->filename && *sfx != '.';
sfx--)
nsfx++;
/* now sfx points either to filename (we didn't find a suffix) or to the . of the suffix,
* and nsfx is the suffix length inclusive of the .
*/
/* Attempt to guess file format based on file name suffix. */
if (strncmp(sfx, ".fa", 3) == 0) { *ret_fmt = eslSQFILE_FASTA; return eslOK; }
else if (strncmp(sfx, ".gb", 3) == 0) { *ret_fmt = eslSQFILE_GENBANK; return eslOK; }
/* If that didn't work, we'll have a peek at the stream;
* turn recording on, and set for line based input.
*/
if (ascii->is_recording == -1) ESL_EXCEPTION(eslEINVAL, "sq file already too advanced");
ascii->is_recording = TRUE;
ascii->is_linebased = TRUE;
loadbuf(sqfp);/* now ascii->buf is a line of the file */
/* get first nonblank line */
while (esl_str_IsBlank(ascii->buf)) {
status = loadbuf(sqfp);
if (status == eslEOF) ESL_XFAIL(eslEFORMAT, ascii->errbuf, "No data found in file");
else if (status != eslOK) goto ERROR;
}
/* formats that can be determined from the first line: */
if (*(ascii->buf) == '>') *ret_fmt = eslSQFILE_FASTA;
else if (strncmp(ascii->buf, "ID ", 5) == 0) *ret_fmt = eslSQFILE_EMBL;
else if (strncmp(ascii->buf, "LOCUS ", 8) == 0) *ret_fmt = eslSQFILE_GENBANK;
else if (strstr(ascii->buf, "Genetic Sequence Data Bank") != NULL) *ret_fmt = eslSQFILE_GENBANK;
/* reset the sqfp */
ascii->mpos = 0;
ascii->is_recording = FALSE;
ascii->is_linebased = FALSE;
free(ascii->buf);
ascii->buf = NULL;
ascii->balloc = 0;
return (*ret_fmt == eslSQFILE_UNKNOWN) ? eslEFORMAT : eslOK;
ERROR:
ascii->mpos = 0;
ascii->is_recording = FALSE;
ascii->is_linebased = FALSE;
if (ascii->buf != NULL) { free(ascii->buf); ascii->balloc = 0; }
return status;
}
/* Function: sqascii_Position()
* Synopsis: Reposition an open sequence file to an offset.
*
* Purpose: Reposition an open <sqfp> to offset <offset>.
* <offset> would usually be the first byte of a
* desired sequence record.
*
* Only normal sequence files can be positioned to a
* nonzero offset. If <sqfp> corresponds to a standard
* input stream or gzip -dc stream, it may not be
* repositioned. If <sqfp> corresponds to a multiple
* sequence alignment file, the only legal <offset>
* is 0, to rewind the file to the beginning and
* be able to read the entire thing again.
*
* After <esl_sqfile_Position()> is called on a nonzero
* <offset>, <sqfp->linenumber> and other bookkeeping
* information is unknown. If caller knows it, it should
* set it explicitly.
*
* See the SSI module for manipulating offsets and indices.
*
* Returns: <eslOK> on success;
* <eslEOF> if no data can be read from this position.
*
* Throws: <eslESYS> if the fseeko() or fread() call fails.
* <eslEMEM> on (re-)allocation failure.
* <eslEINVAL> if the <sqfp> is not positionable.
* <eslENOTFOUND> if in trying to rewind an alignment file
* by closing and reopening it, the open fails.
* On errors, the state of <sqfp> is indeterminate, and
* it should not be used again.
*/
static int
sqascii_Position(ESL_SQFILE *sqfp, off_t offset)
{
int status;
ESL_SQASCII_DATA *ascii = &sqfp->data.ascii;
if (ascii->do_stdin) ESL_EXCEPTION(eslEINVAL, "can't Position() in standard input");
if (ascii->do_gzip) ESL_EXCEPTION(eslEINVAL, "can't Position() in a gzipped file");
if (offset < 0) ESL_EXCEPTION(eslEINVAL, "bad offset");
if (offset > 0 && ascii->afp != NULL) ESL_EXCEPTION(eslEINVAL, "can't use esl_sqfile_Position() w/ nonzero offset on MSA file");
if (esl_sqio_IsAlignment(sqfp->format))
{/* msa file: close and reopen. maybe sometime we'll have esl_msafile_Rewind() */
/* we have already verified that offset==0 for MSA file */
esl_msafile_Close(ascii->afp);
if (ascii->msa != NULL) esl_msa_Destroy(ascii->msa);
ascii->afp = NULL;
ascii->msa = NULL;
ascii->idx = 0;
/* we know we successfully opened it the first time, so a
failure to reopen is an exception, not a user-reportable
normal error. ENOTFOUND is the only normal error;
EFORMAT error can't occur because we know the format and
don't use autodetection.
*/
status = esl_msafile_Open(NULL, sqfp->filename, NULL, sqfp->format, NULL, &(ascii->afp));
if (status == eslENOTFOUND) ESL_EXCEPTION(eslENOTFOUND, "failed to reopen alignment file");
else if (status != eslOK) return status;
}
else/* normal case: unaligned sequence file */
{
if (fseeko(ascii->fp, offset, SEEK_SET) != 0) ESL_EXCEPTION(eslESYS, "fseeko() failed");
ascii->currpl = -1;
ascii->curbpl = -1;
ascii->prvrpl = -1;
ascii->prvbpl = -1;
ascii->linenumber = (offset == 0) ? 1 : -1; /* -1 is "unknown" */
ascii->L = -1;
ascii->mpos = ascii->mn;/* this forces loadbuf to load new data */
if ((status = loadbuf(sqfp)) != eslOK) return status;
}
return eslOK;
}
/* Function: sqascii_Close()
* Synopsis: Close a sequence file.
*
* Purpose: Closes an open <sqfp>.
*
* Returns: (void).
*/
static void
sqascii_Close(ESL_SQFILE *sqfp)
{
ESL_SQASCII_DATA *ascii = &sqfp->data.ascii;
#ifdef HAVE_POPEN
if (ascii->do_gzip) pclose(ascii->fp);
else
#endif
if (! ascii->do_stdin && ascii->fp != NULL) fclose(ascii->fp);
if (ascii->ssifile != NULL) free(ascii->ssifile);
if (ascii->mem != NULL) free(ascii->mem);
if (ascii->balloc > 0) free(ascii->buf);
if (ascii->ssi != NULL) esl_ssi_Close(ascii->ssi);
if (ascii->afp != NULL) esl_msafile_Close(ascii->afp);
if (ascii->msa != NULL) esl_msa_Destroy(ascii->msa);
ascii->do_gzip = FALSE;
ascii->do_stdin = FALSE;
ascii->fp = NULL;
ascii->ssifile = NULL;
ascii->mem = NULL;
ascii->balloc = 0;
ascii->buf = NULL;
ascii->ssi = NULL;
ascii->afp = NULL;
ascii->msa = NULL;
return;
}
/*------------------- ESL_SQFILE open/close -----------------------*/
/*****************************************************************
*# 2. An <ESL_SQFILE> object, in digital mode [with <alphabet>]
*****************************************************************/
/* Function: sqascii_SetDigital()
* Synopsis: Set an open <ESL_SQFILE> to read in digital mode.
*
* Purpose: Given an <ESL_SQFILE> that's already been opened,
* configure it to expect subsequent input to conform
* to the digital alphabet <abc>.
*
* Calling <esl_sqfile_Open(); esl_sqfile_SetDigital()> is
* equivalent to <esl_sqfile_OpenDigital()>. The two-step
* version is useful when you need a
* <esl_sqfile_GuessAlphabet()> call in between, guessing
* the file's alphabet in text mode before you set it to
* digital mode.
*
* Returns: <eslOK> on success.
*/
static int
sqascii_SetDigital(ESL_SQFILE *sqfp, const ESL_ALPHABET *abc)
{
int status = eslOK;
ESL_SQASCII_DATA *ascii = &sqfp->data.ascii;
if (!esl_sqio_IsAlignment(sqfp->format))
{
switch (sqfp->format) {
case eslSQFILE_EMBL: inmap_embl(sqfp, abc->inmap); break;
case eslSQFILE_UNIPROT: inmap_embl(sqfp, abc->inmap); break;
case eslSQFILE_GENBANK: inmap_genbank(sqfp, abc->inmap); break;
case eslSQFILE_DDBJ: inmap_genbank(sqfp, abc->inmap); break;
case eslSQFILE_FASTA: inmap_fasta(sqfp, abc->inmap); break;
case eslSQFILE_DAEMON: inmap_daemon(sqfp, abc->inmap); break;
default: status = eslEFORMAT; break;
}
}
else
esl_msafile_SetDigital(ascii->afp, abc);
return status;
}
/* Function: sqascii_GuessAlphabet()
* Synopsis: Guess the alphabet of an open <ESL_SQFILE>.
*
* Purpose: After opening <sqfp>, attempt to guess what alphabet
* its sequences are in, by inspecting the first sequence
* in the file, and return this alphabet type in <*ret_type>.
*
* Returns: <eslOK> on success, and <*ret_type> is set to <eslDNA>,
* <eslRNA>, or <eslAMINO>.
*
* Returns <eslENOALPHABET> and sets <*ret_type> to
* <eslUNKNOWN> if the first sequence (or alignment)
* in the file contains no more than ten residues total,
* or if its alphabet cannot be guessed (i.e. it contains
* IUPAC degeneracy codes, but no amino acid specific
* residues).
*
* Returns <eslEFORMAT> if a parse error is encountered in
* trying to read the sequence file. <ascii->errbuf> is set
* to a useful error message if this occurs,
* <sqfp->linenumber> is the line on which the error
* occurred, and <*ret_type> is set to <eslUNKNOWN>.
*
* Returns <eslENODATA> and sets <*ret_type> to <eslUNKNOWN>
* if the file appears to be empty.
*
* Throws: <eslEMEM> on allocation error;
* <eslEINCONCEIVABLE> on unimaginable internal errors.
*/
static int
sqascii_GuessAlphabet(ESL_SQFILE *sqfp, int *ret_type)
{
ESL_SQ *sq = NULL;
int status;
ESL_SQASCII_DATA *ascii = &sqfp->data.ascii;
/* Special case: for MSA files, hand this off to msafile_GuessAlphabet. */
if (esl_sqio_IsAlignment(sqfp->format)) return esl_msafile_GuessAlphabet(ascii->afp, ret_type);
/* set the sqfp to record; we'll rewind afterwards and use the recording */
ascii->is_recording = TRUE;
if ((sq = esl_sq_Create()) == NULL) { status = eslEMEM; goto ERROR; }
status = sqascii_ReadWindow(sqfp, 0, 4000, sq);
if (status == eslEOF) { status = eslENODATA; goto ERROR; }
else if (status != eslOK) goto ERROR;
if ((status = esl_sq_GuessAlphabet(sq, ret_type)) != eslOK) goto ERROR;
/* reset the sqfp, so it uses the recording next */
ascii->mpos = 0;
ascii->linenumber = 1;
ascii->is_recording = FALSE;
if ((status = loadbuf(sqfp)) != eslOK) ESL_EXCEPTION(status, "buffer load failed, but shouldn't have");
esl_sq_Destroy(sq);
return eslOK;
ERROR:
esl_sq_Destroy(sq);
*ret_type = eslUNKNOWN;
return status;
}
/*-------------- end, digital mode ESL_SQFILE -------------------*/
/*****************************************************************
*# 3. Miscellaneous routines
*****************************************************************/
/* Function: sqascii_IsRewindable()
* Synopsis: Return <TRUE> if <sqfp> can be rewound.
*
* Purpose: Returns <TRUE> if <sqfp> can be rewound (positioned
* to an offset of zero), in order to read it a second
* time.
*/
static int
sqascii_IsRewindable(const ESL_SQFILE *sqfp)
{
if (sqfp->data.ascii.do_gzip == TRUE) return FALSE;
if (sqfp->data.ascii.do_stdin == TRUE) return FALSE;
return TRUE;
}
/* Function: sqascii_GetError()
* Synopsis: Return <TRUE> if <sqfp> can be rewound.
*
* Purpose: Returns <TRUE> if <sqfp> can be rewound (positioned
* to an offset of zero), in order to read it a second
* time.
*/
static const char *
sqascii_GetError(const ESL_SQFILE *sqfp)
{
return sqfp->data.ascii.errbuf;
}
/*****************************************************************
*# 4. Sequence reading (sequential)
*****************************************************************/
/* Function: sqascii_Read()
* Synopsis: Read the next sequence from a file.
*
* Purpose: Reads the next sequence from open sequence file <sqfp> into
* <sq>. Caller provides an allocated and initialized <s>, which
* will be internally reallocated if its space is insufficient.
*
* Returns: <eslOK> on success; the new sequence is stored in <s>.
*
* Returns <eslEOF> when there is no sequence left in the
* file (including first attempt to read an empty file).
*
* Returns <eslEFORMAT> if there's a problem with the format,
* such as an illegal character; the line number that the parse
* error occurs on is in <sqfp->linenumber>, and an informative
* error message is placed in <ascii->errbuf>.
*
* Throws: <eslEMEM> on allocation failure;
* <eslEINCONCEIVABLE> on internal error.
*/
static int
sqascii_Read(ESL_SQFILE *sqfp, ESL_SQ *sq)
{
int status;
int64_t epos;
int64_t n;
ESL_SQASCII_DATA *ascii = &sqfp->data.ascii;
if (esl_sqio_IsAlignment(sqfp->format))
{
ESL_SQ *tmpsq = NULL;
if (ascii->msa == NULL || ascii->idx >= ascii->msa->nseq)
{ /* we need to load a new alignment? */
esl_msa_Destroy(ascii->msa);
status = esl_msafile_Read(ascii->afp, &(ascii->msa));
if (status == eslEFORMAT)
{ /* oops, a parse error; upload the error info from afp to sqfp */
ascii->linenumber = ascii->afp->linenumber;
strcpy(ascii->errbuf, ascii->afp->errmsg); /* errbufs same size! */
return eslEFORMAT;
}
if (status != eslOK) return status;
ascii->idx = 0;
}
/* grab next seq from alignment */
/* this is inefficient; it goes via a temporarily allocated copy of the sequence */
if ((status = esl_sq_FetchFromMSA(ascii->msa, ascii->idx, &tmpsq)) != eslOK) return status;
esl_sq_GrowTo(sq, tmpsq->n);
esl_sq_Copy(tmpsq, sq);
esl_sq_Destroy(tmpsq);
ascii->idx++;
sq->start = 1;
sq->end = sq->n;
sq->C = 0;
sq->W = sq->n;
sq->L = sq->n;
return eslOK;
}
/* Main case: read next seq from sqfp's stream */
if (ascii->nc == 0) return eslEOF;
if ((status = ascii->parse_header(sqfp, sq)) != eslOK) return status; /* EMEM, EOF, EFORMAT */
do {
if ((status = seebuf(sqfp, -1, &n, &epos)) == eslEFORMAT) return status;
if (esl_sq_GrowTo(sq, sq->n + n) != eslOK) return eslEMEM;
addbuf(sqfp, sq, n);
ascii->L += n;
sq->eoff = ascii->boff + epos - 1;
if (status == eslEOD) break;
} while ((status = loadbuf(sqfp)) == eslOK);
if (status == eslEOF)
{
if (! ascii->eof_is_ok) ESL_FAIL(eslEFORMAT, ascii->errbuf, "Unexpected EOF; file truncated?");
if ((status = ascii->parse_end(sqfp, sq)) != eslOK) return status;
}
else if (status == eslEOD)
{
ascii->bpos = epos;
if ((status = ascii->parse_end(sqfp, sq)) != eslOK) return status;
}
else if (status != eslOK) return status;
if (sq->dsq != NULL) sq->dsq[sq->n+1] = eslDSQ_SENTINEL;
else sq->seq[sq->n] = '\0';
sq->start = 1;
sq->end = sq->n;
sq->C = 0;
sq->W = sq->n;
sq->L = sq->n;
return eslOK;
}
/* Function: sqascii_ReadInfo()
* Synopsis: Read sequence info, but not the sequence itself.
*
* Purpose: Read the next sequence from open sequence file <sqfp>,
* but don't store the sequence (or secondary structure).
* Upon successful return, <s> holds all the available
* information about the sequence -- its name, accession,
* description, and overall length <sq->L>.
*
* This is useful for indexing sequence files, where
* individual sequences might be ginormous, and we'd rather
* avoid reading complete seqs into memory.
*
* Returns: <eslOK> on success.
*
* Throws: <eslEMEM> on allocation error.
*/
static int
sqascii_ReadInfo(ESL_SQFILE *sqfp, ESL_SQ *sq)
{
int status;
int64_t epos;
int64_t n;
ESL_SQASCII_DATA *ascii = &sqfp->data.ascii;
if (esl_sqio_IsAlignment(sqfp->format))
{
ESL_SQ *tmpsq = NULL;
if (ascii->msa == NULL || ascii->idx >= ascii->msa->nseq)
{ /* we need to load a new alignment? */
esl_msa_Destroy(ascii->msa);
status = esl_msafile_Read(ascii->afp, &(ascii->msa));
if (status == eslEFORMAT)
{ /* oops, a parse error; upload the error info from afp to sqfp */
ascii->linenumber = ascii->afp->linenumber;
strcpy(ascii->errbuf, ascii->afp->errmsg); /* errbufs same size! */
return eslEFORMAT;
}
if (status != eslOK) return status;
ascii->idx = 0;
}
/* grab next seq from alignment */
/* this is inefficient; it goes via a temporarily allocated copy of the sequence */
if ((status = esl_sq_FetchFromMSA(ascii->msa, ascii->idx, &tmpsq)) != eslOK) return status;
if (tmpsq->dsq != NULL) tmpsq->dsq[1] = eslDSQ_SENTINEL;
else tmpsq->seq[0] = '\0';
esl_sq_Copy(tmpsq, sq);
esl_sq_Destroy(tmpsq);
ascii->idx++;
if (sq->dsq != NULL) sq->dsq[1] = eslDSQ_SENTINEL;
else sq->seq[0] = '\0';
if (sq->ss != NULL) { free(sq->ss); sq->ss = NULL; }
sq->n = 0;
sq->start = 0;
sq->end = 0;
sq->C = 0;
sq->W = 0;
return eslOK;
}
if (ascii->nc == 0) return eslEOF;
if ((status = ascii->parse_header(sqfp, sq)) != eslOK) return status; /* EOF, EFORMAT */
ascii->L = 0;
do {
status = seebuf(sqfp, -1, &n, &epos);
ascii->L += n;
sq->eoff = ascii->boff + epos - 1;
if (status == eslEFORMAT) return status;
if (status == eslEOD) break;
} while ((status = loadbuf(sqfp)) == eslOK);
if (status == eslEOF)
{
if (! ascii->eof_is_ok) ESL_FAIL(eslEFORMAT, ascii->errbuf, "Unexpected EOF; file truncated?");
}
else if (status == eslEOD)
{
ascii->bpos = epos;
if ((status = ascii->parse_end(sqfp, sq)) != eslOK) return status;
}
else if (status != eslOK) return status;
sq->L = ascii->L;
/* Set coord system for an info-only ESL_SQ */
if (sq->dsq != NULL) sq->dsq[1] = eslDSQ_SENTINEL;
else sq->seq[0] = '\0';
if (sq->ss != NULL) { free(sq->ss); sq->ss = NULL; }
sq->n = 0;
sq->start = 0;
sq->end = 0;
sq->C = 0;
sq->W = 0;
return eslOK;
}
/* Function: sqascii_ReadSequence()
* Synopsis: Read the next sequence from a file.
*
* Purpose: Reads the next sequence from open sequence file <sqfp> into
* <sq>. Caller provides an allocated and initialized <s>, which
* will be internally reallocated if its space is insufficient.
*
* Returns: <eslOK> on success; the new sequence is stored in <s>.
*
* Returns <eslEOF> when there is no sequence left in the
* file (including first attempt to read an empty file).
*
* Returns <eslEFORMAT> if there's a problem with the format,
* such as an illegal character; the line number that the parse
* error occurs on is in <sqfp->linenumber>, and an informative
* error message is placed in <ascii->errbuf>.
*
* Throws: <eslEMEM> on allocation failure;
* <eslEINCONCEIVABLE> on internal error.
*/
static int
sqascii_ReadSequence(ESL_SQFILE *sqfp, ESL_SQ *sq)
{
ESL_SQASCII_DATA *ascii = &sqfp->data.ascii;
int64_t epos;
int64_t n;
int status;
if (esl_sqio_IsAlignment(sqfp->format))
{
ESL_SQ *tmpsq = NULL;
if (ascii->msa == NULL || ascii->idx >= ascii->msa->nseq)
{ /* we need to load a new alignment? */
esl_msa_Destroy(ascii->msa);
status = esl_msafile_Read(ascii->afp, &(ascii->msa));
if (status == eslEFORMAT)
{ /* oops, a parse error; upload the error info from afp to sqfp */
ascii->linenumber = ascii->afp->linenumber;
strcpy(ascii->errbuf, ascii->afp->errmsg); /* errbufs same size! */
return eslEFORMAT;
}
if (status != eslOK) return status;
ascii->idx = 0;
}
/* grab next seq from alignment */
/* this is inefficient; it goes via a temporarily allocated copy of the sequence */
status = esl_sq_FetchFromMSA(ascii->msa, ascii->idx, &tmpsq); // eslEMEM | eslEOD
if (status != eslOK) return status;
esl_sq_GrowTo(sq, tmpsq->n);
esl_sq_Copy(tmpsq, sq);
esl_sq_Destroy(tmpsq);
ascii->idx++;
sq->start = 1;
sq->end = sq->n;
sq->C = 0;
sq->W = sq->n;
sq->L = sq->n;
return eslOK;
}
/* Main case: read next seq from sqfp's stream */
if (ascii->nc == 0) return eslEOF;
if ((status = ascii->skip_header(sqfp, sq)) != eslOK) return status; /* EOF, EFORMAT */
do {
if ((status = seebuf(sqfp, -1, &n, &epos)) == eslEFORMAT) return status;
if (esl_sq_GrowTo(sq, sq->n + n) != eslOK) return eslEMEM;
addbuf(sqfp, sq, n);
ascii->L += n;
sq->eoff = ascii->boff + epos - 1;
if (status == eslEOD) break;
} while ((status = loadbuf(sqfp)) == eslOK);
if (status == eslEOF)
{
if (! ascii->eof_is_ok) ESL_FAIL(eslEFORMAT, ascii->errbuf, "Unexpected EOF; file truncated?");
if ((status = ascii->parse_end(sqfp, sq)) != eslOK) return status;
}
else if (status == eslEOD)
{
ascii->bpos = epos;
if ((status = ascii->parse_end(sqfp, sq)) != eslOK) return status;
}
else if (status != eslOK) return status;
if (sq->dsq != NULL) sq->dsq[sq->n+1] = eslDSQ_SENTINEL;
else sq->seq[sq->n] = '\0';
sq->start = 1;
sq->end = sq->n;
sq->C = 0;
sq->W = sq->n;
sq->L = sq->n;
return eslOK;
}
/* Function: sqascii_ReadWindow()
* Synopsis: Read next window of sequence.
*
* Purpose: Read a next window of <W> residues from open file <sqfp>,
* keeping <C> residues from the previous window as
* context, and keeping previous annotation in the <sq>
* as before.
*
* If this is the first window of a new sequence record,
* <C> is ignored (there's no previous context yet), and
* the annotation fields of the <sq> (name, accession, and
* description) are initialized by reading the sequence
* record's header. This is the only time the annotation
* fields are initialized.
*
* On return, <sq->dsq[]> contains the window and its
* context; residues <1..sq->C> are the previous context,
* and residues <sq->C+1..sq->n> are the new window. The
* start and end coordinates of the whole <dsq[1..n]>
* (including context) in the original source sequence are
* <sq->start..sq->end>. (Or, for text mode sequences,
* <sq->seq[0..sq->C-1,sq->C..sq->n-1]>, while <start> and
* <end> coords are still <1..L>.)
*
* When a sequence record is completed and no more data
* remain, <eslEOD> is returned, with an ``info'' <sq>
* structure (containing the annotation and the total
* sequence length <L>, but no sequence). (The total
* sequence length <L> is unknown in <sq> until this
* <eslEOD> return.)
*
* The caller may then do one of two things before calling
* <esl_sq_ReadWindow()> again; it can reset the sequence
* with <esl_sq_Reuse()> to continue reading the next
* sequence in the file, or it can set a negative <W> as a
* signal to read windows from the reverse complement
* (Crick) strand. Reverse complement reading only works
* for nucleic acid sequence.
*
* If you read the reverse complement strand, you must read
* the whole thing, calling <esl_sqio_ReadWindow()> with
* negative <W> windows until <eslEOD> is returned again
* with an empty (info-only) <sq> structure. When that
* <EOD> is reached, the <sqfp> is repositioned at the
* start of the next sequence record; the caller should now
* <Reuse()> the <sq>, and the next <esl_sqio_ReadWindow()>
* call must have a positive <W>, corresponding to starting
* to read the Watson strand of the next sequence.
*
* Note that the <ReadWindow()> interface is designed for
* an idiom of sequential reading of complete sequences in
* overlapping windows, possibly on both strands; if you
* want more freedom to move around in the sequence
* grabbing windows in another order, you can use the
* <FetchSubseq()> interface.
*
* Reading the reverse complement strand requires file
* repositioning, so it will not work on non-repositionable
* streams like gzipped files or a stdin pipe. Moreover,
* for reverse complement input to be efficient, the
* sequence file should have consistent line lengths,
* suitable for SSI's fast subsequence indexing.
*
* Returns: <eslOK> on success; <sq> now contains next window of
* sequence, with at least 1 new residue. The number
* of new residues is <sq->W>; <sq->C> residues are
* saved from the previous window. Caller may now
* process residues <sq->dsq[sq->C+1]..sq->dsq[sq->n]>.
*
* <eslEOD> if no new residues were read for this sequence
* and strand, and <sq> now contains an empty info-only
* structure (annotation and <L> are valid). Before calling
* <esl_sqio_ReadWindow()> again, caller will either want
* to make <W> negative (to start reading the Crick strand
* of the current sequence), or it will want to reset the
* <sq> (with <esl_sq_Reuse()>) to go on the next sequence.
*
* <eslEOF> if we've already returned <eslEOD> before to
* signal the end of the previous seq record, and moreover,
* there's no more sequence records in the file.
*
* <eslEINVAL> if an invalid residue is found in the
* sequence, or if you attempt to take the reverse
* complement of a sequence that can't be reverse
* complemented.
*
* Throws: <eslESYNTAX> if you try to read a reverse window before
* you've read forward strand.
*
* <eslECORRUPT> if something goes awry internally in the
* coordinate system.
*
* <eslEMEM> on allocation error.
*/
static int
sqascii_ReadWindow(ESL_SQFILE *sqfp, int C, int W, ESL_SQ *sq)
{
int actual_start;
int64_t nres;
int64_t line;
off_t offset;
int status;
ESL_SQ *tmpsq = NULL;
ESL_SQASCII_DATA *ascii = &sqfp->data.ascii;
if (esl_sqio_IsAlignment(sqfp->format))
{
/* special: if we're initializing a revcomp window read, back ascii->idx up one */
if (W < 0 && sq->start == 0) ascii->idx--;
if (ascii->msa == NULL || ascii->idx >= ascii->msa->nseq)
{ /* need new alignment? */
esl_msa_Destroy(ascii->msa);
status = esl_msafile_Read(ascii->afp, &(ascii->msa));
if (status == eslEFORMAT)
{ /* oops, a parse error; upload the error info from afp to sqfp */
ascii->linenumber = ascii->afp->linenumber;
strcpy(ascii->errbuf, ascii->afp->errmsg); /* errbufs same size! */
return eslEFORMAT;
}
else if (status != eslOK) goto ERROR;
ascii->idx = 0;
}
/* grab appropriate seq from alignment into tmpsq */
if ((status = esl_sq_FetchFromMSA(ascii->msa, ascii->idx, &tmpsq)) != eslOK) goto ERROR;
/*by default, tmpsq is an ascii sequence, convert it to digital if that's what sq is*/
if (sq->seq == NULL &&
(( status = esl_sq_Digitize(sq->abc, tmpsq)) != eslOK))
goto ERROR;
/* Figure out tmpsq coords we'll put in sq */
if (W > 0)
{/* forward strand */
sq->C = ESL_MIN(sq->n, C);
sq->start = sq->end - sq->C + 1;
sq->end = ESL_MIN(tmpsq->L, sq->end + W);
sq->n = sq->end - sq->start + 1;
sq->W = sq->n - sq->C;
}
else
{/* reverse strand */
if (sq->L == -1) ESL_XEXCEPTION(eslESYNTAX, "Can't read reverse complement until you've read forward strand");
sq->C = ESL_MIN(sq->n, sq->end + C - 1);
sq->end = (sq->start == 0 ? sq->L : sq->end + sq->C - 1);
sq->start = ESL_MAX(1, sq->end + W - sq->C - 1);
sq->n = sq->end - sq->start + 1;
sq->W = sq->n - sq->C;
}
if (sq->W == 0)/* no new sequence? that's the EOD case */
{
sq->start = 0;
sq->end = 0;
sq->C = 0;
sq->W = 0;
sq->n = 0;
sq->L = tmpsq->L;
if (sq->dsq) sq->dsq[1] = eslDSQ_SENTINEL;
else if (sq->seq) sq->seq[0] = '\0';
ascii->idx++;
esl_sq_Destroy(tmpsq);
return eslEOD;
}
/* Copy the sequence frag. */
if (tmpsq->ss != NULL && sq->ss == NULL) ESL_ALLOC(sq->ss, sizeof(char) * (sq->salloc)); /* this *must* be for salloc */
esl_sq_GrowTo(sq, sq->n);
if (tmpsq->seq != NULL)
{/* text mode */
memcpy(sq->seq, tmpsq->seq + sq->start - 1, sizeof(char) * sq->n);
sq->seq[sq->n] = '\0';
if (tmpsq->ss != NULL) {
memcpy(sq->ss, tmpsq->ss + sq->start - 1, sizeof(char) * sq->n);
sq->ss[sq->n] = '\0';
}
}
else
{
memcpy(sq->dsq + 1, tmpsq->dsq + sq->start, sizeof(ESL_DSQ) * sq->n);
sq->dsq[sq->n+1] = eslDSQ_SENTINEL;
if (tmpsq->ss != NULL) {
memcpy(sq->ss + 1, tmpsq->ss + sq->start, sizeof(char) * sq->n);
sq->ss[sq->n+1] = '\0';
}
}
if (W < 0 && (status = esl_sq_ReverseComplement(sq)) != eslOK)
ESL_XFAIL(eslEINVAL, ascii->errbuf, "Can't reverse complement that sequence window");
/* Copy annotation */
if ((status = esl_sq_SetName (sq, tmpsq->name)) != eslOK) goto ERROR;
if ((status = esl_sq_SetSource (sq, tmpsq->name)) != eslOK) goto ERROR;
if ((status = esl_sq_SetAccession(sq, tmpsq->acc)) != eslOK) goto ERROR;
if ((status = esl_sq_SetDesc (sq, tmpsq->desc)) != eslOK) goto ERROR;
sq->roff = -1;
sq->doff = -1;
sq->eoff = -1;
sq->hoff = -1;
esl_sq_Destroy(tmpsq);
return eslOK;
}
/* Now for the normal case: we're reading a normal unaligned seq file, not an alignment. */
/* Negative W indicates reverse complement direction */
if (W < 0)
{
if (sq->L == -1) ESL_EXCEPTION(eslESYNTAX, "Can't read reverse complement until you've read forward strand");
if (sq->end == 1 || sq->L == 0)
{ /* last end == 1 means last window was the final one on reverse strand,
* so we're EOD; jump back to last forward position.
*
* Also check for the unusual case of sq->L == 0, a completely empty sequence:
* in that case, immediately return eslEOD.
*/
if (ascii->bookmark_offset > 0)
{
if (esl_sqfile_Position(sqfp, ascii->bookmark_offset) != eslOK)
ESL_EXCEPTION(eslECORRUPT, "Failed to reposition seq file at last forward bookmark");
ascii->linenumber = ascii->bookmark_linenum;
}
else
ascii->nc = 0; /* signals EOF */
ascii->bookmark_offset = 0;
ascii->bookmark_linenum = 0;
sq->start = 0;
sq->end = 0;
sq->C = 0;
sq->W = 0;
sq->n = 0;
/* sq->L stays as it is */
if (sq->dsq != NULL) sq->dsq[1] = eslDSQ_SENTINEL;
else sq->seq[0] = '\0';
return eslEOD;
}
/* If sq->start == 0, we haven't read any reverse windows yet;
* init reading from sq->L
*/
W = -W;
if (sq->start == 0)
{
sq->start = ESL_MAX(1, (sq->L - W + 1));
sq->end = sq->L;
sq->C = 0;
sq->W = sq->end - sq->start + 1;
ascii->curbpl = -1;
ascii->currpl = -1;
ascii->prvbpl = -1;
ascii->prvrpl = -1;
ascii->linenumber = -1;
ascii->L = -1;
}
else
{ /* Else, we're continuing to next window; prv was <end>..<start> */
sq->C = ESL_MIN(C, sq->L - sq->end + 1); /* based on prev window's end */
sq->end = sq->end + sq->C - 1; /* also based on prev end */
sq->start = ESL_MAX(1, (sq->end - W - sq->C + 1));
sq->W = sq->end - sq->start + 1 - sq->C;
}
/* Now position for a subseq fetch of <start..end> on fwd strand, using SSI offset calc */
ESL_DASSERT1(( sq->doff != 0 ));
if (ascii->bpl == 0 || ascii->rpl == 0) /* no help; brute force resolution. */
{
offset = sq->doff;
actual_start = 1;
}
else if (ascii->bpl == ascii->rpl+1) /* residue resolution */
{
line = (sq->start-1) / ascii->rpl; /* data line #0.. that <end> is on */
offset = sq->doff + line * ascii->bpl + (sq->start-1)%ascii->rpl;
actual_start = sq->start;
}
else /* line resolution */
{
line = (sq->start-1) / ascii->rpl; /* data line #0.. that <end> is on */
offset = sq->doff + line * ascii->bpl;
actual_start = 1 + line * ascii->rpl;
}
if (esl_sqfile_Position(sqfp, offset) != eslOK)
ESL_EXCEPTION(eslECORRUPT, "Failed to reposition seq file for reverse window read");
/* grab the subseq and rev comp it */
if ((status = esl_sq_GrowTo(sq, sq->C+sq->W)) != eslOK) return status;
sq->n = 0;
status = read_nres(sqfp, sq, (sq->start - actual_start), (sq->end - sq->start + 1), &nres);
if (status != eslOK || nres < (sq->end - sq->start + 1))
ESL_EXCEPTION(eslECORRUPT, "Failed to extract %d..%d", sq->start, sq->end);
status = esl_sq_ReverseComplement(sq);
if (status == eslEINVAL) ESL_FAIL(eslEINVAL, ascii->errbuf, "can't reverse complement that seq - it's not DNA/RNA");
else if (status != eslOK) return status;
return eslOK;
}
/* Else, we're reading the forward strand */
else
{ /* sq->start == 0 means we haven't read any windows on this sequence yet...
* it's a new record, and we need to initialize with the header and
* the first window. This is the only case that we're allowed to return
* EOF from.
*/
if (sq->start == 0)
{
if (ascii->nc == 0) return eslEOF;
if ((status = ascii->parse_header(sqfp, sq)) != eslOK) return status; /* EOF, EFORMAT */
sq->start = 1;
sq->C = 0;/* no context in first window */
sq->L = -1;/* won't be known 'til EOD. */
ascii->L = 0;/* init to 0, so we can count residues as we go */
esl_sq_SetSource(sq, sq->name);
/* the <ascii->buf> is now positioned at the start of seq data */
/* ascii->linenumber is ok where it is */
/* the header_*() routines initialized rpl,bpl bookkeeping at start of seq line,
* and also sq->doff,roff.
*/
}
else
{ /* else we're reading a window other than first; slide context over. */
sq->C = ESL_MIN(C, sq->n);
/* if the case where the window is smaller than the context and the
* context is not full, it is not necessary to move the context part
* of the sequence that has been read in.
*/
if (sq->C >= C) {
/* now handle the case where the context is full */
if (sq->seq != NULL) memmove(sq->seq, sq->seq + sq->n - sq->C, sq->C);
else memmove(sq->dsq+1, sq->dsq + sq->n - sq->C + 1, sq->C);
sq->start = ascii->L - sq->C + 1;
sq->n = C;
}
}
if ((status = esl_sq_GrowTo(sq, C+W)) != eslOK) return status; /* EMEM */
status = read_nres(sqfp, sq, 0, W, &nres);
ascii->L += nres;
if (status == eslEOD)
{ /* Forward strand is done. 0 residues were read. Return eslEOD and an empty (info) <sq>. */
if ((status = ascii->parse_end(sqfp, sq)) != eslOK) return status;
sq->start = 0;
sq->end = 0;
sq->C = 0;
sq->W = 0;
sq->L = ascii->L;
sq->n = 0;
if (ascii->nc > 0) {
ascii->bookmark_offset = ascii->boff+ascii->bpos; /* remember where the next seq starts. */
//ascii->bookmark_linenum = ascii->bookmark_linenum;
} else {
ascii->bookmark_offset = 0; /* signals for EOF, no more seqs */
ascii->bookmark_linenum = 0;
}
if (sq->dsq != NULL) sq->dsq[1] = eslDSQ_SENTINEL; /* erase the saved context */
else sq->seq[0] = '\0';
return eslEOD;
}
else if (status == eslOK)
{ /* Forward strand is still in progress. <= W residues were read. Return eslOK. */
sq->end = sq->start + sq->C + nres - 1;
sq->W = nres;
return eslOK;
}
else return status;/* EFORMAT,EMEM */
}
/*NOTREACHED*/
return eslOK;
ERROR:
if (tmpsq != NULL) esl_sq_Destroy(tmpsq);
return status;
}
/* Function: sqascii_ReadBlock()
* Synopsis: Read the next block of sequences from a file.
*
* Purpose: Reads a block of sequences from open sequence file <sqfp> into
* <sqBlock>.
*
* In the case that <long_target> is false, the sequences are
* expected to be protein - individual sequences won't be long
* so read them in one-whole-sequence at a time. If <max_sequences> is set
* to a number > 0 read <max_sequences> sequences, up to at most
* MAX_RESIDUE_COUNT residues.
*
* If <long_target> is true, the sequences are expected to be DNA.
* Because sequences in a DNA database can exceed MAX_RESIDUE_COUNT,
* this function uses ReadWindow to read chunks of sequence no
* larger than <max_residues>, and must allow for the possibility that a
* request will be made to continue reading a partly-read
* sequence. This case also respects the <max_sequences> limit.
*
* Returns: <eslOK> on success; the new sequence is stored in <sqBlock>.
*
* Returns <eslEOF> when there is no sequence left in the
* file (including first attempt to read an empty file).
*
* Returns <eslEFORMAT> if there's a problem with the format,
* such as an illegal character; the line number that the parse
* error occurs on is in <sqfp->linenumber>, and an informative
* error message is placed in <ascii->errbuf>.
*
* Throws: <eslEMEM> on allocation failure;
* <eslEINCONCEIVABLE> on internal error.
*/
static int
sqascii_ReadBlock(ESL_SQFILE *sqfp, ESL_SQ_BLOCK *sqBlock, int max_residues, int max_sequences, int long_target)
{
int i = 0;
int size = 0;
int status = eslOK;
ESL_SQ *tmpsq = NULL;
sqBlock->count = 0;
if (max_sequences < 1 || max_sequences > sqBlock->listSize)
max_sequences = sqBlock->listSize;
if ( !long_target )
{ /* in these cases, an individual sequence won't ever be really long,
so just read in a sequence at a time */
for (i = 0; i < max_sequences && size < MAX_RESIDUE_COUNT; ++i)
{
status = sqascii_Read(sqfp, sqBlock->list + i);
if (status != eslOK) break;
size += sqBlock->list[i].n;
++sqBlock->count;
}
}
else
{ /* DNA, not an alignment. Might be really long sequences */
if (max_residues < 1)
max_residues = MAX_RESIDUE_COUNT;
tmpsq = esl_sq_Create();
//if complete flag is set to FALSE, then the prior block must have ended with a window that was a possibly
//incomplete part of it's full sequence. Read another overlapping window.
if (! sqBlock->complete )
{
//overloading C as indicator of how big C should be for this window reading action
status = sqascii_ReadWindow(sqfp, sqBlock->list->C, max_residues, sqBlock->list);
if (status == eslOK)
{
sqBlock->count = i = 1;
size = sqBlock->list->n - sqBlock->list->C;
sqBlock->list->L = sqfp->data.ascii.L;
if (size == max_residues)
{ // Filled the block with a single very long window.
sqBlock->complete = FALSE; // default value, unless overridden below
status = skip_whitespace(sqfp);
if ( status != eslOK ) { // either EOD or end of buffer (EOF) was reached before the next character was seen
sqBlock->complete = TRUE;
status = eslOK;
}
if(tmpsq != NULL) esl_sq_Destroy(tmpsq);
return status;
}
else
{
// Burn off EOD (see notes for similar entry ~25 lines below), then go fetch the next sequence
esl_sq_Reuse(tmpsq);
tmpsq->start = sqBlock->list->start ;
tmpsq->C = 0;
status = sqascii_ReadWindow(sqfp, 0, max_residues, tmpsq);
if (status != eslEOD) {
if(tmpsq != NULL) esl_sq_Destroy(tmpsq);
return status; //surprising
}
//sqBlock->list->L = tmpsq->L;
}
}
else if (status == eslEOD)
{ // turns out there isn't any more of the sequence to read, after all
}
else
{
if(tmpsq != NULL) esl_sq_Destroy(tmpsq);
return status;
}
} // otherwise, just start at the beginning
for ( ; i < max_sequences && size < max_residues; ++i) {
/* restricted request_size is used to ensure that all blocks are pretty close to the
* same size. Without it, we may either naively keep asking for max_residue windows,
* which can result in a window with ~2*max_residues ... or we can end up with absurdly
* short fragments at the end of blocks
*/
int request_size = ESL_MAX(max_residues-size, max_residues * .05);
esl_sq_Reuse(tmpsq);
esl_sq_Reuse(sqBlock->list + i);
status = sqascii_ReadWindow(sqfp, 0, request_size , sqBlock->list + i);
if (status != eslOK && status != eslEOD) break; /* end of sequences (eslEOF), or we read an empty seq (eslEOD) or error (other) */
size += sqBlock->list[i].n - sqBlock->list[i].C;
sqBlock->list[i].L = sqfp->data.ascii.L;
++(sqBlock->count);
if (size >= max_residues) {
// a full window worth of sequence has been read; did we reach the end of the final sequence in the block?
sqBlock->complete = FALSE; // default value, unless overridden below
status = skip_whitespace(sqfp);
if ( status != eslOK ) { // either EOD or end of buffer (EOF) was reached before the next character was seen
sqBlock->complete = TRUE;
status = eslOK;
}
if(tmpsq != NULL) esl_sq_Destroy(tmpsq);
return status;
} else if(status == eslEOD) {
/* We've read an empty sequence of length 0, rare, but
* possible, and we need to be able to handle it
* gracefully. Ensure L is 0, set status to eslOK and move
* on, we've already incremented sqBlock->count by 1
* above. This means our block may contain zero-length
* sequences when we return (that is, we still add these
* seqs onto the block instead of skipping them altogether).
*/
sqBlock->list[i].L = 0; /* actually, this should already be 0... */
status = eslOK;
} else {
/* Sequence finished, but haven't yet reached max_residues. Need to burn off the EOD value
that will be returned by the next ReadWindow call. Can just use a tmp sq, after setting
a couple values ReadWindow needs to see for correct processing.
*/
esl_sq_Reuse(tmpsq);
tmpsq->start = sqBlock->list[i].start ;
tmpsq->C = 0;
status = sqascii_ReadWindow(sqfp, 0, max_residues, tmpsq);
if (status != eslEOD) {
if(tmpsq != NULL) esl_sq_Destroy(tmpsq);
return status; //surprising
}
//sqBlock->list[i].L = tmpsq->L;
status = eslOK;
}
}
}
/* EOF will be returned only in the case were no sequences were read */
if (status == eslEOF && i > 0) status = eslOK;
sqBlock->complete = TRUE;
if(tmpsq != NULL) esl_sq_Destroy(tmpsq);
return status;
}
/* Function: sqascii_Echo()
* Synopsis: Echo a sequence's record onto output stream.
*
* Purpose: Given a complete <sq> that we have read by some means
* from an open <sqfp>; echo that sequence's record
* onto the output stream <ofp>.
*
* This allows records to be regurgitated exactly as they
* appear, rather than writing the subset of information
* stored in an <ESL_SQ>. <esl-sfetch> in the miniapps uses
* this, for example.
*
* Because this relies on repositioning the <sqfp>, it
* cannot be called on non-positionable streams (stdin or
* gzipped files). Because it relies on the sequence lying
* in a contiguous sequence of bytes in the file, it cannot
* be called on a sequence in a multiple alignment file.
* Trying to do so throws an <eslEINVAL> exception.
*
* Returns: <eslOK> on success.
*
* Throws: <eslEINVAL> if <sqfp> isn't a repositionable sequence file.
* <eslECORRUPT> if we run out of data, probably from bad offsets
* <eslEMEM> on allocation failure.
* <eslESYS> on system call failures.
*
*
*/
static int
sqascii_Echo(ESL_SQFILE *sqfp, const ESL_SQ *sq, FILE *ofp)
{
int status;
int64_t save_linenumber;
int save_currpl;
int save_curbpl;
int save_prvrpl;
int save_prvbpl;
int64_t save_L;
int n;
int nwritten;
ESL_SQASCII_DATA *ascii = &sqfp->data.ascii;
if (ascii->do_stdin) ESL_EXCEPTION(eslEINVAL, "can't Echo() a sequence from standard input");
if (ascii->do_gzip) ESL_EXCEPTION(eslEINVAL, "can't Echo() a sequence from a gzipped file");
if (esl_sqio_IsAlignment(sqfp->format)) ESL_EXCEPTION(eslEINVAL, "can't Echo() a sequence from an alignment file");
if (sq->roff == -1 || sq->eoff == -1) ESL_EXCEPTION(eslEINVAL, "can't Echo() a sequence without disk offset info");
save_linenumber = ascii->linenumber;
save_currpl = ascii->currpl;
save_curbpl = ascii->curbpl;
save_prvrpl = ascii->prvrpl;
save_prvbpl = ascii->prvbpl;
save_L = ascii->L;
status = esl_sqfile_Position(sqfp, sq->roff);
if (status == eslEOF) ESL_EXCEPTION(eslECORRUPT, "repositioning failed; bad offset?");
else if (status != eslOK) return status;
while (ascii->boff + ascii->nc <= sq->eoff)
{
if (fwrite(ascii->buf, sizeof(char), ascii->nc, ofp) != ascii->nc) ESL_EXCEPTION(eslESYS, "fwrite() failed");
if (loadbuf(sqfp) != eslOK) ESL_EXCEPTION(eslECORRUPT, "repositioning failed; bad offset?");
}
n = sq->eoff - ascii->boff + 1;
nwritten = fwrite(ascii->buf, sizeof(char), n, ofp);
if (nwritten != n) ESL_EXCEPTION(eslESYS, "fwrite() failed");
status = esl_sqfile_Position(sqfp, sq->roff);
if (status == eslEOF) ESL_EXCEPTION(eslECORRUPT, "repositioning failed; bad offset?");
else if (status != eslOK) return status;
ascii->linenumber = save_linenumber;
ascii->currpl = save_currpl;
ascii->curbpl = save_curbpl;
ascii->prvrpl = save_prvrpl;
ascii->prvbpl = save_prvbpl;
ascii->L = save_L;
return eslOK;
}
/*------------------ end, sequential sequence input -------------*/
/*****************************************************************
*# 5. Sequence/subsequence fetching, random access [with <ssi>]
*****************************************************************/
/* Function: sqascii_OpenSSI()
* Synopsis: Opens an SSI index associated with a sequence file.
*
* Purpose: Opens an SSI index file associated with the already open
* sequence file <sqfp>. If successful, the necessary
* information about the open SSI file is stored internally
* in <sqfp>.
*
* The SSI index file name is determined in one of two
* ways, depending on whether a non-<NULL> <ssifile_hint>
* is provided.
*
* If <ssifile_hint> is <NULL>, the default for
* constructing the SSI filename from the sequence
* filename, by using exactly the same path (if any) for
* the sequence filename, and appending the suffix <.ssi>.
* For example, the SSI index for <foo> is <foo.ssi>, for
* <./foo.fa> is <./foo.fa.ssi>, and for
* </my/path/to/foo.1.fa> is </my/path/to/foo.1.fa.ssi>.
*
* If <ssifile_hint> is <non-NULL>, this exact fully
* qualified path is used as the SSI file name.
*
* Returns: <eslOK> on success, and <sqfp->ssi> is now internally
* valid.
*
* <eslENOTFOUND> if no SSI index file is found;
* <eslEFORMAT> if it's found, but appears to be in incorrect format;
* <eslERANGE> if the SSI file uses 64-bit offsets but we're on
* a system that doesn't support 64-bit file offsets.
*
* Throws: <eslEINVAL> if the open sequence file <sqfp> doesn't
* correspond to a normal sequence flatfile -- we can't
* random access in .gz compressed files, standard input,
* or multiple alignment files that we're reading
* sequentially.
*
* Throws <eslEMEM> on allocation error.
*/
static int
sqascii_OpenSSI(ESL_SQFILE *sqfp, const char *ssifile_hint)
{
int status;
ESL_SQASCII_DATA *ascii = &sqfp->data.ascii;
if (ascii->do_gzip) ESL_EXCEPTION(eslEINVAL, "can't open an SSI index for a .gz compressed seq file");
if (ascii->do_stdin) ESL_EXCEPTION(eslEINVAL, "can't open an SSI index for standard input");
if (ascii->afp != NULL) ESL_EXCEPTION(eslEINVAL, "can't open an SSI index for sequential input from an MSA");
if (ssifile_hint == NULL) {
if ((status = esl_strdup(sqfp->filename, -1, &(ascii->ssifile))) != eslOK) return status;
if ((status = esl_strcat(&(ascii->ssifile), -1, ".ssi", 4)) != eslOK) return status;
} else {
if ((status = esl_strdup(ssifile_hint, -1, &(ascii->ssifile))) != eslOK) return status;
}
return esl_ssi_Open(ascii->ssifile, &(ascii->ssi));
}
/* Function: sqascii_PositionByKey()
* Synopsis: Use SSI to reposition seq file to a particular sequence.
*
* Purpose: Reposition <sqfp> so that the next sequence we read will
* be the one named (or accessioned) <key>.
*
* <sqfp->linenumber> is reset to be relative to the start
* of the record named <key>, rather than the start of the
* file.
*
* Returns: <eslOK> on success, and the file <sqfp> is repositioned
* so that the next <esl_sqio_Read()> call will read the
* sequence named <key>.
*
* Returns <eslENOTFOUND> if <key> isn't found in the
* index; in this case, the position of <sqfp> in the file
* is unchanged.
*
* Returns <eslEFORMAT> if something goes wrong trying to
* read the index, almost certainly indicating a format
* problem in the SSI file.
*
* Returns <eslEOF> if, after repositioning, we fail to
* load the next line or buffer from the sequence file;
* this probably also indicates a format problem in the SSI
* file.
*
* Throws: <eslEMEM> on allocation error;
* <eslEINVAL> if there's no open SSI index in <sqfp>;
* <eslESYS> if the <fseek()> fails.
*
* In all these cases, the state of <sqfp> becomes
* undefined, and the caller should not use it again.
*/
static int
sqascii_PositionByKey(ESL_SQFILE *sqfp, const char *key)
{
uint16_t fh;
off_t offset;
int status;
ESL_SQASCII_DATA *ascii = &sqfp->data.ascii;
if (ascii->ssi == NULL) ESL_EXCEPTION(eslEINVAL,"Need an open SSI index to call esl_sqfile_PositionByKey()");
if ((status = esl_ssi_FindName(ascii->ssi, key, &fh, &offset, NULL, NULL)) != eslOK) return status;
return esl_sqfile_Position(sqfp, offset);
}
/* Function: sqascii_PositionByNumber()
* Synopsis: Use SSI to reposition by sequence number
*
* Purpose: Reposition <sqfp> so that the next sequence we
* read will be the <which>'th sequence, where <which>
* is <0..sqfp->ssi->nprimary-1>.
*
* <sqfp->linenumber> is reset to be relative to the start
* of the record named <key>, rather than the start of the
* file.
*
* Returns: <eslOK> on success, and the file <sqfp> is repositioned.
*
* Returns <eslENOTFOUND> if there is no sequence number
* <which> in the index; in this case, the position of
* <sqfp> in the file is unchanged.
*
* Returns <eslEFORMAT> if something goes wrong trying to
* read the index, almost certainly indicating a format
* problem in the SSI file.
*
* Returns <eslEOF> if, after repositioning, we fail to
* load the next line or buffer from the sequence file;
* this probably also indicates a format problem in the SSI
* file.
*
* Throws: <eslEMEM> on allocation error;
* <eslEINVAL> if there's no open SSI index in <sqfp>;
* <eslESYS> if the <fseek()> fails.
*
* In all these cases, the state of <sqfp> becomes
* undefined, and the caller should not use it again.
*/
static int
sqascii_PositionByNumber(ESL_SQFILE *sqfp, int which)
{
uint16_t fh;
off_t offset;
int status;
ESL_SQASCII_DATA *ascii = &sqfp->data.ascii;
if (ascii->ssi == NULL) ESL_EXCEPTION(eslEINVAL,"Need open SSI index to call esl_sqfile_PositionByNumber()");
if ((status = esl_ssi_FindNumber(ascii->ssi, which, &fh, &offset, NULL, NULL, NULL)) != eslOK) return status;
return esl_sqfile_Position(sqfp, offset);
}
/* Function: sqascii_Fetch()
* Synopsis: Fetch a complete sequence, using SSI indexing.
*
* Purpose: Fetch a sequence named (or accessioned) <key> from
* the repositionable, open sequence file <sqfp>.
* The open <sqfp> must have an open SSI index.
* The sequence is returned in <sq>.
*
* Returns: <eslOK> on soccess.
* <eslEINVAL> if no SSI index is present, or if <sqfp> can't
* be repositioned.
* <eslENOTFOUND> if <source> isn't found in the file.
* <eslEFORMAT> if either the index file or the sequence file
* can't be parsed, because of unexpected format issues.
*
* Throws: <eslEMEM> on allocation error.
*/
static int
sqascii_Fetch(ESL_SQFILE *sqfp, const char *key, ESL_SQ *sq)
{
int status;
ESL_SQASCII_DATA *ascii = &sqfp->data.ascii;
if (ascii->ssi == NULL) ESL_FAIL(eslEINVAL, ascii->errbuf, "No SSI index for %s; can't fetch subsequences", sqfp->filename);
if ((status = sqascii_PositionByKey(sqfp, key)) != eslOK) return status;
if ((status = sqascii_Read(sqfp, sq)) != eslOK) return status;
return eslOK;
}
/* Function: sqascii_FetchInfo()
* Synopsis: Fetch a sequence's info, using SSI indexing.
*
* Purpose: Fetch a sequence named (or accessioned) <key> from
* the repositionable, open sequence file <sqfp>, reading
* all info except the sequence (and secondary structure).
* The open <sqfp> must have an open SSI index.
* The sequence info is returned in <sq>.
*
* Returns: <eslOK> on soccess.
* <eslEINVAL> if no SSI index is present, or if <sqfp> can't
* be repositioned.
* <eslENOTFOUND> if <source> isn't found in the file.
* <eslEFORMAT> if either the index file or the sequence file
* can't be parsed, because of unexpected format issues.
*
* Throws: <eslEMEM> on allocation error.
*/
static int
sqascii_FetchInfo(ESL_SQFILE *sqfp, const char *key, ESL_SQ *sq)
{
int status;
ESL_SQASCII_DATA *ascii = &sqfp->data.ascii;
if (ascii->ssi == NULL) ESL_FAIL(eslEINVAL, ascii->errbuf, "No SSI index for %s; can't fetch subsequences", sqfp->filename);
if ((status = sqascii_PositionByKey(sqfp, key)) != eslOK) return status;
if ((status = sqascii_ReadInfo(sqfp, sq)) != eslOK) return status;
return eslOK;
}
/* Function: sqascii_FetchSubseq()
* Synopsis: Fetch a subsequence, using SSI indexing.
*
* Purpose: Fetch subsequence <start..end> from a sequence named (or
* accessioned) <source>, in the repositionable, open sequence file <sqfp>.
* The open <sqfp> must have an SSI index. Put the
* subsequence in <sq>.
*
* As a special case, if <end> is 0, the subsequence is
* fetched all the way to the end, so you don't need to
* look up the sequence length <L> to fetch a suffix.
*
* The caller may want to rename/reaccession/reannotate the
* subsequence. Upon successful return, <sq->name> is set
* to <source/start-end>, and <sq->source> is set to
* <source> The accession and description <sq->acc> and
* <sq->desc> are set to the accession and description of
* the source sequence.
*
* Returns: <eslOK> on success.
* <eslEINVAL> if no SSI index is present, or if <sqfp> can't
* be repositioned.
* <eslENOTFOUND> if <source> isn't found in the file.
* <eslEFORMAT> if either the index file or the sequence file
* can't be parsed, because of unexpected format issues.
* <eslERANGE> if the <start..end> coords don't lie entirely
* within the <source> sequence.
*
* Throws: <eslEMEM> on allocation errors.
*/
static int
sqascii_FetchSubseq(ESL_SQFILE *sqfp, const char *source, int64_t start, int64_t end, ESL_SQ *sq)
{
uint16_t fh;/* SSI file handle */
off_t r_off, d_off;
int64_t L;
int64_t actual_start;
int64_t nskip;
int64_t nres;
int64_t n;
int status;
ESL_SQASCII_DATA *ascii = &sqfp->data.ascii;
if (ascii->ssi == NULL) ESL_FAIL(eslEINVAL, ascii->errbuf, "No SSI index for %s; can't fetch subsequences", sqfp->filename);
/* Find sequence info in the index */
status = esl_ssi_FindSubseq(ascii->ssi, source, start, &fh, &r_off, &d_off, &L, &actual_start);
if (status == eslENOTFOUND) ESL_FAIL(status, ascii->errbuf, "Didn't find sequence %s in the index", source);
else if (status == eslEFORMAT) ESL_FAIL(status, ascii->errbuf, "Failure reading SSI index; corrupt or bad format");
else if (status == eslERANGE) ESL_FAIL(status, ascii->errbuf, "Requested start %" PRIi64 " isn't in the sequence %s", start, source);
else if (status != eslOK) ESL_FAIL(status, ascii->errbuf, "Unexpected failure in finding subseq offset");
/* The special case of end=0, asking for suffix fetch */
if (end == 0) end = L;
/* Validate coords if we can */
if (start > end) ESL_FAIL(eslERANGE, ascii->errbuf, "Subsequence start %" PRIi64 " is greater than end %" PRIi64 "\n", start, end);
if (L > 0 && end > L) ESL_FAIL(eslERANGE, ascii->errbuf, "Subsequence end %" PRIi64 " is greater than length %" PRIi64 "\n", end, L);
/* Position the file at the record header; read the header info */
status = esl_sqfile_Position(sqfp, r_off);
if (status == eslEOF) ESL_FAIL(status, ascii->errbuf, "Position appears to be off the end of the file");
else if (status == eslEINVAL) ESL_FAIL(status, ascii->errbuf, "Sequence file is not repositionable");
else if (status != eslOK) ESL_FAIL(status, ascii->errbuf, "Failure in positioning sequence file");
if ((status = ascii->parse_header(sqfp, sq)) != eslOK) return status;
/* Position the file close to the subseq: either at the start of the line
* where the subseq starts, or exactly at the residue.
*/
if (d_off != 0)
{
status = esl_sqfile_Position(sqfp, d_off);
if (status == eslEOF) ESL_FAIL(eslERANGE, ascii->errbuf, "Position appears to be off the end of the file");
else if (status == eslEINVAL) ESL_FAIL(status, ascii->errbuf, "Sequence file is not repositionable");
else if (status != eslOK) ESL_FAIL(status, ascii->errbuf, "Failure in positioning sequence file");
}
/* even if we didn't have a data offset, we're positioned at the
* start of the sequence anyway, because we parsed the full header
*/
nskip = start - actual_start; /* how many residues do we still need to skip to reach start */
nres = end - start + 1; /* how many residues do we need to read as subseq */
if ((status = esl_sq_GrowTo(sq, nres)) != eslOK) return status;
status = read_nres(sqfp, sq, nskip, nres, &n);
if (status != eslOK || n < nres) ESL_EXCEPTION(eslEINCONCEIVABLE, "Failed to fetch subsequence residues -- corrupt coords?");
/* Set the coords */
sq->start = start;
sq->end = end;
sq->C = 0;
sq->W = sq->n;
sq->L = (L > 0 ? L : -1);
esl_sq_FormatName(sq, "%s/%" PRId64 "-%" PRId64, source, start, end);
esl_sq_SetSource (sq, source);
return eslOK;
}
/*------------- end, random sequence access with SSI -------------------*/
/*****************************************************************
* 6. Internal routines shared by parsers
*****************************************************************/
/* loadmem()
*
* Load the next block of data from stream into mem buffer,
* either concatenating to previous buffer (if we're recording) or
* overwriting (if not).
*
* This block is loaded at sqfp->mem + sqfp->mpos.
*
* Upon return:
* sqfp->mem now contains up to eslREADBUFSIZE more chars
* sqfp->mpos is position of first byte in newly read block
* sqfp->allocm may have increased by eslREADBUFSIZE, if we concatenated
* sqfp->mn is # of chars in <mem>; <mn-1> is pos of last byte in new block
*
* Returns <eslEOF> (and mpos == mn) if no new data can be read;
* Returns <eslOK> (and mpos < mn) if new data is read.
* Throws <eslEMEM> on allocation error.
*/
static int
loadmem(ESL_SQFILE *sqfp)
{
void *tmp;
int n = 0;
int status;
ESL_SQASCII_DATA *ascii = &sqfp->data.ascii;
if (ascii->do_buffer)
{
ascii->mpos = 0;
ascii->mn = 0;
}
else if (ascii->is_recording == TRUE)
{
if (ascii->mem == NULL) ascii->moff = ftello(ascii->fp); /* first time init of the offset */
ESL_RALLOC(ascii->mem, tmp, sizeof(char) * (ascii->allocm + eslREADBUFSIZE));
ascii->allocm += eslREADBUFSIZE;
n = fread(ascii->mem + ascii->mpos, sizeof(char), eslREADBUFSIZE, ascii->fp);
ascii->mn += n;
}
else
{
if (ascii->mem == NULL) {
ESL_ALLOC(ascii->mem, sizeof(char) * eslREADBUFSIZE);
ascii->allocm = eslREADBUFSIZE;
}
ascii->is_recording = -1;/* no more recording is possible now */
ascii->mpos = 0;
ascii->moff = ftello(ascii->fp);
n = fread(ascii->mem, sizeof(char), eslREADBUFSIZE, ascii->fp); /* see note [1] below */
ascii->mn = n;
}
return (n == 0 ? eslEOF : eslOK);
ERROR:
return status;
}
/* [1] Be alert for a possible problem above in that fread().
* Farrar had inserted an alternative case as follows:
* "If we are reading from stdin, buffered read cannot be used
* because if will block until EOF or the buffer is full, ie
* eslREADBUFSIZE characters have been read. Usually this would
* not be a problem, unless stdin is from a pipe. In that case
* if the sequence is less than eslREADBUFSIZE we would block.
*
* NOTE: any changes to the IO stream ascii->fp, such as fseek,
* might not have any affect on the file descriptor for the stream.
*
* if (ascii->do_stdin) {
* n = read(fileno(ascii->fp), ascii->mem, eslREADBUFSIZE);
* } else {
* ...
*
* but that's a bug, because you can't mix read and fread;
* the i17-stdin.pl test fails, in particular.
*/
/* loadbuf()
* Set sqfp->buf to contain next line of data, or point to next block.
* This might just mean working with previously buffered memory in <sqfp->mem>
* or might require reading new data from <sqfp->fp>.
*
* Reset sqfp->boff to be the position of the start of the block/line.
* Reset sqfp->bpos to 0.
* Reset sqfp->nc to the number of chars (bytes) in the new block/line.
* Returns eslOK on success; eslEOF if there's no more data in the file.
* (sqfp->nc == 0 is the same as eslEOF: no data in the new buffer.)
* Can throw an <eslEMEM> error.
*/
static int
loadbuf(ESL_SQFILE *sqfp)
{
void *tmp;
char *nlp;
int n;
int status = eslOK;
ESL_SQASCII_DATA *ascii = &sqfp->data.ascii;
if (! ascii->is_linebased)
{
if (ascii->mpos >= ascii->mn) {
if ((status = loadmem(sqfp)) == eslEMEM) return status;
}
ascii->buf = ascii->mem + ascii->mpos;
ascii->boff = ascii->moff + ascii->mpos;
ascii->balloc = 0;
ascii->bpos = 0;
ascii->nc = ascii->mn - ascii->mpos;
ascii->mpos += ascii->nc;
}
else
{ /* Copy next line from <mem> into <buf>. Might require new load(s) into <mem>. */
if (ascii->mpos >= ascii->mn) {
if ((status = loadmem(sqfp)) == eslEMEM) return status;
}
ascii->boff = ascii->moff + ascii->mpos;
ascii->nc = 0;
nlp = memchr(ascii->mem + ascii->mpos, '\n', ascii->mn - ascii->mpos);
while (nlp == NULL)
{
n = ascii->mn - ascii->mpos;
while (ascii->nc + n + 1 > ascii->balloc) { /* +1: it'll hold the terminal \0 */
ESL_RALLOC(ascii->buf, tmp, sizeof(char) * (ascii->balloc + eslREADBUFSIZE));
ascii->balloc += eslREADBUFSIZE;
}
memcpy(ascii->buf + ascii->nc, ascii->mem + ascii->mpos, n);
ascii->mpos += n;
ascii->nc += n;
status = loadmem(sqfp);
if (status == eslEOF) { break; }
else if (status != eslOK) return status;
nlp = memchr(ascii->mem + ascii->mpos, '\n', ascii->mn - ascii->mpos);
}
if (status != eslEOF) {
n = nlp - (ascii->mem + ascii->mpos) + 1; /* inclusive of \n */
if (ascii->nc + n + 1 > ascii->balloc) {
ESL_RALLOC(ascii->buf, tmp, sizeof(char) * (ascii->balloc + eslREADBUFSIZE));
ascii->balloc += eslREADBUFSIZE;
}
memcpy(ascii->buf + ascii->nc, ascii->mem + ascii->mpos, n);
ascii->mpos += n;
ascii->nc += n;
}
ascii->bpos = 0;
ascii->buf[ascii->nc] = '\0';
}
return (ascii->nc == 0 ? eslEOF : eslOK);
ERROR:
return status;
}
/* nextchar()
*
* Load next char from sqfp->buf into <*ret_c> and sets sqfp->bpos to
* its position; usually this is c = sqfp->buf[++sqfp->bpos], but
* we will refill the buffer w/ fresh fread() when needed, in which
* case c = sqfp->buf[0] and sqfp->bpos = 0.
*
* Returns <eslOK> on success.
* Return <eslEOF> if we ran out of data in <sqfp>.
* May throw an <eslEMEM> error.
*/
static int
nextchar(ESL_SQFILE *sqfp, char *ret_c)
{
int status;
ESL_SQASCII_DATA *ascii = &sqfp->data.ascii;
ascii->bpos++;
if (ascii->nc == ascii->bpos && (status = loadbuf(sqfp)) != eslOK) return status;
*ret_c = ascii->buf[ascii->bpos];
return eslOK;
}
/* seebuf()
*
* Examine and validate the current buffer <sqfp->buf> from its
* current position <sqfp->bpos> until either the buffer ends (we run
* out of characters) or the sequence data ends (we see whatever
* character indicates EOD in this format) or we've seen <maxn>
* residues. If <maxn> is passed as -1, parse the entire buffer,
* without a residue limit.
*
* There are three possible outcomes:
* <eslOK>: The buffer is all residues that belong to the current
* seq we're parsing (or chars we can ignore), at least
* up to the <maxn> residue limit (if present).
* <eslEOD>: Part of the buffer may be residues, but the current sequence
* ends in this buffer (before <maxn> was reached).
* <eslEFORMAT>: Somewhere before we reached the end of the buffer or
* the sequence record, we saw an illegal character.
*
* On <eslOK>:
* *opt_nres is the number of residues in the buffer (up to <maxn>)
* *opt_endpos is sqfp->nc (off the end of the buffer by one)
* The caller will want to deal with the buffer, then load the next one.
*
* On <eslEOD>: same as OK, except:
* *opt_endpos is where sqfp->bpos *would* be at when we saw the EOD
* signal (the next '>', in FASTA files) had we been parsing residues
* Therefore on EOD, the caller will want to deal with the <*opt_nres>
* residues in this buffer, then reposition the buffer by
* <sqfp->bpos = *opt_epos> (without reloading the buffer), so
* the next read will pick up there.
*
* On <eslEFORMAT>:
* ascii->errbuf contains informative message about the format error.
*
* seebuf() also handles linenumber and SSI bookkeeping in
* <sqfp>. Every newline character seen increments <linenumber> (thus,
* on EFORMAT return, linenumber is set to the line on which the bad
* char occurred). <curbpl>,<currpl>,<prvbpl>,<prvrpl> keep track of # of bytes,
* residues on the current,prev line; they keep state across calls to seebuf().
* <bpl>,<rpl> are tracking whether there's a constant number of
* bytes/residues per line; these are either -1 for "not set yet", 0
* for "no, not constant", or a number > 0. Because of this bookkeeping, it's important
* to make sure that <seebuf()> never counts the same byte twice (hence
* the need for the <maxn> limit, which ReadWindow() uses.)
*/
static int
seebuf(ESL_SQFILE *sqfp, int64_t maxn, int64_t *opt_nres, int64_t *opt_endpos)
{
int bpos;
int64_t nres = 0;
int64_t nres2 = 0;/* an optimization for determining lastrpl from nres, without incrementing lastrpl on every char */
int sym;
ESL_DSQ x;
int lasteol;
int status = eslOK;
ESL_SQASCII_DATA *ascii = &sqfp->data.ascii;
lasteol = ascii->bpos - 1;
if (maxn == -1) maxn = ascii->nc; /* makes for a more efficient test. nc is a guaranteed upper bound on nres */
for (bpos = ascii->bpos; nres < maxn && bpos < ascii->nc; bpos++)
{
sym = ascii->buf[bpos];
//printf ("nres: %d, bpos: %d (%d)\n", nres, bpos, sym);
if (!isascii(sym)) ESL_FAIL(eslEFORMAT, ascii->errbuf, "Line %" PRId64 ": non-ASCII character %c in sequence", ascii->linenumber, sym);
x = sqfp->inmap[sym];
if (x <= 127) nres++;
else if (x == eslDSQ_EOL)
{
if (ascii->curbpl != -1) ascii->curbpl += bpos - lasteol;
if (ascii->currpl != -1) ascii->currpl += nres - nres2;
nres2 += nres - nres2;
if (ascii->rpl != 0 && ascii->prvrpl != -1) { /* need to ignore counts on last line in record, hence cur/prv */
if (ascii->rpl == -1) ascii->rpl = ascii->prvrpl; /* init */
else if (ascii->prvrpl != ascii->rpl) ascii->rpl = 0; /* inval*/
}
if (ascii->bpl != 0 && ascii->prvbpl != -1) {
if (ascii->bpl == -1) ascii->bpl = ascii->prvbpl; /* init */
else if (ascii->prvbpl != ascii->bpl) ascii->bpl = 0; /* inval */
}
ascii->prvbpl = ascii->curbpl;
ascii->prvrpl = ascii->currpl;
ascii->curbpl = 0;
ascii->currpl = 0;
lasteol = bpos;
if (ascii->linenumber != -1) ascii->linenumber++;
}
else if (x == eslDSQ_ILLEGAL) ESL_FAIL(eslEFORMAT, ascii->errbuf, "Line %" PRId64 ": illegal character %c", ascii->linenumber, sym);
else if (x == eslDSQ_EOD) { status = eslEOD; break; }
else if (x != eslDSQ_IGNORED) ESL_FAIL(eslEFORMAT, ascii->errbuf, "inmap corruption?");
}
if (ascii->curbpl != -1) ascii->curbpl += bpos - lasteol - 1;
if (ascii->currpl != -1) ascii->currpl += nres - nres2;
if (opt_nres != NULL) *opt_nres = nres;
if (opt_endpos != NULL) *opt_endpos = bpos;
return status;
}
/* addbuf()
* Add <nres> residues from the current buffer <sqfp->buf> to <sq>.
* This is designed to work when we're constructing a complete
* sequence (add the whole buffer); when we're adding a suffix
* of the buffer (<sqfp->bpos> is skipped ahead already);
* or when we're adding a prefix of the buffer (terminating a subseq
* or window load).
*
* The caller must know that there are at least <nres> residues in
* this buffer, and that all the characters are valid in the
* format and alphabet, via a previous call to <seebuf()>.
*
* The caller also must have already allocated <sq> to hold at least
* <nres> more residues.
*
* On input:
* sqfp->buf[] contains an fread() buffer
* sqfp->bpos is set to where we're going to start parsing residues
* sqfp->nc is the length of <buf>
*
* On return:
* sqfp->buf[] still contains the same buffer (no new freads here)
* sqfp->bpos is set after the last residue we parsed
* sq->seq/dsq now holds <nres> new residues
* sq->n is incremented by <nres>
*/
static void
addbuf(ESL_SQFILE *sqfp, ESL_SQ *sq, int64_t nres)
{
ESL_DSQ x;
ESL_SQASCII_DATA *ascii = &sqfp->data.ascii;
if (sq->dsq != NULL)
{
while (nres) {
x = sq->abc->inmap[(int) ascii->buf[ascii->bpos++]];
if (x <= 127) { nres--; sq->dsq[++sq->n] = x; }
} /* we skipped IGNORED, EOL. EOD, ILLEGAL don't occur; seebuf() already checked */
}
else
{
while (nres) {
x = sqfp->inmap[(int) ascii->buf[ascii->bpos++]];
if (x <= 127) { nres--; sq->seq[sq->n++] = x; }
}
}
}
/* skipbuf()
* Like addbuf(), but we skip <nskip> residues instead of
* reading them.
*/
static void
skipbuf(ESL_SQFILE *sqfp, int64_t nskip)
{
ESL_DSQ x;
ESL_SQASCII_DATA *ascii = &sqfp->data.ascii;
while (nskip) {
x = sqfp->inmap[(int) ascii->buf[ascii->bpos++]];
if (x <= 127) nskip--;/* skip IGNORED, EOL. */
}
}
/* skip_whitespace()
* Like skipbuf(), but instead of skipping a fixed number of
* residues, skip forward until one of three conditions is met:
*
* (1) end of the sequence record (a character indicating
* the beginning of a new sequence); set ascii->bpos
* to the beginning of the new record, and return eslEOD;
* (2) a non-whitespace character in the current sequence is
* reached that does not indicate the end of a sequence
* record; set ascii->bpos to that character's position,
* and return eslOK;
* (3) end of file; return eslEOF.
*
*/
static int
skip_whitespace(ESL_SQFILE *sqfp)
{
int status;
int c;
ESL_DSQ x;
ESL_SQASCII_DATA *ascii = &sqfp->data.ascii;
if (ascii->nc == 0)
return eslEOF;
c = (int) ascii->buf[ascii->bpos];
x = sqfp->inmap[c];
while ( isspace(c) ) {
ascii->bpos++;
if (ascii->bpos == ascii->nc)
if ((status = loadbuf(sqfp)) == eslEOF)
return eslEOF;
c = (int) ascii->buf[ascii->bpos];
x = sqfp->inmap[c];
}
if (x == eslDSQ_EOD)
return eslEOD;
return eslOK;
}
/* read_nres()
* Read the next <nres> residues from <sqfp> after skipping <nskip> residues, then stop.
*
* Returns <eslOK> and <0 < *ret_actual_nres <= nres> if it succeeded, and
* there's more residues in the current seq record.
* Returns <eslEOD> and <*ret_actual_nres == 0> if no more residues are
* seen in the sequence record.
*
* Even on <eslEOD>, the <dsq/seq> is appropriately terminated here,
* and <sq->n> is left the way it was (no new residues added - but there
* may have been saved context C from a previous window).
*
* Returns <eslEFORMAT> on any parsing problem, and <ascii->errbuf> is set.
*
* On <eslOK>, sqfp->bpos is positioned on the next character past the last residue we store;
* on <eslEOD>, sqfp->bpos is positioned for reading the next sequence.
*
* FetchSubseq() uses this with <nskip>, <nres>, and expects an
* <eslOK> with <*opt_actual_nres = nres>. On <EOD>, or if fewer than
* <nres> residues are obtained, the coords must've been screwed up,
* because we didn't read the whole subseq we asked for.
*
* ReadWindow() on forward strand uses this with <nskip=0>, <nres=W>.
* The last window might normally return <eslEOD> with
* <*ret_actual_nres == 0>, and now <sqfp->bpos> is positioned at the
* start of the next sequence on <EOD>, and at the next residue on
* <OK>.
*
* ReadWindow() in reverse complement acts like a subseq fetch.
*
*/
static int
read_nres(ESL_SQFILE *sqfp, ESL_SQ *sq, int64_t nskip, int64_t nres, int64_t *opt_actual_nres)
{
int64_t n;
int64_t epos;
int64_t actual_nres = 0;
int status = eslOK;
ESL_SQASCII_DATA *ascii = &sqfp->data.ascii;
status = seebuf(sqfp, nskip+nres, &n, &epos);
while (status == eslOK && nskip - n > 0) {
nskip -= n;
if ((status = loadbuf(sqfp)) == eslEOF) break;
status = seebuf(sqfp, nskip+nres, &n, &epos);
}
if (status == eslEOF) {
if (! ascii->eof_is_ok) ESL_FAIL(eslEFORMAT, ascii->errbuf, "Premature EOF before end of seq record");
if (nskip > 0) ESL_EXCEPTION(eslECORRUPT, "premature EOD while trying to skip residues");
n = 0;
} else if (status == eslEOD) {
if (n < nskip) ESL_EXCEPTION(eslECORRUPT, "premature EOD while trying to skip residues");
} else if (status != eslOK)
return status;
skipbuf(sqfp, nskip);
n -= nskip;
while (status == eslOK && nres - n > 0)
{
addbuf(sqfp, sq, n);
actual_nres += n;
nres -= n;
if ((status = loadbuf(sqfp)) == eslEOF) break;
status = seebuf(sqfp, nres, &n, &epos);
}
if (status == eslEOF) {
if (! ascii->eof_is_ok) ESL_FAIL(eslEFORMAT, ascii->errbuf, "Premature EOF before end of seq record");
n = 0;
} else if (status == eslEFORMAT) {
return status;
}
n = ESL_MIN(nres, n);
addbuf(sqfp, sq, n); /* bpos now at last residue + 1 if OK/EOD, 0 if EOF */
actual_nres += n;
if (sq->dsq != NULL) sq->dsq[sq->n+1] = eslDSQ_SENTINEL;
else sq->seq[sq->n] = '\0';
if (status == eslEOD) {
ascii->bpos = epos;
}
if (opt_actual_nres != NULL) *opt_actual_nres = actual_nres;
return (actual_nres == 0 ? eslEOD : eslOK);
}
/*--------------- end, buffer-based parsers --------------------*/
/*****************************************************************
*# 7. Internal routines for EMBL format (including UniProt, TrEMBL)
*****************************************************************/
/* EMBL and UniProt protein sequence database format.
* See: http://us.expasy.org/sprot/userman.html
* and: http://www.ebi.ac.uk/embl/Documentation/User_manual/usrman.html#3
* We use the same parser for both formats, so we have to be
* careful to only parse the conserved intersection of these two
* very similar formats.
*/
static void
config_embl(ESL_SQFILE *sqfp)
{
ESL_SQASCII_DATA *ascii = &sqfp->data.ascii;
ascii->is_linebased = TRUE;
ascii->eof_is_ok = FALSE;/* records end with // */
ascii->parse_header = &header_embl;
ascii->skip_header = &skip_embl;
ascii->parse_end = &end_embl;
}
static void
inmap_embl(ESL_SQFILE *sqfp, const ESL_DSQ *abc_inmap)
{
int x;
if (abc_inmap != NULL) {
for (x = 0; x < 128; x++) sqfp->inmap[x] = abc_inmap[x];
} else {
for (x = 0; x < 128; x++) sqfp->inmap[x] = eslDSQ_ILLEGAL;
for (x = 'A'; x <= 'Z'; x++) sqfp->inmap[x] = x;
for (x = 'a'; x <= 'z'; x++) sqfp->inmap[x] = x;
}
for (x = '0'; x <= '9'; x++)
sqfp->inmap[x] = eslDSQ_IGNORED; /* EMBL DNA sequence format puts coordinates after each line */
sqfp->inmap['*'] = '*'; /* accept * as a nonresidue/stop codon character */
sqfp->inmap[' '] = eslDSQ_IGNORED;
sqfp->inmap['\t'] = eslDSQ_IGNORED;
sqfp->inmap['\n'] = eslDSQ_IGNORED;
sqfp->inmap['\r'] = eslDSQ_IGNORED;/* DOS eol compatibility */
sqfp->inmap['/'] = eslDSQ_EOD;
}
/* header_embl()
*
* See: http://us.expasy.org/sprot/userman.html
* And: http://www.ebi.ac.uk/embl/Documentation/User_manual/usrman.html#3
* Our parser must work on the highest common denominator of EMBL DNA
* and UniProt protein sequence files.
*
* sqfp->buf is the first (ID) line of the entry, or a blank line before
* it (in which case we'll scan forwards skipping blank lines to find
* the ID line).
*
* On success, returns <eslOK> and:
* sq->name contains sequence name (and may have been reallocated, changing sq->nalloc)
* sq->acc contains seq accession (and may have been reallocated, changing sq->aalloc)
* sq->desc contains description line (and may have been reallocated, changing sq->dalloc)
* sq->roff has been set to the record offset
* sq->doff has been set to the data offset (start of sequence line)
* sqfp->buf is the first seq line.
*
* If no more seqs are found in the file, returns <eslEOF>.
* On parse failure, returns <eslEFORMAT>, leaves as mesg in ascii->errbuf.
*
* May also throw <eslEMEM> on allocation errors.
*/
static int
header_embl(ESL_SQFILE *sqfp, ESL_SQ *sq)
{
char *s;
char *tok;
int status;
ESL_SQASCII_DATA *ascii = &sqfp->data.ascii;
/* Find first line:
* "Each entry must begin with an identification line (ID)..."
* "The two-character line-type code that begins each line is always
* followed by three blanks..."
*/
if (ascii->nc == 0) return eslEOF;
while (esl_str_IsBlank(ascii->buf)) {
if ((status = loadbuf(sqfp)) == eslEOF) return eslEOF; /* normal */
else if (status != eslOK) return status; /* abnormal */
}
/* ID line is defined as:
* ID ENTRY_NAME DATA_CLASS; MOLECULE_TYPE; SEQUENCE_LENGTH.
* We're only after the ENTRY_NAME.
* Examples:
* ID SNRPA_DROME STANDARD; PRT; 216 AA.
* ID SNRPA_DROME Reviewed; 216 AA.
* ID X06347; SV 1; linear; mRNA; STD; HUM; 1209 BP.
*/
if (strncmp(ascii->buf, "ID ", 5) != 0) ESL_FAIL(eslEFORMAT, ascii->errbuf, "Line %" PRId64 ": failed to find ID line", ascii->linenumber);
s = ascii->buf+5;
if ((status = esl_strtok(&s, " ;", &tok)) != eslOK)
ESL_FAIL(eslEFORMAT, ascii->errbuf, "Line %" PRId64 ": failed to parse name on ID line", ascii->linenumber);
if ((status = esl_sq_SetName(sq, tok)) != eslOK) return status;
sq->roff = ascii->boff;/* record the offset of the ID line */
/* Look for SQ line; parsing optional info as we go.
*/
do {
if ((status = loadbuf(sqfp)) != eslOK) ESL_FAIL(eslEFORMAT, ascii->errbuf, "Line %" PRId64 ": failed to find SQ line", ascii->linenumber);
/* "The format of the AC line is:
* AC AC_number_1;[ AC_number_2;]...[ AC_number_N;]
* Researchers who wish to cite entries in their publications
* should always cite the first accession number. This is
* commonly referred to as the 'primary accession
* number'."
*
* Examples:
* AC P43332; Q9W4D7;
* AC X06347;
*
* Note that Easel only stores primary accessions.
* Because there can be more than one accession line, we check to
* see if the accession is already set before storing a line.
*/
if (strncmp(ascii->buf, "AC ", 5) == 0 && sq->acc[0] == '\0')
{
s = ascii->buf+5;
if ((status = esl_strtok(&s, ";", &tok)) != eslOK)
ESL_FAIL(eslEFORMAT, ascii->errbuf, "Line %" PRId64 ": failed to parse accession on AC line", ascii->linenumber);
if ((status = esl_sq_SetAccession(sq, tok)) != eslOK) return status;
}
/* "The format of the DE line is:
* DE Description.
* ...In cases where more than one DE line is required, the text is
* only divided between words and only the last DE line is
* terminated by a period."
*
* Examples:
* DE U1 small nuclear ribonucleoprotein A (U1 snRNP protein A) (U1-A) (Sex
* DE determination protein snf).
*
* DE Human mRNA for U1 small nuclear RNP-specific A protein
*
* DE RecName: Full=U1 small nuclear ribonucleoprotein A;
* DE Short=U1 snRNP protein A;
* DE Short=U1-A;
* DE AltName: Full=Sex determination protein snf;
*
* We'll make no attempt to parse the structured UniProt description header,
* for the moment.
*/
if (strncmp(ascii->buf, "DE ", 5) == 0)
{
s = ascii->buf+5;
esl_strchop(s, ascii->nc-5);
if ((status = esl_sq_AppendDesc(sq, s)) != eslOK)
ESL_FAIL(status, ascii->errbuf, "Line %" PRId64 ": failed to parse description on DE line", ascii->linenumber);
}
/* UniProt: "The format of the SQ line is:
* SQ SEQUENCE XXXX AA; XXXXX MW; XXXXXXXXXXXXXXXX CRC64;"
* EMBL: "The SQ (SeQuence header) line marks the beginning of
* the sequence data and Gives a summary of its content.
* An example is:
* SQ Sequence 1859 BP; 609 A; 314 C; 355 G; 581 T; 0 other;"
*
* We don't parse this line; we just look for it as the last line
* before the sequence starts.
*/
} while (strncmp(ascii->buf, "SQ ", 5) != 0);
if (loadbuf(sqfp) != eslOK) ESL_FAIL(eslEFORMAT, ascii->errbuf, "Failed to find any sequence");
sq->hoff = ascii->boff - 1;
sq->doff = ascii->boff;
return eslOK;
}
/* skip_embl()
*
* Skip past the EMBL header and position to start of the sequence line.
*
* On success, returns <eslOK> and:
* sq->roff has been set to the record offset
* sq->doff has been set to the data offset (start of sequence line)
* sqfp->buf is the first seq line.
*
* If no more seqs are found in the file, returns <eslEOF>.
* On parse failure, returns <eslEFORMAT>, leaves as mesg in ascii->errbuf.
*
* May also throw <eslEMEM> on allocation errors.
*/
static int
skip_embl(ESL_SQFILE *sqfp, ESL_SQ *sq)
{
int status;
ESL_SQASCII_DATA *ascii = &sqfp->data.ascii;
/* Find first line:
* "Each entry must begin with an identification line (ID)..."
* "The two-character line-type code that begins each line is always
* followed by three blanks..."
*/
if (ascii->nc == 0) return eslEOF;
while (esl_str_IsBlank(ascii->buf)) {
if ((status = loadbuf(sqfp)) == eslEOF) return eslEOF; /* normal */
else if (status != eslOK) return status; /* abnormal */
}
/* ID line */
if (strncmp(ascii->buf, "ID ", 5) != 0) ESL_FAIL(eslEFORMAT, ascii->errbuf, "Line %" PRId64 ": failed to find ID line", ascii->linenumber);
sq->roff = ascii->boff;/* record the offset of the ID line */
/* zero out the name, accession and description */
sq->name[0] = '\0';
sq->acc[0] = '\0';
sq->desc[0] = '\0';
/* Look for SQ line; parsing optional info as we go. */
do {
if ((status = loadbuf(sqfp)) != eslOK) ESL_FAIL(eslEFORMAT, ascii->errbuf, "Line %" PRId64 ": failed to find SQ line", ascii->linenumber);
} while (strncmp(ascii->buf, "SQ ", 5) != 0);
if (loadbuf(sqfp) != eslOK) ESL_FAIL(eslEFORMAT, ascii->errbuf, "Failed to find any sequence");
sq->hoff = ascii->boff - 1;
sq->doff = ascii->boff;
return eslOK;
}
static int
end_embl(ESL_SQFILE *sqfp, ESL_SQ *sq)
{
int status;
ESL_SQASCII_DATA *ascii = &sqfp->data.ascii;
if (strncmp(ascii->buf, "//", 2) != 0) ESL_FAIL(eslEFORMAT, ascii->errbuf, "Line %" PRId64 ": did not find // terminator at end of seq record", ascii->linenumber);
sq->eoff = ascii->boff + ascii->nc - 1;
status = loadbuf(sqfp);
if (status == eslEOF) return eslOK; /* ok, actually. */
else if (status == eslOK) return eslOK;
else return status;
}
/*---------------------- EMBL format ---------------------------------*/
/*****************************************************************
*# 8. Internal routines for GenBank format
*****************************************************************/
/* NCBI GenBank sequence database format.
* See GenBank release notes; for example,
* ftp://ftp.ncbi.nih.gov/genbank/gbrel.txt
*/
static void
config_genbank(ESL_SQFILE *sqfp)
{
ESL_SQASCII_DATA *ascii = &sqfp->data.ascii;
ascii->is_linebased = TRUE;
ascii->eof_is_ok = FALSE;/* records end with // */
ascii->parse_header = &header_genbank;
ascii->skip_header = &skip_genbank;
ascii->parse_end = &end_genbank;
}
static void
inmap_genbank(ESL_SQFILE *sqfp, const ESL_DSQ *abc_inmap)
{
int x;
if (abc_inmap != NULL) {
for (x = 0; x < 128; x++) sqfp->inmap[x] = abc_inmap[x];
} else {
for (x = 0; x < 128; x++) sqfp->inmap[x] = eslDSQ_ILLEGAL;
for (x = 'A'; x <= 'Z'; x++) sqfp->inmap[x] = x;
for (x = 'a'; x <= 'z'; x++) sqfp->inmap[x] = x;
}
for (x = '0'; x <= '9'; x++)
sqfp->inmap[x] = eslDSQ_IGNORED;
sqfp->inmap['*'] = '*'; /* accept * as a nonresidue/stop codon character */
sqfp->inmap[' '] = eslDSQ_IGNORED;
sqfp->inmap['\t'] = eslDSQ_IGNORED;
sqfp->inmap['\n'] = eslDSQ_IGNORED;
sqfp->inmap['\r'] = eslDSQ_IGNORED;/* DOS eol compatibility */
sqfp->inmap['/'] = eslDSQ_EOD;
}
/* header_genbank()
*
* sqfp->buf is the first (LOCUS) line of the entry, or a line before
* it (in which case we'll scan forwards to find the LOCUS line - even
* skipping non-blank lines, because there are sometimes headers at
* the start of GenBank files).
*
* On success, returns <eslOK> and:
* sq->name contains sequence name (and may have been reallocated, changing sq->nalloc)
* sq->acc contains seq accession (and may have been reallocated, changing sq->aalloc)
* sq->desc contains description line (and may have been reallocated, changing sq->dalloc)
* sq->roff has been set to the record offset
* sq->doff has been set to the data offset (start of sequence line)
* sqfp->buf is the first seq line.
*
* If no more seqs are found in the file, returns <eslEOF>.
* On parse failure, returns <eslEFORMAT>, leaves as mesg in ascii->errbuf.
*
* May also throw <eslEMEM> on allocation errors.
*/
static int
header_genbank(ESL_SQFILE *sqfp, ESL_SQ *sq)
{
char *s;
char *tok;
int status;
ESL_SQASCII_DATA *ascii = &sqfp->data.ascii;
/* Find LOCUS line, allowing for ignoration of a file header. */
if (ascii->nc == 0) return eslEOF;
while (strncmp(ascii->buf, "LOCUS ", 8) != 0) {
if ((status = loadbuf(sqfp)) == eslEOF) return eslEOF; /* normal */
else if (status != eslOK) return status; /* abnormal */
}
s = ascii->buf+12;
if ((status = esl_strtok(&s, " ", &tok)) != eslOK)
ESL_FAIL(eslEFORMAT, ascii->errbuf, "Line %" PRId64 ": failed to parse name on LOCUS line", ascii->linenumber);
if ((status = esl_sq_SetName(sq, tok)) != eslOK) return status;
sq->roff = ascii->boff;/* record the disk offset to the LOCUS line */
/* Look for ORIGIN line, parsing optional info as we go. */
do {
if ((status = loadbuf(sqfp)) != eslOK) ESL_FAIL(eslEFORMAT, ascii->errbuf, "Failed to find ORIGIN line");
/* Optional VERSION line is parsed as "accession". */
if (strncmp(ascii->buf, "VERSION ", 10) == 0)
{
s = ascii->buf+12;
if ((status = esl_strtok(&s, " \t\n", &tok)) != eslOK)
ESL_FAIL(eslEFORMAT, ascii->errbuf, "Line %" PRId64 ": failed to parse VERSION line", ascii->linenumber);
if ((status = esl_sq_SetAccession(sq, tok)) != eslOK) return status;
}
/* Optional DEFINITION Line is parsed as "description". */
if (strncmp(ascii->buf, "DEFINITION ", 11) == 0)
{
s = ascii->buf+12;
esl_strchop(s, ascii->nc-12);
if ((status = esl_sq_AppendDesc(sq, s)) != eslOK)
ESL_FAIL(status, ascii->errbuf, "Line %" PRId64 ": failed to parse desc on DEFINITION line", ascii->linenumber);
}
} while (strncmp(ascii->buf, "ORIGIN", 6) != 0);
if (loadbuf(sqfp) != eslOK) ESL_FAIL(eslEFORMAT, ascii->errbuf, "Failed to find any sequence");
sq->hoff = ascii->boff - 1;
sq->doff = ascii->boff;
return eslOK;
}
/* skip_genbank()
*
* Skip past the GenBank header and position to start of the sequence line.
*
* On success, returns <eslOK> and:
* sq->roff has been set to the record offset
* sq->doff has been set to the data offset (start of sequence line)
* sqfp->buf is the first seq line.
*
* If no more seqs are found in the file, returns <eslEOF>.
* On parse failure, returns <eslEFORMAT>, leaves as mesg in ascii->errbuf.
*
* May also throw <eslEMEM> on allocation errors.
*/
static int
skip_genbank(ESL_SQFILE *sqfp, ESL_SQ *sq)
{
int status;
ESL_SQASCII_DATA *ascii = &sqfp->data.ascii;
/* Find LOCUS line, allowing for ignoration of a file header. */
if (ascii->nc == 0) return eslEOF;
while (strncmp(ascii->buf, "LOCUS ", 8) != 0) {
if ((status = loadbuf(sqfp)) == eslEOF) return eslEOF; /* normal */
else if (status != eslOK) return status; /* abnormal */
}
sq->roff = ascii->boff;/* record the disk offset to the LOCUS line */
/* zero out the name, accession and description */
sq->name[0] = '\0';
sq->acc[0] = '\0';
sq->desc[0] = '\0';
/* Look for ORIGIN line, parsing optional info as we go. */
do {
if ((status = loadbuf(sqfp)) != eslOK) ESL_FAIL(eslEFORMAT, ascii->errbuf, "Failed to find ORIGIN line");
} while (strncmp(ascii->buf, "ORIGIN", 6) != 0);
if (loadbuf(sqfp) != eslOK) ESL_FAIL(eslEFORMAT, ascii->errbuf, "Failed to find any sequence");
sq->hoff = ascii->boff - 1;
sq->doff = ascii->boff;
return eslOK;
}
static int
end_genbank(ESL_SQFILE *sqfp, ESL_SQ *sq)
{
int status;
ESL_SQASCII_DATA *ascii = &sqfp->data.ascii;
if (strncmp(ascii->buf, "//", 2) != 0) ESL_FAIL(eslEFORMAT, ascii->errbuf, "Line %" PRId64 ": did not find // terminator at end of seq record", ascii->linenumber);
sq->eoff = ascii->boff + ascii->nc - 1;
status = loadbuf(sqfp);
if (status == eslEOF) return eslOK; /* ok, actually; we'll detect EOF on next sq read */
else if (status == eslOK) return eslOK;
else return status;
}
/*----------------- end GenBank format -------------------------------*/
/*****************************************************************
*# 9. Internal routines for FASTA format
*****************************************************************/
static void
config_fasta(ESL_SQFILE *sqfp)
{
ESL_SQASCII_DATA *ascii = &sqfp->data.ascii;
ascii->is_linebased = FALSE;
ascii->eof_is_ok = TRUE;
ascii->parse_header = &header_fasta;
ascii->skip_header = &skip_fasta;
ascii->parse_end = &end_fasta;
}
static void
inmap_fasta(ESL_SQFILE *sqfp, const ESL_DSQ *abc_inmap)
{
int x;
if (abc_inmap != NULL) {
for (x = 0; x < 128; x++) sqfp->inmap[x] = abc_inmap[x];
} else {
for (x = 0; x < 128; x++) sqfp->inmap[x] = eslDSQ_ILLEGAL;
for (x = 'A'; x <= 'Z'; x++) sqfp->inmap[x] = x;
for (x = 'a'; x <= 'z'; x++) sqfp->inmap[x] = x;
}
sqfp->inmap['*'] = '*'; /* accept * as a nonresidue/stop codon character */
sqfp->inmap[' '] = eslDSQ_IGNORED;
sqfp->inmap['\t'] = eslDSQ_IGNORED;
sqfp->inmap['\r'] = eslDSQ_IGNORED;/* DOS eol compatibility */
sqfp->inmap['\n'] = eslDSQ_EOL;
sqfp->inmap['>'] = eslDSQ_EOD;
/* \n is special - fasta reader detects it as an eol */
}
/* header_fasta()
*
* sqfp->buf[sqfp->bpos] is sitting at the start of a FASTA record, or
* at a space before it (in which case we'll advance, skipping whitespace,
* until a > is reached).
* Parse the header line, storing name and description in <sq>.
*
* On success, returns <eslOK> and:
* sq->name contains sequence name (and may have been reallocated, changing sq->nalloc)
* sq->desc contains description line (and may have been reallocated, changing sq->dalloc)
* sq->roff has been set to the record offset
* sq->doff has been set to the data offset (start of sequence line)
* sqfp->buf[sqfp->bpos] is sitting at the start of the seq line.
* sqfp->currpl,curbpl set to 0, to start bookkeeping data line lengths
*
* If no more seqs are found in the file, returns <eslEOF>.
* On parse failure, return <eslEFORMAT>, leaves as mesg in ascii->errbuf.
*
* May also throw <eslEMEM> on allocation errors.
*/
static int
header_fasta(ESL_SQFILE *sqfp, ESL_SQ *sq)
{
char c;
int status = eslOK;
void *tmp;
int pos;
ESL_SQASCII_DATA *ascii = &sqfp->data.ascii;
/* make sure there are characters in the buffer */
if (ascii->nc == ascii->bpos && (status = loadbuf(sqfp)) != eslOK) return status;
c = ascii->buf[ascii->bpos];
while (status == eslOK && isspace(c)) status = nextchar(sqfp, &c); /* skip space (including \n) */
if (status == eslEOF) return eslEOF;
if (status == eslOK && c == '>') { /* accept the > */
sq->roff = ascii->boff + ascii->bpos; /* store SSI record offset */
status = nextchar(sqfp, &c);
} else if (c != '>') ESL_FAIL(eslEFORMAT, ascii->errbuf, "Line %" PRId64 ": unexpected char %c; expected FASTA to start with >", ascii->linenumber, c);
while (status == eslOK && (c == '\t' || c == ' ')) status = nextchar(sqfp, &c); /* skip space */
/* Store the name (space delimited) */
pos = 0;
while (status == eslOK && ! isspace(c))
{
sq->name[pos++] = c;
if (pos == sq->nalloc-1) { ESL_RALLOC(sq->name, tmp, sq->nalloc*2); sq->nalloc*=2; }
status = nextchar(sqfp, &c);
}
if (pos == 0) ESL_FAIL(eslEFORMAT, ascii->errbuf, "Line %" PRId64 ": no FASTA name found", ascii->linenumber);
sq->name[pos] = '\0';
while (status == eslOK && (c == '\t' || c == ' ')) status = nextchar(sqfp, &c); /* skip space */
/* Store the description (end-of-line delimited) */
/* Patched to deal with NCBI NR desclines: delimit by ctrl-A (0x01) too. [SRE:H1/82] */
pos = 0;
while (status == eslOK && c != '\n' && c != '\r' && c != 1)
{
sq->desc[pos++] = c;
if (pos == sq->dalloc-1) { ESL_RALLOC(sq->desc, tmp, sq->dalloc*2); sq->dalloc*= 2; }
status = nextchar(sqfp, &c);
}
sq->desc[pos] = '\0';
/* Because of the NCBI NR patch, c might be0x01 ctrl-A now; skip to eol.
* (TODO: I'm worried about the efficiency of this nextchar() stuff. Revisit.)
*/
while (status == eslOK && c != '\n' && c != '\r')
status = nextchar(sqfp, &c);
sq->hoff = ascii->boff + ascii->bpos;
while (status == eslOK && (c == '\n' || c == '\r')) status = nextchar(sqfp, &c); /* skip past eol (DOS \r\n, MAC \r, UNIX \n */
if (status != eslOK && status != eslEOF) ESL_FAIL(eslEFORMAT, ascii->errbuf, "Unexpected failure in parsing FASTA name/description line");
/* Edge case: if the last sequence in the file is L=0, no residues, we are EOF now, not OK; but we'll return OK because we parsed the header line */
sq->doff = ascii->boff + ascii->bpos;
ascii->prvrpl = ascii->prvbpl = -1;
ascii->currpl = ascii->curbpl = 0;
ascii->linenumber++;
return eslOK;
ERROR:
return status;/* eslEMEM, from failed realloc */
}
/* skip_fasta()
*
* Skip past the fasta header and position to start of the sequence line.
*
* On success, returns <eslOK> and:
* sq->roff has been set to the record offset
* sq->doff has been set to the data offset (start of sequence line)
* sqfp->buf[sqfp->bpos] is sitting at the start of the seq line.
* sqfp->currpl,curbpl set to 0, to start bookkeeping data line lengths
*
* If no more seqs are found in the file, returns <eslEOF>.
* On parse failure, return <eslEFORMAT>, leaves as mesg in ascii->errbuf.
*
* May also throw <eslEMEM> on allocation errors.
*/
static int
skip_fasta(ESL_SQFILE *sqfp, ESL_SQ *sq)
{
char c;
int status = eslOK;
ESL_SQASCII_DATA *ascii = &sqfp->data.ascii;
c = ascii->buf[ascii->bpos];
while (status == eslOK && isspace(c)) status = nextchar(sqfp, &c); /* skip space (including \n) */
if (status == eslEOF) return eslEOF;
if (status != eslOK) ESL_FAIL(eslEFORMAT, ascii->errbuf, "Unexpected parsing error %d", status);
if (c != '>') ESL_FAIL(eslEFORMAT, ascii->errbuf, "Line %" PRId64 ": unexpected char %c; expecting '>'", ascii->linenumber, c);
sq->roff = ascii->boff + ascii->bpos; /* store SSI record offset */
/* zero out the name, accession and description */
sq->name[0] = '\0';
sq->acc[0] = '\0';
sq->desc[0] = '\0';
status = nextchar(sqfp, &c);
/* skip to end of line */
while (status == eslOK && c != '\n' && c != '\r') status = nextchar(sqfp, &c);
sq->doff = ascii->boff + ascii->bpos;
/* skip past end of line */
while (status == eslOK && (c == '\n' || c == '\r')) status = nextchar(sqfp, &c);
if (status != eslOK) ESL_FAIL(eslEFORMAT, ascii->errbuf, "Premature EOF in parsing FASTA name/description line");
sq->doff = ascii->boff + ascii->bpos;
ascii->linenumber++;
return eslOK;
}
static int
end_fasta(ESL_SQFILE *sqfp, ESL_SQ *sq)
{
ESL_SQASCII_DATA *ascii = &sqfp->data.ascii;
if (ascii->bpos < ascii->nc) {
if (ascii->buf[ascii->bpos] != '>') ESL_FAIL(eslEFORMAT, ascii->errbuf, "Whoops, FASTA reader is corrupted");
sq->eoff = ascii->boff + ascii->bpos - 1; /* this puts eoff at the last \n */
} /* else, EOF, and we don't have to do anything. */
return eslOK;
}
/* Function: esl_sqascii_WriteFasta()
* Synopsis: Write a sequence in FASTA foramt
*
* Purpose: Write sequence <sq> in FASTA format to the open stream <fp>.
*
* If <save_offsets> is TRUE, then store record, data, and end
* offsets in <sq>; this ability is used by unit tests.
*
* Returns: <eslOK> on success.
*
* Throws: <eslEMEM> on allocation failure.
* <eslEWRITE> on system write error.
*/
int
esl_sqascii_WriteFasta(FILE *fp, ESL_SQ *sq, int save_offsets)
{
char buf[61];
int64_t pos;
if (save_offsets) sq->roff = ftello(fp);
if (fprintf(fp, ">%s", sq->name) < 0) ESL_EXCEPTION_SYS(eslEWRITE, "fasta seq write failed");
if (sq->acc[0] != 0 && fprintf(fp, " %s", sq->acc) < 0) ESL_EXCEPTION_SYS(eslEWRITE, "fasta seq write failed");
if (sq->desc[0] != 0 && fprintf(fp, " %s", sq->desc) < 0) ESL_EXCEPTION_SYS(eslEWRITE, "fasta seq write failed");
if (save_offsets) sq->hoff = ftello(fp);
if (fputc('\n', fp) < 0) ESL_EXCEPTION_SYS(eslEWRITE, "fasta seq write failed");
buf[60] = '\0';
if (save_offsets) sq->doff = ftello(fp);
for (pos = 0; pos < sq->n; pos += 60)
{
if (sq->dsq != NULL) esl_abc_TextizeN(sq->abc, sq->dsq+pos+1, 60, buf);
else strncpy(buf, sq->seq+pos, 60);
if (fprintf(fp, "%s\n", buf) < 0) ESL_EXCEPTION_SYS(eslEWRITE, "fasta seq write failed");
}
if (save_offsets) sq->eoff = ftello(fp) - 1;
return eslOK;
}
/*------------------- end of FASTA i/o ---------------------------*/
/*****************************************************************
*# 10. Internal routines for daemon format
*****************************************************************/
/* Special case FASTA format where each sequence is terminated with "//".
*
* The use case is where the sequences are being read from a pipe and a
* way is needed to signal the end of the sequence so it can be processed.
* The next sequence might not be in the pipe, so the usual '>' is not
* present to signal the end of the sequence. Also, an EOF is not
* an option, since the daemon might run continuously.
*/
static void
config_daemon(ESL_SQFILE *sqfp)
{
ESL_SQASCII_DATA *ascii = &sqfp->data.ascii;
ascii->is_linebased = FALSE;
ascii->eof_is_ok = FALSE;
ascii->parse_header = &header_fasta;
ascii->skip_header = &skip_fasta;
ascii->parse_end = &end_daemon;
}
static void
inmap_daemon(ESL_SQFILE *sqfp, const ESL_DSQ *abc_inmap)
{
int x;
if (abc_inmap != NULL) {
for (x = 0; x < 128; x++) sqfp->inmap[x] = abc_inmap[x];
} else {
for (x = 0; x < 128; x++) sqfp->inmap[x] = eslDSQ_ILLEGAL;
for (x = 'A'; x <= 'Z'; x++) sqfp->inmap[x] = x;
for (x = 'a'; x <= 'z'; x++) sqfp->inmap[x] = x;
}
sqfp->inmap['*'] = '*'; /* accept * as a nonresidue/stop codon character */
sqfp->inmap[' '] = eslDSQ_IGNORED;
sqfp->inmap['\t'] = eslDSQ_IGNORED;
sqfp->inmap['\r'] = eslDSQ_IGNORED;/* DOS eol compatibility */
sqfp->inmap['\n'] = eslDSQ_EOL;
sqfp->inmap['/'] = eslDSQ_EOD;
/* \n is special - fasta reader detects it as an eol */
}
/* end_daemon()
*
* Special case FASTA format where each sequence is terminated with "//".
*
* The use case is were the sequences are being read from a pipe and a
* way is needed to signal the end of the sequence so it can be processed.
*/
static int
end_daemon(ESL_SQFILE *sqfp, ESL_SQ *sq)
{
char c;
ESL_SQASCII_DATA *ascii = &sqfp->data.ascii;
if (ascii->nc < 3) ESL_FAIL(eslEFORMAT, ascii->errbuf, "Whoops, daemon input stream is corrupted");
c = ascii->buf[ascii->bpos++];
if (c != '/') ESL_FAIL(eslEFORMAT, ascii->errbuf, "Line %" PRId64 ": did not find // terminator at end of seq record", ascii->linenumber);
c = ascii->buf[ascii->bpos++];
if (c != '/') ESL_FAIL(eslEFORMAT, ascii->errbuf, "Line %" PRId64 ": did not find // terminator at end of seq record", ascii->linenumber);
/* skip to end of line */
while (c != '\n' && c != '\r' && ascii->bpos < ascii->nc) c = ascii->buf[ascii->bpos++];
/* skip past end of line */
while ((c == '\n' || c == '\r') && ascii->bpos < ascii->nc) c = ascii->buf[ascii->bpos++];
return eslOK;
}
/* esl_sqascii_Parse()
*
* Parse a sequence already read into a buffer.
*/
int
esl_sqascii_Parse(char *buf, int size, ESL_SQ *sq, int format)
{
int status;
int64_t epos;
int64_t n;
ESL_SQFILE sqfp;
ESL_SQASCII_DATA *ascii = &sqfp.data.ascii;
/* fill in a dummy esl_sqfile structure used to parse buf */
ascii->fp = NULL;
ascii->do_gzip = FALSE;
ascii->do_stdin = FALSE;
ascii->do_buffer = TRUE;
ascii->mem = buf;
ascii->allocm = 0;
ascii->mn = size;
ascii->mpos = 0;
ascii->moff = -1;
ascii->is_recording = FALSE;
ascii->buf = NULL;
ascii->boff = 0;
ascii->balloc = 0;
ascii->nc = 0;
ascii->bpos = 0;
ascii->L = 0;
ascii->linenumber = 1;
ascii->afp = NULL;
ascii->msa = NULL;
ascii->idx = -1;
ascii->ssifile = NULL;
ascii->rpl = -1;/* -1 = not set yet */
ascii->bpl = -1;/* (ditto) */
ascii->prvrpl = -1;/* (ditto) */
ascii->prvbpl = -1;/* (ditto) */
ascii->currpl = -1;
ascii->curbpl = -1;
ascii->ssi = NULL;
/* Configure the <sqfp>'s parser and inmaps for this format. */
switch (format) {
case eslSQFILE_EMBL:
case eslSQFILE_UNIPROT:
config_embl(&sqfp);
inmap_embl(&sqfp, NULL);
break;
case eslSQFILE_GENBANK:
case eslSQFILE_DDBJ:
config_genbank(&sqfp);
inmap_genbank(&sqfp, NULL);
break;
case eslSQFILE_FASTA:
config_fasta(&sqfp);
inmap_fasta(&sqfp, NULL);
break;
case eslSQFILE_DAEMON:
config_daemon(&sqfp);
inmap_daemon(&sqfp, NULL);
break;
default:
return eslEFORMAT;
}
/* Main case: read next seq from sqfp's stream */
if ((status = ascii->parse_header(&sqfp, sq)) != eslOK) return status; /* EOF, EFORMAT */
do {
if ((status = seebuf(&sqfp, -1, &n, &epos)) == eslEFORMAT) return status;
if (esl_sq_GrowTo(sq, sq->n + n) != eslOK) return eslEMEM;
addbuf(&sqfp, sq, n);
ascii->L += n;
sq->eoff = ascii->boff + epos - 1;
if (status == eslEOD) break;
} while ((status = loadbuf(&sqfp)) == eslOK);
if (status == eslEOF)
{
if (! ascii->eof_is_ok) ESL_FAIL(eslEFORMAT, ascii->errbuf, "Unexpected EOF; file truncated?");
if ((status = ascii->parse_end(&sqfp, sq)) != eslOK) return status;
}
else if (status == eslEOD)
{
ascii->bpos = epos;
if ((status = ascii->parse_end(&sqfp, sq)) != eslOK) return status;
}
else if (status != eslOK) return status;
if (sq->dsq != NULL) sq->dsq[sq->n+1] = eslDSQ_SENTINEL;
else sq->seq[sq->n] = '\0';
sq->start = 1;
sq->end = sq->n;
sq->C = 0;
sq->W = sq->n;
sq->L = sq->n;
if (ascii->balloc > 0) free(ascii->buf);
return eslOK;
}
/*-------------------- end of daemon ----------------------------*/
/*****************************************************************
*# 11. Internal routines for HMMPGMD format
*****************************************************************/
static int
fileheader_hmmpgmd(ESL_SQFILE *sqfp)
{
ESL_SQASCII_DATA *ascii = &sqfp->data.ascii;
char c;
int status = eslOK;
/* We've just loaded first buffer, after an Open. First char should be the # of the hmmpgmd file,
* but let's tolerate leading whitespace anyway
*/
c = ascii->buf[ascii->bpos];
while (status == eslOK && isspace(c)) status = nextchar(sqfp, &c); /* skip space (including \n, \r) */
if (status == eslEOF) return eslEOF;
if (c != '#') ESL_FAIL(eslEFORMAT, ascii->errbuf, "hmmpgmd file expected to start with #");
/* skip first line; remainder of file is FASTA format */
while (status == eslOK && (c != '\n' && c != '\r')) status = nextchar(sqfp, &c);
if (status == eslEOF) return eslEOF;
/* next character read should be the '>' of the first FASTA record. We're properly positioned at "start of file". */
return eslOK;
}
/*-------------------- end of HMMPGMD ---------------------------*/
|