1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463
|
#include <stdlib.h>
#include <iostream>
#include <fstream>
#include <string>
#include <algorithm>
#include <cassert>
#include <stdexcept>
#include <getopt.h>
#include <vector>
#include <time.h>
#ifndef _WIN32
#include <dirent.h>
#include <signal.h>
#endif
#include "aligner.h"
#include "aligner_0mm.h"
#include "aligner_1mm.h"
#include "aligner_23mm.h"
#include "aligner_metrics.h"
#include "aligner_seed_mm.h"
#include "alphabet.h"
#include "assert_helpers.h"
#include "bitset.h"
#include "ds.h"
#include "ebwt.h"
#include "ebwt_search.h"
#include "endian_swap.h"
#include "formats.h"
#include "hit.h"
#include "pat.h"
#include "range_cache.h"
#include "sam.h"
#include "sequence_io.h"
#include "threading.h"
#include "tokenize.h"
#ifdef CHUD_PROFILING
#include <CHUD/CHUD.h>
#endif
static int FNAME_SIZE;
#if (__cplusplus >= 201103L)
#include <thread>
static std::atomic<int> thread_counter;
#else
static int thread_counter;
static MUTEX_T thread_counter_mutex;
#endif
using namespace std;
static EList<string> mates1; // mated reads (first mate)
static EList<string> mates2; // mated reads (second mate)
static EList<string> mates12; // mated reads (1st/2nd interleaved in 1 file)
static string adjustedEbwtFileBase;
static bool verbose; // be talkative
static bool startVerbose; // be talkative at startup
bool quiet; // print nothing but the alignments
static int sanityCheck; // enable expensive sanity checks
static int format; // default read format is FASTQ
static string origString; // reference text, or filename(s)
static int seed; // srandom() seed
static int timing; // whether to report basic timing data
static bool allHits; // for multihits, report just one
static bool rangeMode; // report BWT ranges instead of ref locs
static int showVersion; // just print version and quit?
static int ipause; // pause before maching?
static uint32_t qUpto; // max # of queries to read
static int trim5; // amount to trim from 5' end
static int trim3; // amount to trim from 3' end
static int reportOpps; // whether to report # of other mappings
static int offRate; // keep default offRate
static int isaRate; // keep default isaRate
static int mismatches; // allow 0 mismatches by default
static bool solexaQuals; // quality strings are solexa quals, not phred, and subtract 64 (not 33)
static bool phred64Quals; // quality chars are phred, but must subtract 64 (not 33)
static bool integerQuals; // quality strings are space-separated strings of integers, not ASCII
static int maqLike; // do maq-like searching
static int seedLen; // seed length (changed in Maq 0.6.4 from 24)
static int seedMms; // # mismatches allowed in seed (maq's -n)
static int qualThresh; // max qual-weighted hamming dist (maq's -e)
static int maxBtsBetter; // max # backtracks allowed in half-and-half mode
static int maxBts; // max # backtracks allowed in half-and-half mode
static int nthreads; // number of pthreads operating concurrently
static bool reorder; // reorder SAM output when running multi-threaded
static int thread_ceiling; // maximum number of threads user wants bowtie to use
static string thread_stealing_dir; // keep track of pids in this directory
static bool thread_stealing; // true iff thread stealing is in use
static output_types outType; // style of output
static bool noRefNames; // true -> print reference indexes; not names
static string dumpAlBase; // basename of same-format files to dump aligned reads to
static string dumpUnalBase; // basename of same-format files to dump unaligned reads to
static string dumpMaxBase; // basename of same-format files to dump reads with more than -m valid alignments to
static uint32_t khits; // number of hits per read; >1 is much slower
static uint32_t mhits; // don't report any hits if there are > mhits
static bool better; // true -> guarantee alignments from best possible stratum
static bool strata; // true -> don't stop at stratum boundaries
static int partitionSz; // output a partitioning key in first field
static int readsPerBatch; // # reads to read from input file at once
static size_t outBatchSz; // # alignments to write to output file at once
static bool noMaqRound; // true -> don't round quals to nearest 10 like maq
static bool fileParallel; // separate threads read separate input files in parallel
static bool useShmem; // use shared memory to hold the index
static bool useMm; // use memory-mapped files to hold the index
static bool mmSweep; // sweep through memory-mapped files immediately after mapping
static bool stateful; // use stateful aligners
static uint32_t prefetchWidth; // number of reads to process in parallel w/ --stateful
static uint32_t minInsert; // minimum insert size (Maq = 0, SOAP = 400)
static uint32_t maxInsert; // maximum insert size (Maq = 250, SOAP = 600)
static bool mate1fw; // -1 mate aligns in fw orientation on fw strand
static bool mate2fw; // -2 mate aligns in rc orientation on fw strand
static bool mateFwSet; // true -> user set --ff/--fr/--rf
static uint32_t mixedThresh; // threshold for when to switch to paired-end mixed mode (see aligner.h)
static uint32_t mixedAttemptLim; // number of attempts to make in "mixed mode" before giving up on orientation
static bool dontReconcileMates; // suppress pairwise all-versus-all way of resolving mates
static uint32_t cacheLimit; // ranges w/ size > limit will be cached
static uint32_t cacheSize; // # words per range cache
static int offBase; // offsets are 0-based by default, but configurable
static bool tryHard; // set very high maxBts, mixedAttemptLim
static uint32_t skipReads; // # reads/read pairs to skip
static bool nofw; // don't align fw orientation of read
static bool norc; // don't align rc orientation of read
static bool strandFix; // attempt to fix strand bias
static bool stats; // print performance stats
static int chunkPoolMegabytes; // max MB to dedicate to best-first search frames per thread
static int chunkSz; // size of single chunk disbursed by ChunkPool
static bool chunkVerbose; // have chunk allocator output status messages?
static bool useV1;
static bool reportSe;
static size_t fastaContLen;
static size_t fastaContFreq;
static bool hadoopOut; // print Hadoop status and summary messages
static bool fullRef;
static bool samNoQnameTrunc; // don't truncate QNAME field at first whitespace
static bool samNoHead; // don't print any header lines in SAM output
static bool samNoSQ; // don't print @SQ header lines
static string rgs; // SAM outputs for @RG header line
static Bitset suppressOuts(64); // output fields to suppress
static bool sampleMax; // whether to report a random alignment when maxed-out via -m/-M
static int defaultMapq; // default mapping quality to print in SAM mode
static bool printCost; // true -> print stratum and cost
bool showSeed;
static EList<string> qualities;
static EList<string> qualities1;
static EList<string> qualities2;
static string wrapper; // Type of wrapper script
bool gAllowMateContainment;
bool noUnal; // don't print unaligned reads
string ebwtFile; // read serialized Ebwt from this file
MUTEX_T gLock;
static void resetOptions() {
mates1.clear();
mates2.clear();
mates12.clear();
ebwtFile = "";
adjustedEbwtFileBase = "";
verbose = 0;
startVerbose = 0;
quiet = false;
sanityCheck = 0; // enable expensive sanity checks
format = FASTQ; // default read format is FASTQ
origString = ""; // reference text, or filename(s)
seed = 0; // srandom() seed
timing = 0; // whether to report basic timing data
allHits = false; // for multihits, report just one
rangeMode = false; // report BWT ranges instead of ref locs
showVersion = 0; // just print version and quit?
ipause = 0; // pause before maching?
qUpto = 0xffffffff; // max # of queries to read
trim5 = 0; // amount to trim from 5' end
trim3 = 0; // amount to trim from 3' end
reportOpps = 0; // whether to report # of other mappings
offRate = -1; // keep default offRate
isaRate = -1; // keep default isaRate
mismatches = 0; // allow 0 mismatches by default
solexaQuals = false; // quality strings are solexa quals, not phred, and subtract 64 (not 33)
phred64Quals = false; // quality chars are phred, but must subtract 64 (not 33)
integerQuals = false; // quality strings are space-separated strings of integers, not ASCII
maqLike = 1; // do maq-like searching
seedLen = 28; // seed length (changed in Maq 0.6.4 from 24)
seedMms = 2; // # mismatches allowed in seed (maq's -n)
qualThresh = 70; // max qual-weighted hamming dist (maq's -e)
maxBtsBetter = 125; // max # backtracks allowed in half-and-half mode
maxBts = 800; // max # backtracks allowed in half-and-half mode
nthreads = 1; // number of pthreads operating concurrently
reorder = false; // reorder SAM output
thread_ceiling = 0; // max # threads user asked for
thread_stealing_dir = ""; // keep track of pids in this directory
thread_stealing = false; // true iff thread stealing is in use
FNAME_SIZE = 200;
outType = OUTPUT_FULL; // style of output
noRefNames = false; // true -> print reference indexes; not names
dumpAlBase = ""; // basename of same-format files to dump aligned reads to
dumpUnalBase = ""; // basename of same-format files to dump unaligned reads to
dumpMaxBase = ""; // basename of same-format files to dump reads with more than -m valid alignments to
khits = 1; // number of hits per read; >1 is much slower
mhits = 0xffffffff; // don't report any hits if there are > mhits
better = false; // true -> guarantee alignments from best possible stratum
strata = false; // true -> don't stop at stratum boundaries
partitionSz = 0; // output a partitioning key in first field
readsPerBatch = 16; // # reads to read from input file at once
outBatchSz = 16; // # alignments to wrote to output file at once
noMaqRound = false; // true -> don't round quals to nearest 10 like maq
fileParallel = false; // separate threads read separate input files in parallel
useShmem = false; // use shared memory to hold the index
useMm = false; // use memory-mapped files to hold the index
mmSweep = false; // sweep through memory-mapped files immediately after mapping
stateful = false; // use stateful aligners
prefetchWidth = 1; // number of reads to process in parallel w/ --stateful
minInsert = 0; // minimum insert size (Maq = 0, SOAP = 400)
maxInsert = 250; // maximum insert size (Maq = 250, SOAP = 600)
mate1fw = true; // -1 mate aligns in fw orientation on fw strand
mate2fw = false; // -2 mate aligns in rc orientation on fw strand
mateFwSet = false; // true -> user set mate1fw/mate2fw with --ff/--fr/--rf
mixedThresh = 4; // threshold for when to switch to paired-end mixed mode (see aligner.h)
mixedAttemptLim = 100; // number of attempts to make in "mixed mode" before giving up on orientation
dontReconcileMates = true; // suppress pairwise all-versus-all way of resolving mates
cacheLimit = 5; // ranges w/ size > limit will be cached
cacheSize = 0; // # words per range cache
offBase = 0; // offsets are 0-based by default, but configurable
tryHard = false; // set very high maxBts, mixedAttemptLim
skipReads = 0; // # reads/read pairs to skip
nofw = false; // don't align fw orientation of read
norc = false; // don't align rc orientation of read
strandFix = true; // attempt to fix strand bias
stats = false; // print performance stats
chunkPoolMegabytes = 64; // max MB to dedicate to best-first search frames per thread
chunkSz = 256; // size of single chunk disbursed by ChunkPool (in KB)
chunkVerbose = false; // have chunk allocator output status messages?
useV1 = true;
reportSe = false;
fastaContLen = 0;
fastaContFreq = 0;
hadoopOut = false; // print Hadoop status and summary messages
fullRef = false; // print entire reference name instead of just up to 1st space
samNoQnameTrunc = false; // don't truncate at first whitespace?
samNoHead = false; // don't print any header lines in SAM output
samNoSQ = false; // don't print @SQ header lines
rgs = ""; // SAM outputs for @RG header line
suppressOuts.clear(); // output fields to suppress
sampleMax = false;
defaultMapq = 255;
printCost = false; // true -> print cost and stratum
showSeed = false; // true -> print per-read pseudo-random seed
qualities.clear();
qualities1.clear();
qualities2.clear();
wrapper.clear();
gAllowMateContainment = false; // true -> alignments where one mate lies inside the other are valid
noUnal = false; // true -> do not report unaligned reads
}
// mating constraints
static const char *short_options = "fF:qbzhcu:rv:s:at3:5:o:e:n:l:w:p:k:m:M:1:2:I:X:x:z:B:ySCQ:";
enum {
ARG_ORIG = 256,
ARG_SEED,
ARG_RANGE,
ARG_SOLEXA_QUALS,
ARG_MAXBTS,
ARG_VERBOSE,
ARG_STARTVERBOSE,
ARG_QUIET,
ARG_FAST,
ARG_AL,
ARG_UN,
ARG_MAXDUMP,
ARG_REFIDX,
ARG_SANITY,
ARG_OLDBEST,
ARG_BETTER,
ARG_BEST,
ARG_ISARATE,
ARG_PARTITION,
ARG_READS_PER_BATCH,
ARG_integerQuals,
ARG_NOMAQROUND,
ARG_FILEPAR,
ARG_SHMEM,
ARG_MM,
ARG_MMSWEEP,
ARG_STATEFUL,
ARG_PREFETCH_WIDTH,
ARG_FF,
ARG_FR,
ARG_RF,
ARG_MIXED_ATTEMPTS,
ARG_NO_RECONCILE,
ARG_CACHE_LIM,
ARG_CACHE_SZ,
ARG_NO_FW,
ARG_NO_RC,
ARG_SKIP,
ARG_STRAND_FIX,
ARG_STATS,
ARG_ONETWO,
ARG_PHRED64,
ARG_PHRED33,
ARG_CHUNKMBS,
ARG_CHUNKSZ,
ARG_CHUNKVERBOSE,
ARG_STRATA,
ARG_PEV2,
ARG_REPORTSE,
ARG_HADOOPOUT,
ARG_FUZZY,
ARG_FULLREF,
ARG_USAGE,
ARG_SAM_NO_QNAME_TRUNC,
ARG_SAM_NOHEAD,
ARG_SAM_NOSQ,
ARG_SAM_RG,
ARG_SUPPRESS_FIELDS,
ARG_DEFAULT_MAPQ,
ARG_COST,
ARG_SHOWSEED,
ARG_QUALS1,
ARG_QUALS2,
ARG_ALLOW_CONTAIN,
ARG_WRAPPER,
ARG_INTERLEAVED_FASTQ,
ARG_SAM_NO_UNAL,
ARG_THREAD_CEILING,
ARG_THREAD_PIDDIR,
ARG_REORDER_SAM,
};
static struct option long_options[] = {
{(char*)"verbose", no_argument, 0, ARG_VERBOSE},
{(char*)"startverbose", no_argument, 0, ARG_STARTVERBOSE},
{(char*)"quiet", no_argument, 0, ARG_QUIET},
{(char*)"sanity", no_argument, 0, ARG_SANITY},
{(char*)"pause", no_argument, &ipause, 1},
{(char*)"orig", required_argument, 0, ARG_ORIG},
{(char*)"all", no_argument, 0, 'a'},
{(char*)"solexa-quals", no_argument, 0, ARG_SOLEXA_QUALS},
{(char*)"integer-quals", no_argument, 0, ARG_integerQuals},
{(char*)"time", no_argument, 0, 't'},
{(char*)"trim3", required_argument, 0, '3'},
{(char*)"trim5", required_argument, 0, '5'},
{(char*)"seed", required_argument, 0, ARG_SEED},
{(char*)"qupto", required_argument, 0, 'u'},
{(char*)"al", required_argument, 0, ARG_AL},
{(char*)"un", required_argument, 0, ARG_UN},
{(char*)"max", required_argument, 0, ARG_MAXDUMP},
{(char*)"offrate", required_argument, 0, 'o'},
{(char*)"isarate", required_argument, 0, ARG_ISARATE},
{(char*)"reportopps", no_argument, &reportOpps, 1},
{(char*)"version", no_argument, &showVersion, 1},
{(char*)"reads-per-batch", required_argument, 0, ARG_READS_PER_BATCH},
{(char*)"maqerr", required_argument, 0, 'e'},
{(char*)"seedlen", required_argument, 0, 'l'},
{(char*)"seedmms", required_argument, 0, 'n'},
{(char*)"filepar", no_argument, 0, ARG_FILEPAR},
{(char*)"help", no_argument, 0, 'h'},
{(char*)"threads", required_argument, 0, 'p'},
{(char*)"khits", required_argument, 0, 'k'},
{(char*)"mhits", required_argument, 0, 'm'},
{(char*)"minins", required_argument, 0, 'I'},
{(char*)"maxins", required_argument, 0, 'X'},
{(char*)"quals", required_argument, 0, 'Q'},
{(char*)"Q1", required_argument, 0, ARG_QUALS1},
{(char*)"Q2", required_argument, 0, ARG_QUALS2},
{(char*)"best", no_argument, 0, ARG_BEST},
{(char*)"better", no_argument, 0, ARG_BETTER},
{(char*)"oldbest", no_argument, 0, ARG_OLDBEST},
{(char*)"strata", no_argument, 0, ARG_STRATA},
{(char*)"nomaqround", no_argument, 0, ARG_NOMAQROUND},
{(char*)"refidx", no_argument, 0, ARG_REFIDX},
{(char*)"range", no_argument, 0, ARG_RANGE},
{(char*)"maxbts", required_argument, 0, ARG_MAXBTS},
{(char*)"phased", no_argument, 0, 'z'},
{(char*)"partition", required_argument, 0, ARG_PARTITION},
{(char*)"stateful", no_argument, 0, ARG_STATEFUL},
{(char*)"prewidth", required_argument, 0, ARG_PREFETCH_WIDTH},
{(char*)"ff", no_argument, 0, ARG_FF},
{(char*)"fr", no_argument, 0, ARG_FR},
{(char*)"rf", no_argument, 0, ARG_RF},
{(char*)"mixthresh", required_argument, 0, 'x'},
{(char*)"pairtries", required_argument, 0, ARG_MIXED_ATTEMPTS},
{(char*)"noreconcile", no_argument, 0, ARG_NO_RECONCILE},
{(char*)"cachelim", required_argument, 0, ARG_CACHE_LIM},
{(char*)"cachesz", required_argument, 0, ARG_CACHE_SZ},
{(char*)"nofw", no_argument, 0, ARG_NO_FW},
{(char*)"norc", no_argument, 0, ARG_NO_RC},
{(char*)"offbase", required_argument, 0, 'B'},
{(char*)"tryhard", no_argument, 0, 'y'},
{(char*)"skip", required_argument, 0, 's'},
{(char*)"strandfix", no_argument, 0, ARG_STRAND_FIX},
{(char*)"stats", no_argument, 0, ARG_STATS},
{(char*)"12", required_argument, 0, ARG_ONETWO},
{(char*)"phred33-quals", no_argument, 0, ARG_PHRED33},
{(char*)"phred64-quals", no_argument, 0, ARG_PHRED64},
{(char*)"solexa1.3-quals", no_argument, 0, ARG_PHRED64},
{(char*)"chunkmbs", required_argument, 0, ARG_CHUNKMBS},
{(char*)"chunksz", required_argument, 0, ARG_CHUNKSZ},
{(char*)"chunkverbose", no_argument, 0, ARG_CHUNKVERBOSE},
{(char*)"mm", no_argument, 0, ARG_MM},
{(char*)"shmem", no_argument, 0, ARG_SHMEM},
{(char*)"mmsweep", no_argument, 0, ARG_MMSWEEP},
{(char*)"pev2", no_argument, 0, ARG_PEV2},
{(char*)"reportse", no_argument, 0, ARG_REPORTSE},
{(char*)"hadoopout", no_argument, 0, ARG_HADOOPOUT},
{(char*)"fullref", no_argument, 0, ARG_FULLREF},
{(char*)"usage", no_argument, 0, ARG_USAGE},
{(char*)"sam", no_argument, 0, 'S'},
{(char*)"sam-no-qname-trunc", no_argument, 0, ARG_SAM_NO_QNAME_TRUNC},
{(char*)"sam-nohead", no_argument, 0, ARG_SAM_NOHEAD},
{(char*)"sam-nosq", no_argument, 0, ARG_SAM_NOSQ},
{(char*)"sam-noSQ", no_argument, 0, ARG_SAM_NOSQ},
{(char*)"sam-RG", required_argument, 0, ARG_SAM_RG},
{(char*)"suppress", required_argument, 0, ARG_SUPPRESS_FIELDS},
{(char*)"mapq", required_argument, 0, ARG_DEFAULT_MAPQ},
{(char*)"cost", no_argument, 0, ARG_COST},
{(char*)"showseed", no_argument, 0, ARG_SHOWSEED},
{(char*)"allow-contain",no_argument, 0, ARG_ALLOW_CONTAIN},
{(char*)"wrapper", required_argument, 0, ARG_WRAPPER},
{(char*)"interleaved", required_argument, 0, ARG_INTERLEAVED_FASTQ},
{(char*)"no-unal", no_argument, 0, ARG_SAM_NO_UNAL},
{(char*)"thread-ceiling",required_argument, 0, ARG_THREAD_CEILING},
{(char*)"thread-piddir", required_argument, 0, ARG_THREAD_PIDDIR},
{(char*)"reorder", no_argument, 0, ARG_REORDER_SAM},
{(char*)0, 0, 0, 0} // terminator
};
/**
* Print a summary usage message to the provided output stream.
*/
static void printUsage(ostream& out) {
#ifdef BOWTIE_64BIT_INDEX
string tool_name = "bowtie-align-l";
#else
string tool_name = "bowtie-align-s";
#endif
if(wrapper == "basic-0") {
tool_name = "bowtie";
}
out << "Usage: " << endl
<< tool_name << " [options]* -x <ebwt> {-1 <m1> -2 <m2> | --12 <r> | --interleaved <i> | <s>} [<hit>]" << endl
<< endl
<< " <ebwt> Index filename prefix (minus trailing .X." + gEbwt_ext + ")." << endl
<< " <m1> Comma-separated list of files containing upstream mates (or the" << endl
<< " sequences themselves, if -c is set) paired with mates in <m2>" << endl
<< " <m2> Comma-separated list of files containing downstream mates (or the" << endl
<< " sequences themselves if -c is set) paired with mates in <m1>" << endl
<< " <r> Comma-separated list of files containing Crossbow-style reads. Can be" << endl
<< " a mixture of paired and unpaired. Specify \"-\" for stdin." << endl
<< " <i> Files with interleaved paired-end FASTQ reads." << endl
<< " <s> Comma-separated list of files containing unpaired reads, or the" << endl
<< " sequences themselves, if -c is set. Specify \"-\" for stdin." << endl
<< " <hit> File to write hits to (default: stdout)" << endl
<< "Input:" << endl
<< " -q query input files are FASTQ .fq/.fastq (default)" << endl
<< " -f query input files are (multi-)FASTA .fa/.mfa" << endl
<< " -F k:<int>,i:<int> query input files are continuous FASTA where reads" << endl
<< " are substrings (k-mers) extracted from a FASTA file <s>" << endl
<< " and aligned at offsets 1, 1+i, 1+2i ... end of reference" << endl
<< " -r query input files are raw one-sequence-per-line" << endl
<< " -c query sequences given on cmd line (as <mates>, <singles>)" << endl
<< " -Q/--quals <file> QV file(s) corresponding to CSFASTA inputs; use with -f -C" << endl
<< " --Q1/--Q2 <file> same as -Q, but for mate files 1 and 2 respectively" << endl
<< " -s/--skip <int> skip the first <int> reads/pairs in the input" << endl
<< " -u/--qupto <int> stop after first <int> reads/pairs (excl. skipped reads)" << endl
<< " -5/--trim5 <int> trim <int> bases from 5' (left) end of reads" << endl
<< " -3/--trim3 <int> trim <int> bases from 3' (right) end of reads" << endl
<< " --phred33-quals input quals are Phred+33 (default)" << endl
<< " --phred64-quals input quals are Phred+64 (same as --solexa1.3-quals)" << endl
<< " --solexa-quals input quals are from GA Pipeline ver. < 1.3" << endl
<< " --solexa1.3-quals input quals are from GA Pipeline ver. >= 1.3" << endl
<< " --integer-quals qualities are given as space-separated integers (not ASCII)" << endl;
if(wrapper == "basic-0") {
out << " --large-index force usage of a 'large' index, even if a small one is present" << endl;
}
out << "Alignment:" << endl
<< " -v <int> report end-to-end hits w/ <=v mismatches; ignore qualities" << endl
<< " or" << endl
<< " -n/--seedmms <int> max mismatches in seed (can be 0-3, default: -n 2)" << endl
<< " -e/--maqerr <int> max sum of mismatch quals across alignment for -n (def: 70)" << endl
<< " -l/--seedlen <int> seed length for -n (default: 28)" << endl
<< " --nomaqround disable Maq-like quality rounding for -n (nearest 10 <= 30)" << endl
<< " -I/--minins <int> minimum insert size for paired-end alignment (default: 0)" << endl
<< " -X/--maxins <int> maximum insert size for paired-end alignment (default: 250)" << endl
<< " --fr/--rf/--ff -1, -2 mates align fw/rev, rev/fw, fw/fw (default: --fr)" << endl
<< " --nofw/--norc do not align to forward/reverse-complement reference strand" << endl
<< " --maxbts <int> max # backtracks for -n 2/3 (default: 125, 800 for --best)" << endl
<< " --pairtries <int> max # attempts to find mate for anchor hit (default: 100)" << endl
<< " -y/--tryhard try hard to find valid alignments, at the expense of speed" << endl
<< " --chunkmbs <int> max megabytes of RAM for best-first search frames (def: 64)" << endl
<< " --reads-per-batch # of reads to read from input file at once (default: 16)" << endl
<< "Reporting:" << endl
<< " -k <int> report up to <int> good alignments per read (default: 1)" << endl
<< " -a/--all report all alignments per read (much slower than low -k)" << endl
<< " -m <int> suppress all alignments if > <int> exist (def: no limit)" << endl
<< " -M <int> like -m, but reports 1 random hit (MAPQ=0); requires --best" << endl
<< " --best hits guaranteed best stratum; ties broken by quality" << endl
<< " --strata hits in sub-optimal strata aren't reported (requires --best)" << endl
<< "Output:" << endl
<< " -t/--time print wall-clock time taken by search phases" << endl
<< " -B/--offbase <int> leftmost ref offset = <int> in bowtie output (default: 0)" << endl
<< " --quiet print nothing but the alignments" << endl
<< " --refidx refer to ref. seqs by 0-based index rather than name" << endl
<< " --al <fname> write aligned reads/pairs to file(s) <fname>" << endl
<< " --un <fname> write unaligned reads/pairs to file(s) <fname>" << endl
<< " --no-unal suppress SAM records for unaligned reads" << endl
<< " --max <fname> write reads/pairs over -m limit to file(s) <fname>" << endl
<< " --suppress <cols> suppresses given columns (comma-delim'ed) in default output" << endl
<< " --fullref write entire ref name (default: only up to 1st space)" << endl
<< "SAM:" << endl
<< " -S/--sam write hits in SAM format" << endl
<< " --mapq <int> default mapping quality (MAPQ) to print for SAM alignments" << endl
<< " --sam-nohead supppress header lines (starting with @) for SAM output" << endl
<< " --sam-nosq supppress @SQ header lines for SAM output" << endl
<< " --sam-RG <text> add <text> (usually \"lab=value\") to @RG line of SAM header" << endl
<< "Performance:" << endl
<< " -o/--offrate <int> override offrate of index; must be >= index's offrate" << endl
<< " -p/--threads <int> number of alignment threads to launch (default: 1)" << endl
#ifdef BOWTIE_MM
<< " --mm use memory-mapped I/O for index; many 'bowtie's can share" << endl
#endif
#ifdef BOWTIE_SHARED_MEM
<< " --shmem use shared mem for index; many 'bowtie's can share" << endl
#endif
<< "Other:" << endl
<< " --seed <int> seed for random number generator" << endl
<< " --verbose verbose output (for debugging)" << endl
<< " --version print version information and quit" << endl
<< " -h/--help print this usage message" << endl
;
if(wrapper.empty()) {
cerr << endl
<< "*** Warning ***" << endl
<< tool_name << " was run directly. It is recommended that you run the wrapper script 'bowtie' instead." << endl
<< endl;
}
}
/**
* Parse an int out of optarg and enforce that it be at least 'lower';
* if it is less than 'lower', than output the given error message and
* exit with an error and a usage message.
*/
static int parseInt(int lower, int upper, const char *errmsg, const char *arg) {
long l;
char *endPtr= NULL;
l = strtol(arg, &endPtr, 10);
if (endPtr != NULL) {
if (l < lower || l > upper) {
cerr << errmsg << endl;
printUsage(cerr);
throw 1;
}
return (int32_t)l;
}
cerr << errmsg << endl;
printUsage(cerr);
throw 1;
return -1;
}
/**
* Parse from optarg by default.
*/
static int parseInt(int lower, const char *errmsg) {
return parseInt(lower, INT_MAX, errmsg, optarg);
}
/**
* Upper is INT_MAX by default.
*/
static int parseInt(int lower, const char *errmsg, const char *arg) {
return parseInt(lower, INT_MAX, errmsg, arg);
}
/**
* Upper is INT_MAX, parse from optarg by default.
*/
static int parseInt(int lower, int upper, const char *errmsg) {
return parseInt(lower, upper, errmsg, optarg);
}
/**
* Parse a T string 'str'.
*/
template<typename T>
T parse(const char *s) {
T tmp;
stringstream ss(s);
ss >> tmp;
return tmp;
}
/**
* Parse a pair of Ts from a string, 'str', delimited with 'delim'.
*/
template<typename T>
pair<T, T> parsePair(const char *str, char delim) {
string s(str);
EList<string> ss;
tokenize(s, delim, ss);
pair<T, T> ret;
ret.first = parse<T>(ss[0].c_str());
ret.second = parse<T>(ss[1].c_str());
return ret;
}
/**
* Read command-line arguments
*/
static void parseOptions(int argc, const char **argv) {
int option_index = 0;
int next_option;
if(startVerbose) { cerr << "Parsing options: "; logTime(cerr, true); }
do {
next_option = getopt_long(
argc, const_cast<char**>(argv),
short_options, long_options, &option_index);
switch (next_option) {
case ARG_WRAPPER: wrapper = optarg; break;
case '1': tokenize(optarg, ",", mates1); break;
case '2': tokenize(optarg, ",", mates2); break;
case ARG_ONETWO: tokenize(optarg, ",", mates12); format = TAB_MATE; break;
case ARG_INTERLEAVED_FASTQ: tokenize(optarg, ",", mates12); format = INTERLEAVED; break;
case 'f': format = FASTA; break;
case 'F': {
format = FASTA_CONT;
pair<size_t, size_t> p = parsePair<size_t>(optarg, ',');
fastaContLen = p.first;
fastaContFreq = p.second;
break;
}
case 'q': format = FASTQ; break;
case 'r': format = RAW; break;
case 'c': format = CMDLINE; break;
case 'I':
minInsert = (uint32_t)parseInt(0, "-I arg must be positive");
break;
case 'X':
maxInsert = (uint32_t)parseInt(1, "-X arg must be at least 1");
break;
case 'x':
ebwtFile = optarg;
break;
case 's':
skipReads = (uint32_t)parseInt(0, "-s arg must be positive");
break;
case ARG_FF: mate1fw = true; mate2fw = true; mateFwSet = true; break;
case ARG_RF: mate1fw = false; mate2fw = true; mateFwSet = true; break;
case ARG_FR: mate1fw = true; mate2fw = false; mateFwSet = true; break;
case ARG_RANGE: rangeMode = true; break;
case 'S': outType = OUTPUT_SAM; break;
case ARG_SHMEM: useShmem = true; break;
case ARG_SHOWSEED: showSeed = true; break;
case ARG_ALLOW_CONTAIN: gAllowMateContainment = true; break;
case ARG_SUPPRESS_FIELDS: {
EList<string> supp;
tokenize(optarg, ",", supp);
for(size_t i = 0; i < supp.size(); i++) {
int ii = parseInt(1, "--suppress arg must be at least 1", supp[i].c_str());
suppressOuts.set(ii-1);
}
break;
}
case ARG_MM: {
#ifdef BOWTIE_MM
useMm = true;
break;
#else
cerr << "Memory-mapped I/O mode is disabled because bowtie was not compiled with" << endl
<< "BOWTIE_MM defined. Memory-mapped I/O is not supported under Windows. If you" << endl
<< "would like to use memory-mapped I/O on a platform that supports it, please" << endl
<< "refrain from specifying BOWTIE_MM=0 when compiling Bowtie." << endl;
throw 1;
#endif
}
case ARG_MMSWEEP: mmSweep = true; break;
case ARG_HADOOPOUT: hadoopOut = true; break;
case ARG_AL: dumpAlBase = optarg; break;
case ARG_UN: dumpUnalBase = optarg; break;
case ARG_MAXDUMP: dumpMaxBase = optarg; break;
case ARG_SOLEXA_QUALS: solexaQuals = true; break;
case ARG_integerQuals: integerQuals = true; break;
case ARG_PHRED64: phred64Quals = true; break;
case ARG_PHRED33: solexaQuals = false; phred64Quals = false; break;
case ARG_NOMAQROUND: noMaqRound = true; break;
case ARG_REFIDX: noRefNames = true; break;
case ARG_STATEFUL: stateful = true; break;
case ARG_REPORTSE: reportSe = true; break;
case ARG_FULLREF: fullRef = true; break;
case ARG_PREFETCH_WIDTH:
prefetchWidth = parseInt(1, "--prewidth must be at least 1");
break;
case 'B':
offBase = parseInt(-999999, "-B/--offbase cannot be a large negative number");
break;
case ARG_SEED:
seed = parseInt(0, "--seed arg must be at least 0");
break;
case 'u':
qUpto = (uint32_t)parseInt(1, "-u/--qupto arg must be at least 1");
break;
case 'k':
khits = (uint32_t)parseInt(1, "-k arg must be at least 1");
break;
case 'Q':
tokenize(optarg, ",", qualities);
integerQuals = true;
break;
case ARG_QUALS1:
tokenize(optarg, ",", qualities1);
integerQuals = true;
break;
case ARG_QUALS2:
tokenize(optarg, ",", qualities2);
integerQuals = true;
break;
case 'M':
sampleMax = true;
case 'm':
mhits = (uint32_t)parseInt(1, "-m arg must be at least 1");
break;
case 'z':
mixedThresh = (uint32_t)parseInt(0, "-x arg must be at least 0");
break;
case ARG_MIXED_ATTEMPTS:
mixedAttemptLim = (uint32_t)parseInt(1, "--pairtries arg must be at least 1");
break;
case ARG_CACHE_LIM:
cacheLimit = (uint32_t)parseInt(1, "--cachelim arg must be at least 1");
break;
case ARG_CACHE_SZ:
cacheSize = (uint32_t)parseInt(1, "--cachesz arg must be at least 1");
cacheSize *= (1024 * 1024); // convert from MB to B
break;
case ARG_NO_RECONCILE:
dontReconcileMates = true;
break;
case 'p':
nthreads = parseInt(1, "-p/--threads arg must be at least 1");
break;
case ARG_THREAD_CEILING:
thread_ceiling = parseInt(0, "--thread-ceiling must be at least 0");
break;
case ARG_THREAD_PIDDIR:
thread_stealing_dir = optarg;
break;
case ARG_REORDER_SAM:
reorder = true;
break;
case ARG_FILEPAR:
fileParallel = true;
break;
case 'v':
maqLike = 0;
mismatches = parseInt(0, 3, "-v arg must be at least 0 and at most 3");
break;
case '3': trim3 = parseInt(0, "-3/--trim3 arg must be at least 0"); break;
case '5': trim5 = parseInt(0, "-5/--trim5 arg must be at least 0"); break;
case 'o': offRate = parseInt(1, "-o/--offrate arg must be at least 1"); break;
case ARG_ISARATE: isaRate = parseInt(0, "--isarate arg must be at least 0"); break;
case 'e': qualThresh = parseInt(1, "-e/--err arg must be at least 1"); break;
case 'n': seedMms = parseInt(0, 3, "-n/--seedmms arg must be at least 0 and at most 3"); maqLike = 1; break;
case 'l': seedLen = parseInt(5, "-l/--seedlen arg must be at least 5"); break;
case 'h': printUsage(cout); throw 0; break;
case ARG_USAGE: printUsage(cout); throw 0; break;
case 'a': allHits = true; break;
case 'y': tryHard = true; break;
case ARG_CHUNKMBS: chunkPoolMegabytes = parseInt(1, "--chunkmbs arg must be at least 1"); break;
case ARG_CHUNKSZ: chunkSz = parseInt(1, "--chunksz arg must be at least 1"); break;
case ARG_CHUNKVERBOSE: chunkVerbose = true; break;
case ARG_BETTER: stateful = true; better = true; break;
case ARG_BEST: stateful = true; useV1 = false; break;
case ARG_STRATA: strata = true; break;
case ARG_VERBOSE: verbose = true; break;
case ARG_STARTVERBOSE: startVerbose = true; break;
case ARG_QUIET: quiet = true; break;
case ARG_SANITY: sanityCheck = true; break;
case 't': timing = true; break;
case ARG_NO_FW: nofw = true; break;
case ARG_NO_RC: norc = true; break;
case ARG_STATS: stats = true; break;
case ARG_PEV2: useV1 = false; break;
case ARG_SAM_NO_QNAME_TRUNC: samNoQnameTrunc = true; break;
case ARG_SAM_NOHEAD: samNoHead = true; break;
case ARG_SAM_NOSQ: samNoSQ = true; break;
case ARG_SAM_NO_UNAL: noUnal = true; break;
case ARG_SAM_RG: {
if(!rgs.empty()) rgs += '\t';
rgs += optarg;
break;
}
case ARG_COST: printCost = true; break;
case ARG_DEFAULT_MAPQ:
defaultMapq = parseInt(0, "--mapq must be positive");
break;
case ARG_MAXBTS: {
maxBts = parseInt(0, "--maxbts must be positive");
maxBtsBetter = maxBts;
break;
}
case ARG_STRAND_FIX: strandFix = true; break;
case ARG_PARTITION: partitionSz = parse<int>(optarg); break;
case ARG_READS_PER_BATCH: {
if(optarg == NULL || parse<int>(optarg) < 1) {
cerr << "--reads-per-batch arg must be at least 1" << endl;
printUsage(cerr);
throw 1;
}
// TODO: should output batch size be controlled separately?
readsPerBatch = outBatchSz = parse<int>(optarg);
break;
}
case ARG_ORIG:
if(optarg == NULL || strlen(optarg) == 0) {
cerr << "--orig arg must be followed by a string" << endl;
printUsage(cerr);
throw 1;
}
origString = optarg;
break;
case -1: break; /* Done with options. */
case 0:
if (long_options[option_index].flag != 0)
break;
default:
printUsage(cerr);
throw 1;
}
} while(next_option != -1);
if (nthreads == 1 && !thread_stealing) {
reorder = false;
}
if (reorder == true && outType != OUTPUT_SAM) {
cerr << "Bowtie will reorder its output only when outputting SAM." << endl
<< "Please specify the `-S` parameter if you intend on using this option." << endl;
throw 1;
}
//bool paired = mates1.size() > 0 || mates2.size() > 0 || mates12.size() > 0;
if(rangeMode) {
// Tell the Ebwt loader to ignore the suffix-array portion of
// the index. We don't need it because the user isn't asking
// for bowtie to report reference positions (just matrix
// ranges).
offRate = 32;
}
if(!maqLike && mismatches == 3) {
// Much faster than normal 3-mismatch mode
stateful = true;
}
if(mates1.size() != mates2.size()) {
cerr << "Error: " << mates1.size() << " mate files/sequences were specified with -1, but " << mates2.size() << endl
<< "mate files/sequences were specified with -2. The same number of mate files/" << endl
<< "sequences must be specified with -1 and -2." << endl;
throw 1;
}
// Check for duplicate mate input files
if(format != CMDLINE) {
for(size_t i = 0; i < mates1.size(); i++) {
for(size_t j = 0; j < mates2.size(); j++) {
if(mates1[i] == mates2[j] && !quiet) {
cerr << "Warning: Same mate file \"" << mates1[i] << "\" appears as argument to both -1 and -2" << endl;
}
}
}
}
if(tryHard) {
// Increase backtracking limit to huge number
maxBts = maxBtsBetter = INT_MAX;
// Increase number of paired-end scan attempts to huge number
mixedAttemptLim = UINT_MAX;
}
if(!stateful && sampleMax) {
if(!quiet) {
cerr << "Warning: -M was specified w/o --best; automatically enabling --best" << endl;
}
stateful = true;
}
if(strata && !stateful) {
cerr << "--strata must be combined with --best" << endl;
throw 1;
}
if(strata && !allHits && khits == 1 && mhits == 0xffffffff) {
cerr << "--strata has no effect unless combined with -m, -a, or -k N where N > 1" << endl;
throw 1;
}
// If both -s and -u are used, we need to adjust qUpto accordingly
// since it uses patid to know if we've reached the -u limit (and
// patids are all shifted up by skipReads characters)
if(qUpto + skipReads > qUpto) {
qUpto += skipReads;
}
if(useShmem && useMm && !quiet) {
cerr << "Warning: --shmem overrides --mm..." << endl;
useMm = false;
}
if(!mateFwSet) {
// Set nucleotide space default (--fr)
mate1fw = true;
mate2fw = false;
}
if(outType != OUTPUT_FULL && suppressOuts.count() > 0 && !quiet) {
cerr << "Warning: Ignoring --suppress because output type is not default." << endl;
cerr << " --suppress is only available for the default output type." << endl;
suppressOuts.clear();
}
thread_stealing = thread_ceiling > nthreads;
#ifdef _WIN32
thread_stealing = false;
#endif
if(thread_stealing && thread_stealing_dir.empty()) {
cerr << "When --thread-ceiling is specified, must also specify --thread-piddir" << endl;
throw 1;
}
}
static const char *argv0 = NULL;
#define FINISH_READ(p) \
/* Don't do finishRead if the read isn't legit or if the read was skipped by the doneMask */ \
if(get_read_ret.first) { \
sink->finishRead(*p, true, !skipped); \
get_read_ret.first = false; \
} \
skipped = false;
/// Macro for getting the next read, possibly aborting depending on
/// whether the result is empty or the patid exceeds the limit, and
/// marshaling the read into convenient variables.
#define GET_READ(p) \
if(get_read_ret.second) break; \
get_read_ret = p->nextReadPair(); \
if(p->rdid() >= qUpto) { \
get_read_ret = make_pair(false, true); \
} \
if(!get_read_ret.first) { \
if(get_read_ret.second) { \
break; \
} \
continue; \
} \
BTDnaString& patFw = p->bufa().patFw; \
patFw.length(); \
BTDnaString& patRc = p->bufa().patRc; \
patRc.length(); \
BTString& qual = p->bufa().qual; \
qual.length(); \
BTString& qualRev = p->bufa().qualRev; \
qualRev.length(); \
BTDnaString& patFwRev = p->bufa().patFwRev; \
patFwRev.length(); \
BTDnaString& patRcRev = p->bufa().patRcRev; \
patRcRev.length(); \
BTString& name = p->bufa().name; \
name.length(); \
uint32_t patid = (uint32_t)p->rdid(); \
params.setPatId(patid);
#define WORKER_EXIT() \
patsrcFact->destroy(patsrc); \
delete patsrcFact; \
sinkFact->destroy(sink); \
delete sinkFact; \
return;
#ifdef CHUD_PROFILING
#define CHUD_START() chudStartRemotePerfMonitor("Bowtie");
#define CHUD_STOP() chudStopRemotePerfMonitor();
#else
#define CHUD_START()
#define CHUD_STOP()
#endif
/// Create a PatternSourcePerThread for the current thread according
/// to the global params and return a pointer to it
static PatternSourcePerThreadFactory*
createPatsrcFactory(PatternComposer& _patsrc, int tid, uint32_t max_buf) {
PatternSourcePerThreadFactory *patsrcFact;
patsrcFact = new PatternSourcePerThreadFactory(_patsrc, max_buf, skipReads, seed);
assert(patsrcFact != NULL);
return patsrcFact;
}
/**
* Allocate a HitSinkPerThreadFactory on the heap according to the
* global params and return a pointer to it.
*/
static HitSinkPerThreadFactory*
createSinkFactory(HitSink& _sink, size_t threadId) {
HitSinkPerThreadFactory *sink = NULL;
if(!strata) {
// Unstratified
if(!allHits) {
// First N good; "good" inherently ignores strata
sink = new NGoodHitSinkPerThreadFactory(_sink, khits, mhits, defaultMapq, threadId);
} else {
// All hits, spanning strata
sink = new AllHitSinkPerThreadFactory(_sink, mhits, defaultMapq, threadId);
}
} else {
// Stratified
assert(stateful);
if(!allHits) {
assert(stateful);
// Buffer best hits, assuming they're arriving in best-
// to-worst order
sink = new NBestFirstStratHitSinkPerThreadFactory(_sink, khits, mhits, defaultMapq, threadId);
} else {
assert(stateful);
// Buffer best hits, assuming they're arriving in best-
// to-worst order
sink = new NBestFirstStratHitSinkPerThreadFactory(_sink, 0xffffffff/2, mhits, defaultMapq, threadId);
}
}
assert(sink != NULL);
return sink;
}
void increment_thread_counter() {
#if (__cplusplus >= 201103)
thread_counter.fetch_add(1);
#else
ThreadSafe ts(&thread_counter_mutex);
thread_counter++;
#endif
}
void decrement_thread_counter() {
#if (__cplusplus >= 201103)
thread_counter.fetch_sub(1);
#else
ThreadSafe ts(&thread_counter_mutex);
thread_counter--;
#endif
}
#ifndef _WIN32
void del_pid(const char* dirname,int pid) {
struct stat finfo;
char* fname = (char*) calloc(FNAME_SIZE,sizeof(char));
sprintf(fname,"%s/%d",dirname,pid);
if(stat( fname, &finfo) != 0) {
free(fname);
return;
}
unlink(fname);
free(fname);
}
//from http://stackoverflow.com/questions/18100097/portable-way-to-check-if-directory-exists-windows-linux-c
static void write_pid(const char* dirname,int pid) {
struct stat dinfo;
if(stat(dirname, &dinfo) != 0) {
mkdir(dirname,0755);
}
char* fname = (char*) calloc(FNAME_SIZE,sizeof(char));
sprintf(fname,"%s/%d",dirname,pid);
FILE* f = fopen(fname,"w");
fclose(f);
free(fname);
}
//from http://stackoverflow.com/questions/612097/how-can-i-get-the-list-of-files-in-a-directory-using-c-or-c
static int read_dir(const char* dirname,int* num_pids) {
DIR *dir;
struct dirent *ent;
char* fname = (char*) calloc(FNAME_SIZE,sizeof(char));
int lowest_pid = -1;
if ((dir = opendir (dirname)) != NULL) {
while ((ent = readdir (dir)) != NULL) {
if(ent->d_name[0] == '.')
continue;
int pid = atoi(ent->d_name);
sprintf(fname,"/proc/%s", ent->d_name);
if(kill(pid, 0) != 0) {
//deleting pids can lead to race conditions if
//2 or more BT2 processes both try to delete
//so just skip instead
//del_pid(dirname,pid);
continue;
}
(*num_pids)++;
if(pid < lowest_pid || lowest_pid == -1)
lowest_pid = pid;
}
closedir (dir);
} else {
perror (""); // could not open directory
}
free(fname);
return lowest_pid;
}
static bool steal_thread(int pid, int orig_nthreads) {
int ncpu = thread_ceiling;
if(thread_ceiling <= nthreads) {
return false;
}
int num_pids = 0;
int lowest_pid = read_dir(thread_stealing_dir.c_str(), &num_pids);
if(lowest_pid != pid) {
return false;
}
int in_use = ((num_pids-1) * orig_nthreads) + nthreads; //in_use is now baseline + ours
float spare = ncpu - in_use;
int spare_r = floor(spare);
float r = rand() % 100/100.0;
if(r <= (spare - spare_r)) {
spare_r = ceil(spare);
}
return spare_r > 0;
}
#endif
/**
* Search through a single (forward) Ebwt index for exact end-to-end
* hits. Assumes that index is already loaded into memory.
*/
static PatternComposer* exactSearch_patsrc;
static HitSink* exactSearch_sink;
static Ebwt* exactSearch_ebwt;
static EList<BTRefString>* exactSearch_os;
static BitPairReference* exactSearch_refs;
#if (__cplusplus >= 201103L)
//void exactSearchWorker::operator()() const {
static void exactSearchWorker(void *vp) {
thread_tracking_pair *p = (thread_tracking_pair*) vp;
int tid = p->tid;
#else
static void exactSearchWorker(void *vp) {
int tid = *((int*)vp);
#endif
if(thread_stealing) {
increment_thread_counter();
}
PatternComposer& _patsrc = *exactSearch_patsrc;
HitSink& _sink = *exactSearch_sink;
Ebwt& ebwt = *exactSearch_ebwt;
EList<BTRefString >& os = *exactSearch_os;
// Per-thread initialization
PatternSourcePerThreadFactory *patsrcFact = createPatsrcFactory(_patsrc, tid, readsPerBatch);
PatternSourcePerThread *patsrc = patsrcFact->create();
HitSinkPerThreadFactory* sinkFact = createSinkFactory(_sink, tid);
HitSinkPerThread* sink = sinkFact->create();
EbwtSearchParams params(
*sink, // HitSink
os, // reference sequences
true, // read is forward
true); // index is forward
GreedyDFSRangeSource bt(
&ebwt, params,
0xffffffff, // qualThresh
0xffffffff, // max backtracks (no max)
0, // reportPartials (don't)
true, // reportExacts
rangeMode, // reportRanges
NULL, // seedlings
NULL, // mutations
verbose, // verbose
&os,
false); // considerQuals
pair<bool, bool> get_read_ret = make_pair(false, false);
bool skipped = false;
#ifdef PER_THREAD_TIMING
uint64_t ncpu_changeovers = 0;
uint64_t nnuma_changeovers = 0;
int current_cpu = 0, current_node = 0;
get_cpu_and_node(current_cpu, current_node);
std::stringstream ss;
std::string msg;
ss << "thread: " << tid << " time: ";
msg = ss.str();
{
Timer timer(std::cout, msg.c_str());
#endif
while(true) {
#ifdef PER_THREAD_TIMING
int cpu = 0, node = 0;
get_cpu_and_node(cpu, node);
if(cpu != current_cpu) {
ncpu_changeovers++;
current_cpu = cpu;
}
if(node != current_node) {
nnuma_changeovers++;
current_node = node;
}
#endif
FINISH_READ(patsrc);
GET_READ(patsrc);
#include "search_exact.c"
}
FINISH_READ(patsrc);
if(thread_stealing) {
decrement_thread_counter();
}
#ifdef PER_THREAD_TIMING
ss.str("");
ss.clear();
ss << "thread: " << tid << " cpu_changeovers: " << ncpu_changeovers << std::endl
<< "thread: " << tid << " node_changeovers: " << nnuma_changeovers << std::endl;
std::cout << ss.str();
}
#endif
#if (__cplusplus >= 201103L)
p->done->fetch_add(1);
#endif
WORKER_EXIT();
}
/**
* A statefulness-aware worker driver. Uses UnpairedExactAlignerV1.
*/
#if (__cplusplus >= 201103L)
//void exactSearchWorkerStateful::operator()() const {
static void exactSearchWorkerStateful(void *vp) {
thread_tracking_pair *p = (thread_tracking_pair*) vp;
int tid = p->tid;
#else
static void exactSearchWorkerStateful(void *vp) {
int tid = *((int*)vp);
#endif
if(thread_stealing) {
increment_thread_counter();
}
PatternComposer& _patsrc = *exactSearch_patsrc;
HitSink& _sink = *exactSearch_sink;
Ebwt& ebwt = *exactSearch_ebwt;
EList<BTRefString >& os = *exactSearch_os;
BitPairReference* refs = exactSearch_refs;
// Global initialization
PatternSourcePerThreadFactory* patsrcFact = createPatsrcFactory(_patsrc, tid, readsPerBatch);
HitSinkPerThreadFactory* sinkFact = createSinkFactory(_sink, tid);
ChunkPool *pool = new ChunkPool(chunkSz * 1024, chunkPoolMegabytes * 1024 * 1024, chunkVerbose);
UnpairedExactAlignerV1Factory alSEfact(
ebwt,
!nofw,
!norc,
_sink,
*sinkFact,
NULL, //&cacheFw,
NULL, //&cacheBw,
cacheLimit,
pool,
refs,
os,
!noMaqRound,
!better,
strandFix,
rangeMode,
verbose,
quiet,
seed);
PairedExactAlignerV1Factory alPEfact(
ebwt,
!nofw,
!norc,
useV1,
_sink,
*sinkFact,
mate1fw,
mate2fw,
minInsert,
maxInsert,
dontReconcileMates,
mhits, // for symCeiling
mixedThresh,
mixedAttemptLim,
NULL, //&cacheFw,
NULL, //&cacheBw,
cacheLimit,
pool,
refs, os,
reportSe,
!noMaqRound,
strandFix,
!better,
rangeMode,
verbose,
quiet,
seed);
{
MixedMultiAligner multi(
prefetchWidth,
qUpto,
alSEfact,
alPEfact,
*patsrcFact);
// Run that mother
multi.run(false, tid);
// MultiAligner must be destroyed before patsrcFact
}
if(thread_stealing) {
decrement_thread_counter();
}
delete patsrcFact;
delete sinkFact;
delete pool;
#if (__cplusplus >= 201103L)
p->done->fetch_add(1);
#endif
return;
}
#define SET_A_FW(bt, p, params) \
bt.setQuery(&p->bufa().patFw, &p->bufa().qual, &p->bufa().name); \
params.setFw(true);
#define SET_A_RC(bt, p, params) \
bt.setQuery(&p->bufa().patRc, &p->bufa().qualRev, &p->bufa().name); \
params.setFw(false);
#define SET_B_FW(bt, p, params) \
bt.setQuery(&p->bufb().patFw, &p->bufb().qual, &p->bufb().name); \
params.setFw(true);
#define SET_B_RC(bt, p, params) \
bt.setQuery(&p->bufb().patRc, &p->bufb().qualRev, &p->bufb().name); \
params.setFw(false);
/**
* Search through a single (forward) Ebwt index for exact end-to-end
* hits. Assumes that index is already loaded into memory.
*/
static void exactSearch(PatternComposer& _patsrc,
HitSink& _sink,
Ebwt& ebwt,
EList<BTRefString >& os)
{
exactSearch_patsrc = &_patsrc;
exactSearch_sink = &_sink;
exactSearch_ebwt = &ebwt;
exactSearch_os = &os;
assert(!ebwt.isInMemory());
{
// Load the rest of (vast majority of) the backward Ebwt into
// memory
Timer _t(cerr, "Time loading forward index: ", timing);
ebwt.loadIntoMemory(-1, !noRefNames, startVerbose);
}
BitPairReference *refs = NULL;
bool pair = mates1.size() > 0 || mates12.size() > 0;
if((pair && mixedThresh < 0xffffffff)) {
Timer _t(cerr, "Time loading reference: ", timing);
refs = new BitPairReference(adjustedEbwtFileBase, sanityCheck, NULL, &os, false, true, useMm, useShmem, mmSweep, verbose, startVerbose);
if(!refs->loaded()) throw 1;
}
exactSearch_refs = refs;
int tids[max(nthreads, thread_ceiling)];
#if (__cplusplus >= 201103L)
EList<std::thread*> threads;
EList<thread_tracking_pair> tps;
tps.resizeExact(max(nthreads, thread_ceiling));
#else
EList<tthread::thread*> threads;
#endif
#if (__cplusplus >= 201103L)
std::atomic<int> all_threads_done;
all_threads_done = 0;
#endif
CHUD_START();
{
Timer _t(cerr, "Time for 0-mismatch search: ", timing);
#ifndef _WIN32
int pid = 0;
if(thread_stealing) {
pid = getpid();
write_pid(thread_stealing_dir.c_str(), pid);
thread_counter = 0;
}
#endif
for(int i = 0; i < nthreads; i++) {
tids[i] = i;
#if (__cplusplus >= 201103L)
tps[i].tid = tids[i];
tps[i].done = &all_threads_done;
if (i == nthreads - 1) {
if(stateful) {
exactSearchWorkerStateful((void*)&tps[i]);
} else {
exactSearchWorker((void*)&tps[i]);
}
}
else {
if(stateful) {
threads.push_back(new std::thread(exactSearchWorkerStateful, (void*)&tps[i]));
} else {
threads.push_back(new std::thread(exactSearchWorker, (void*)&tps[i]));
}
threads[i]->detach();
SLEEP(10);
}
#else
if (i == nthreads - 1) {
if(stateful) {
exactSearchWorkerStateful((void*)(tids + i));
} else {
exactSearchWorker((void*)(tids + i));
}
}
else {
if(stateful) {
threads.push_back(new tthread::thread(exactSearchWorkerStateful, (void *)(tids + i)));
} else {
threads.push_back(new tthread::thread(exactSearchWorker, (void *)(tids + i)));
}
}
#endif
}
#ifndef _WIN32
if(thread_stealing) {
int orig_threads = nthreads, steal_ctr = 1;
for(int j = 0; j < 10; j++) {
sleep(1);
}
while(thread_counter > 0) {
if(steal_thread(pid, orig_threads)) {
nthreads++;
tids[nthreads-1] = nthreads;
#if (__cplusplus >= 201103L)
tps[nthreads-1].tid = nthreads - 1;
tps[nthreads-1].done = &all_threads_done;
if(stateful) {
threads.push_back(new std::thread(exactSearchWorkerStateful, (void*)&tps[nthreads-1]));
} else {
threads.push_back(new std::thread(exactSearchWorker, (void*)&tps[nthreads-1]));
}
threads[nthreads-1]->detach();
SLEEP(10);
#else
if(stateful) {
threads.push_back(new tthread::thread(exactSearchWorkerStateful, (void *)(tids + nthreads - 1)));
} else {
threads.push_back(new tthread::thread(exactSearchWorker, (void *)(tids + nthreads - 1)));
}
#endif
cerr << "pid " << pid << " started new worker # " << nthreads << endl;
}
steal_ctr++;
for(int j = 0; j < 10; j++) {
sleep(1);
}
}
}
#endif
#if (__cplusplus >= 201103L)
while(all_threads_done < nthreads) {
SLEEP(10);
}
#else
for (int i = 0; i < nthreads - 1; i++) {
threads[i]->join();
}
#endif
#ifndef _WIN32
if(thread_stealing) {
del_pid(thread_stealing_dir.c_str(), pid);
}
#endif
}
if(refs != NULL) delete refs;
for (int i = 0; i < nthreads - 1; i++) {
if (threads[i] != NULL) {
delete threads[i];
}
}
}
/**
* Search through a pair of Ebwt indexes, one for the forward direction
* and one for the backward direction, for exact end-to-end hits and 1-
* mismatch end-to-end hits. In my experience, this is slightly faster
* than Maq (default) mode with the -n 1 option.
*
* Forward Ebwt (ebwtFw) is already loaded into memory and backward
* Ebwt (ebwtBw) is not loaded into memory.
*/
static PatternComposer* mismatchSearch_patsrc;
static HitSink* mismatchSearch_sink;
static Ebwt* mismatchSearch_ebwtFw;
static Ebwt* mismatchSearch_ebwtBw;
static EList<BTRefString >* mismatchSearch_os;
static SyncBitset* mismatchSearch_doneMask;
static SyncBitset* mismatchSearch_hitMask;
static BitPairReference* mismatchSearch_refs;
/**
* A statefulness-aware worker driver. Uses Unpaired/Paired1mmAlignerV1.
*/
#if (__cplusplus >= 201103L)
//void mismatchSearchWorkerFullStateful::operator()() const {
static void mismatchSearchWorkerFullStateful(void *vp) {
thread_tracking_pair *p = (thread_tracking_pair*) vp;
int tid = p->tid;
#else
static void mismatchSearchWorkerFullStateful(void *vp) {
int tid = *((int*)vp);
#endif
if(thread_stealing) {
increment_thread_counter();
}
PatternComposer& _patsrc = *mismatchSearch_patsrc;
HitSink& _sink = *mismatchSearch_sink;
Ebwt& ebwtFw = *mismatchSearch_ebwtFw;
Ebwt& ebwtBw = *mismatchSearch_ebwtBw;
EList<BTRefString >& os = *mismatchSearch_os;
BitPairReference* refs = mismatchSearch_refs;
// Global initialization
PatternSourcePerThreadFactory* patsrcFact = createPatsrcFactory(_patsrc, tid, readsPerBatch);
HitSinkPerThreadFactory* sinkFact = createSinkFactory(_sink, tid);
ChunkPool *pool = new ChunkPool(chunkSz * 1024, chunkPoolMegabytes * 1024 * 1024, chunkVerbose);
Unpaired1mmAlignerV1Factory alSEfact(
ebwtFw,
&ebwtBw,
!nofw,
!norc,
_sink,
*sinkFact,
NULL, //&cacheFw,
NULL, //&cacheBw,
cacheLimit,
pool,
refs,
os,
!noMaqRound,
!better,
strandFix,
rangeMode,
verbose,
quiet,
seed);
Paired1mmAlignerV1Factory alPEfact(
ebwtFw,
&ebwtBw,
!nofw,
!norc,
useV1,
_sink,
*sinkFact,
mate1fw,
mate2fw,
minInsert,
maxInsert,
dontReconcileMates,
mhits, // for symCeiling
mixedThresh,
mixedAttemptLim,
NULL, //&cacheFw,
NULL, //&cacheBw,
cacheLimit,
pool,
refs, os,
reportSe,
!noMaqRound,
!better,
strandFix,
rangeMode,
verbose,
quiet,
seed);
{
MixedMultiAligner multi(
prefetchWidth,
qUpto,
alSEfact,
alPEfact,
*patsrcFact);
// Run that mother
multi.run(false, tid);
// MultiAligner must be destroyed before patsrcFact
}
if(thread_stealing) {
decrement_thread_counter();
}
#if (__cplusplus >= 201103L)
p->done->fetch_add(1);
#endif
delete patsrcFact;
delete sinkFact;
delete pool;
return;
}
#if (__cplusplus >= 201103L)
//void mismatchSearchWorkerFull::operator()() const {
static void mismatchSearchWorkerFull(void *vp){
thread_tracking_pair *p = (thread_tracking_pair*) vp;
int tid = p->tid;
#else
static void mismatchSearchWorkerFull(void *vp){
int tid = *((int*)vp);
#endif
if(thread_stealing) {
increment_thread_counter();
}
PatternComposer& _patsrc = *mismatchSearch_patsrc;
HitSink& _sink = *mismatchSearch_sink;
Ebwt& ebwtFw = *mismatchSearch_ebwtFw;
Ebwt& ebwtBw = *mismatchSearch_ebwtBw;
EList<BTRefString >& os = *mismatchSearch_os;
// Per-thread initialization
PatternSourcePerThreadFactory* patsrcFact = createPatsrcFactory(_patsrc, tid, readsPerBatch);
PatternSourcePerThread* patsrc = patsrcFact->create();
HitSinkPerThreadFactory* sinkFact = createSinkFactory(_sink, tid);
HitSinkPerThread* sink = sinkFact->create();
EbwtSearchParams params(
*sink, // HitSinkPerThread
os, // reference sequences
true, // read is forward
false); // index is mirror index
GreedyDFSRangeSource bt(
&ebwtFw, params,
0xffffffff, // qualThresh
0xffffffff, // max backtracks (no max)
0, // reportPartials (don't)
true, // reportExacts
rangeMode, // reportRanges
NULL, // seedlings
NULL, // mutations
verbose, // verbose
&os,
false); // considerQuals
bool skipped = false;
pair<bool, bool> get_read_ret = make_pair(false, false);
#ifdef PER_THREAD_TIMING
uint64_t ncpu_changeovers = 0;
uint64_t nnuma_changeovers = 0;
int current_cpu = 0, current_node = 0;
get_cpu_and_node(current_cpu, current_node);
std::stringstream ss;
std::string msg;
ss << "thread: " << tid << " time: ";
msg = ss.str();
{
Timer timer(std::cout, msg.c_str());
#endif
while(true) {
#ifdef PER_THREAD_TIMING
int cpu = 0, node = 0;
get_cpu_and_node(cpu, node);
if(cpu != current_cpu) {
ncpu_changeovers++;
current_cpu = cpu;
}
if(node != current_node) {
nnuma_changeovers++;
current_node = node;
}
#endif
FINISH_READ(patsrc);
GET_READ(patsrc);
uint32_t plen = (uint32_t)patFw.length();
uint32_t s = plen;
uint32_t s3 = s >> 1; // length of 3' half of seed
uint32_t s5 = (s >> 1) + (s & 1); // length of 5' half of seed
#define DONEMASK_SET(p)
#include "search_1mm_phase1.c"
#include "search_1mm_phase2.c"
#undef DONEMASK_SET
} // End read loop
FINISH_READ(patsrc);
#ifdef PER_THREAD_TIMING
ss.str("");
ss.clear();
ss << "thread: " << tid << " cpu_changeovers: " << ncpu_changeovers << std::endl
<< "thread: " << tid << " node_changeovers: " << nnuma_changeovers << std::endl;
std::cout << ss.str();
}
#endif
#if (__cplusplus >= 201103L)
p->done->fetch_add(1);
#endif
WORKER_EXIT();
}
/**
* Search through a single (forward) Ebwt index for exact end-to-end
* hits. Assumes that index is already loaded into memory.
*/
static void mismatchSearchFull(PatternComposer& _patsrc,
HitSink& _sink,
Ebwt& ebwtFw,
Ebwt& ebwtBw,
EList<BTRefString >& os)
{
mismatchSearch_patsrc = &_patsrc;
mismatchSearch_sink = &_sink;
mismatchSearch_ebwtFw = &ebwtFw;
mismatchSearch_ebwtBw = &ebwtBw;
mismatchSearch_doneMask = NULL;
mismatchSearch_hitMask = NULL;
mismatchSearch_os = &os;
assert(!ebwtFw.isInMemory());
assert(!ebwtBw.isInMemory());
{
// Load the other half of the index into memory
Timer _t(cerr, "Time loading forward index: ", timing);
ebwtFw.loadIntoMemory(-1, !noRefNames, startVerbose);
}
{
// Load the other half of the index into memory
Timer _t(cerr, "Time loading mirror index: ", timing);
ebwtBw.loadIntoMemory(-1, !noRefNames, startVerbose);
}
// Create range caches, which are shared among all aligners
BitPairReference *refs = NULL;
bool pair = mates1.size() > 0 || mates12.size() > 0;
if(pair && mixedThresh < 0xffffffff) {
Timer _t(cerr, "Time loading reference: ", timing);
refs = new BitPairReference(adjustedEbwtFileBase, sanityCheck, NULL, &os, false, true, useMm, useShmem, mmSweep, verbose, startVerbose);
if(!refs->loaded()) throw 1;
}
mismatchSearch_refs = refs;
int tids[max(nthreads, thread_ceiling)];
#if (__cplusplus >= 201103L)
EList<std::thread*> threads;
EList<thread_tracking_pair> tps;
tps.resizeExact(max(nthreads, thread_ceiling));
#else
EList<tthread::thread*> threads;
#endif
#if (__cplusplus >= 201103L)
std::atomic<int> all_threads_done;
all_threads_done = 0;
#endif
CHUD_START();
{
Timer _t(cerr, "Time for 1-mismatch full-index search: ", timing);
#ifndef _WIN32
int pid = 0;
if(thread_stealing) {
pid = getpid();
write_pid(thread_stealing_dir.c_str(), pid);
thread_counter = 0;
}
#endif
for(int i = 0; i < nthreads; i++) {
tids[i] = i;
#if (__cplusplus >= 201103L)
tps[i].tid = tids[i];
tps[i].done = &all_threads_done;
if (i == nthreads - 1) {
if(stateful) {
mismatchSearchWorkerFullStateful((void*)&tps[i]);
} else {
mismatchSearchWorkerFull((void*)&tps[i]);
}
}
else {
if(stateful) {
threads.push_back(new std::thread(mismatchSearchWorkerFullStateful, (void*)&tps[i]));
} else {
threads.push_back(new std::thread(mismatchSearchWorkerFull, (void*)&tps[i]));
}
threads[i]->detach();
SLEEP(10);
}
#else
if (i == nthreads - 1) {
if(stateful) {
mismatchSearchWorkerFullStateful((void*)(tids + i));
} else {
mismatchSearchWorkerFull((void*)(tids + i));
}
}
else {
if(stateful) {
threads.push_back(new tthread::thread(mismatchSearchWorkerFullStateful, (void *)(tids + i)));
} else {
threads.push_back(new tthread::thread(mismatchSearchWorkerFull, (void *)(tids + i)));
}
}
#endif
}
#ifndef _WIN32
if(thread_stealing) {
int orig_threads = nthreads, steal_ctr = 1;
for(int j = 0; j < 10; j++) {
sleep(1);
}
while(thread_counter > 0) {
if(steal_thread(pid, orig_threads)) {
nthreads++;
tids[nthreads-1] = nthreads;
#if (__cplusplus >= 201103L)
tps[nthreads-1].tid = nthreads - 1;
tps[nthreads-1].done = &all_threads_done;
if(stateful) {
threads.push_back(new std::thread(mismatchSearchWorkerFullStateful, (void*)&tps[nthreads-1]));
} else {
threads.push_back(new std::thread(mismatchSearchWorkerFull, (void*)&tps[nthreads-1]));
}
threads[nthreads - 1]->detach();
SLEEP(10);
#else
if(stateful) {
threads.push_back(new tthread::thread(mismatchSearchWorkerFullStateful, (void *)(tids + nthreads - 1)));
} else {
threads.push_back(new tthread::thread(mismatchSearchWorkerFull, (void *)(tids + nthreads - 1)));
}
#endif
cerr << "pid " << pid << " started new worker # " << nthreads << endl;
}
steal_ctr++;
for(int j = 0; j < 10; j++) {
sleep(1);
}
}
}
#endif
#if (__cplusplus >= 201103L)
while(all_threads_done < nthreads) {
SLEEP(10);
}
#else
for (int i = 0; i < nthreads - 1; i++) {
threads[i]->join();
}
#endif
#ifndef _WIN32
if(thread_stealing) {
del_pid(thread_stealing_dir.c_str(), pid);
}
#endif
}
if(refs != NULL) delete refs;
for (int i = 0; i < nthreads - 1; i++) {
if (threads[i] != NULL) {
delete threads[i];
}
}
}
#define SWITCH_TO_FW_INDEX() { \
/* Evict the mirror index from memory if necessary */ \
if(ebwtBw.isInMemory()) ebwtBw.evictFromMemory(); \
assert(!ebwtBw.isInMemory()); \
/* Load the forward index into memory if necessary */ \
if(!ebwtFw.isInMemory()) { \
Timer _t(cerr, "Time loading forward index: ", timing); \
ebwtFw.loadIntoMemory(-1, !noRefNames, startVerbose); \
} \
assert(ebwtFw.isInMemory()); \
_patsrc.reset(); /* rewind pattern source to first pattern */ \
}
#define SWITCH_TO_BW_INDEX() { \
/* Evict the forward index from memory if necessary */ \
if(ebwtFw.isInMemory()) ebwtFw.evictFromMemory(); \
assert(!ebwtFw.isInMemory()); \
/* Load the forward index into memory if necessary */ \
if(!ebwtBw.isInMemory()) { \
Timer _t(cerr, "Time loading mirror index: ", timing); \
ebwtBw.loadIntoMemory(-1, !noRefNames, startVerbose); \
} \
assert(ebwtBw.isInMemory()); \
_patsrc.reset(); /* rewind pattern source to first pattern */ \
}
#define ASSERT_NO_HITS_FW(ebwtfw) \
if(sanityCheck && os.size() > 0) { \
EList<Hit> hits; \
uint32_t threeRevOff = (seedMms <= 3) ? s : 0; \
uint32_t twoRevOff = (seedMms <= 2) ? s : 0; \
uint32_t oneRevOff = (seedMms <= 1) ? s : 0; \
uint32_t unrevOff = (seedMms == 0) ? s : 0; \
if(hits.size() > 0) { \
/* Print offending hit obtained by oracle */ \
::printHit( \
os, \
hits[0], \
patFw, \
plen, \
unrevOff, \
oneRevOff, \
twoRevOff, \
threeRevOff, \
ebwtfw); /* ebwtFw */ \
} \
assert_eq(0, hits.size()); \
}
#define ASSERT_NO_HITS_RC(ebwtfw) \
if(sanityCheck && os.size() > 0) { \
EList<Hit> hits; \
uint32_t threeRevOff = (seedMms <= 3) ? s : 0; \
uint32_t twoRevOff = (seedMms <= 2) ? s : 0; \
uint32_t oneRevOff = (seedMms <= 1) ? s : 0; \
uint32_t unrevOff = (seedMms == 0) ? s : 0; \
if(hits.size() > 0) { \
/* Print offending hit obtained by oracle */ \
::printHit( \
os, \
hits[0], \
patRc, \
plen, \
unrevOff, \
oneRevOff, \
twoRevOff, \
threeRevOff, \
ebwtfw); /* ebwtFw */ \
} \
assert_eq(0, hits.size()); \
}
static PatternComposer* twoOrThreeMismatchSearch_patsrc;
static HitSink* twoOrThreeMismatchSearch_sink;
static Ebwt* twoOrThreeMismatchSearch_ebwtFw;
static Ebwt* twoOrThreeMismatchSearch_ebwtBw;
static EList<BTRefString >* twoOrThreeMismatchSearch_os;
static SyncBitset* twoOrThreeMismatchSearch_doneMask;
static SyncBitset* twoOrThreeMismatchSearch_hitMask;
static bool twoOrThreeMismatchSearch_two;
static BitPairReference* twoOrThreeMismatchSearch_refs;
/**
* A statefulness-aware worker driver. Uses UnpairedExactAlignerV1.
*/
#if (__cplusplus >= 201103L)
//void twoOrThreeMismatchSearchWorkerStateful::operator()() const {
static void twoOrThreeMismatchSearchWorkerStateful(void *vp) {
thread_tracking_pair *p = (thread_tracking_pair*) vp;
int tid = p->tid;
#else
static void twoOrThreeMismatchSearchWorkerStateful(void *vp) {
int tid = *((int*)vp);
#endif
if(thread_stealing) {
increment_thread_counter();
}
PatternComposer& _patsrc = *twoOrThreeMismatchSearch_patsrc;
HitSink& _sink = *twoOrThreeMismatchSearch_sink;
Ebwt& ebwtFw = *twoOrThreeMismatchSearch_ebwtFw;
Ebwt& ebwtBw = *twoOrThreeMismatchSearch_ebwtBw;
EList<BTRefString >& os = *twoOrThreeMismatchSearch_os;
BitPairReference* refs = twoOrThreeMismatchSearch_refs;
static bool two = twoOrThreeMismatchSearch_two;
// Global initialization
PatternSourcePerThreadFactory* patsrcFact = createPatsrcFactory(_patsrc, tid, readsPerBatch);
HitSinkPerThreadFactory* sinkFact = createSinkFactory(_sink, tid);
ChunkPool *pool = new ChunkPool(chunkSz * 1024, chunkPoolMegabytes * 1024 * 1024, chunkVerbose);
Unpaired23mmAlignerV1Factory alSEfact(
ebwtFw,
&ebwtBw,
two,
!nofw,
!norc,
_sink,
*sinkFact,
NULL, //&cacheFw,
NULL, //&cacheBw,
cacheLimit,
pool,
refs,
os,
!noMaqRound,
!better,
strandFix,
rangeMode,
verbose,
quiet,
seed);
Paired23mmAlignerV1Factory alPEfact(
ebwtFw,
&ebwtBw,
!nofw,
!norc,
useV1,
two,
_sink,
*sinkFact,
mate1fw,
mate2fw,
minInsert,
maxInsert,
dontReconcileMates,
mhits, // for symCeiling
mixedThresh,
mixedAttemptLim,
NULL, //&cacheFw,
NULL, //&cacheBw,
cacheLimit,
pool,
refs, os,
reportSe,
!noMaqRound,
!better,
strandFix,
rangeMode,
verbose,
quiet,
seed);
{
MixedMultiAligner multi(
prefetchWidth,
qUpto,
alSEfact,
alPEfact,
*patsrcFact);
// Run that mother
multi.run(false, tid);
// MultiAligner must be destroyed before patsrcFact
}
#if (__cplusplus >= 201103L)
p->done->fetch_add(1);
#endif
if(thread_stealing) {
decrement_thread_counter();
}
delete patsrcFact;
delete sinkFact;
delete pool;
return;
}
#if (__cplusplus >= 201103L)
//void twoOrThreeMismatchSearchWorkerFull::operator()() const {
static void twoOrThreeMismatchSearchWorkerFull(void *vp) {
thread_tracking_pair *p = (thread_tracking_pair*) vp;
int tid = p->tid;
#else
static void twoOrThreeMismatchSearchWorkerFull(void *vp) {
int tid = *((int*)vp);
#endif
if(thread_stealing) {
increment_thread_counter();
}
PatternComposer& _patsrc = *twoOrThreeMismatchSearch_patsrc;
HitSink& _sink = *twoOrThreeMismatchSearch_sink;
EList<BTRefString >& os = *twoOrThreeMismatchSearch_os;
bool two = twoOrThreeMismatchSearch_two;
PatternSourcePerThreadFactory* patsrcFact = createPatsrcFactory(_patsrc, tid, readsPerBatch);
PatternSourcePerThread* patsrc = patsrcFact->create();
HitSinkPerThreadFactory* sinkFact = createSinkFactory(_sink, tid);
HitSinkPerThread* sink = sinkFact->create();
/* Per-thread initialization */
EbwtSearchParams params(
*sink, /* HitSink */
os, /* reference sequences */
true, /* read is forward */
true); /* index is forward */
Ebwt& ebwtFw = *twoOrThreeMismatchSearch_ebwtFw;
Ebwt& ebwtBw = *twoOrThreeMismatchSearch_ebwtBw;
GreedyDFSRangeSource btr1(
&ebwtFw, params,
0xffffffff, // qualThresh
// Do not impose maximums in 2/3-mismatch mode
0xffffffff, // max backtracks (no limit)
0, // reportPartials (don't)
true, // reportExacts
rangeMode, // reportRanges
NULL, // seedlings
NULL, // mutations
verbose, // verbose
&os,
false); // considerQuals
GreedyDFSRangeSource bt2(
&ebwtBw, params,
0xffffffff, // qualThresh
// Do not impose maximums in 2/3-mismatch mode
0xffffffff, // max backtracks (no limit)
0, // reportPartials (no)
true, // reportExacts
rangeMode, // reportRanges
NULL, // seedlings
NULL, // mutations
verbose, // verbose
&os,
false); // considerQuals
GreedyDFSRangeSource bt3(
&ebwtFw, params,
0xffffffff, // qualThresh (none)
// Do not impose maximums in 2/3-mismatch mode
0xffffffff, // max backtracks (no limit)
0, // reportPartials (don't)
true, // reportExacts
rangeMode, // reportRanges
NULL, // seedlings
NULL, // mutations
verbose, // verbose
&os,
false); // considerQuals
GreedyDFSRangeSource bthh3(
&ebwtFw, params,
0xffffffff, // qualThresh
// Do not impose maximums in 2/3-mismatch mode
0xffffffff, // max backtracks (no limit)
0, // reportPartials (don't)
true, // reportExacts
rangeMode, // reportRanges
NULL, // seedlings
NULL, // mutations
verbose, // verbose
&os,
false, // considerQuals
true); // halfAndHalf
bool skipped = false;
pair<bool, bool> get_read_ret = make_pair(false, false);
#ifdef PER_THREAD_TIMING
uint64_t ncpu_changeovers = 0;
uint64_t nnuma_changeovers = 0;
int current_cpu = 0, current_node = 0;
get_cpu_and_node(current_cpu, current_node);
std::stringstream ss;
std::string msg;
ss << "thread: " << tid << " time: ";
msg = ss.str();
{
Timer timer(std::cout, msg.c_str());
#endif
while(true) { // Read read-in loop
#ifdef PER_THREAD_TIMING
int cpu = 0, node = 0;
get_cpu_and_node(cpu, node);
if(cpu != current_cpu) {
ncpu_changeovers++;
current_cpu = cpu;
}
if(node != current_node) {
nnuma_changeovers++;
current_node = node;
}
#endif
FINISH_READ(patsrc);
GET_READ(patsrc);
patid += 0; // kill unused variable warning
uint32_t plen = (uint32_t)patFw.length();
uint32_t s = plen;
uint32_t s3 = s >> 1; // length of 3' half of seed
uint32_t s5 = (s >> 1) + (s & 1); // length of 5' half of seed
#define DONEMASK_SET(p)
#include "search_23mm_phase1.c"
#include "search_23mm_phase2.c"
#include "search_23mm_phase3.c"
#undef DONEMASK_SET
}
FINISH_READ(patsrc);
if(thread_stealing) {
decrement_thread_counter();
}
#ifdef PER_THREAD_TIMING
ss.str("");
ss.clear();
ss << "thread: " << tid << " cpu_changeovers: " << ncpu_changeovers << std::endl
<< "thread: " << tid << " node_changeovers: " << nnuma_changeovers << std::endl;
std::cout << ss.str();
}
#endif
#if (__cplusplus >= 201103L)
p->done->fetch_add(1);
#endif
// Threads join at end of Phase 1
WORKER_EXIT();
}
static void twoOrThreeMismatchSearchFull(
PatternComposer& _patsrc, /// pattern source
HitSink& _sink, /// hit sink
Ebwt& ebwtFw, /// index of original text
Ebwt& ebwtBw, /// index of mirror text
EList<BTRefString >& os, /// text strings, if available (empty otherwise)
bool two = true) /// true -> 2, false -> 3
{
// Global initialization
assert(!ebwtFw.isInMemory());
assert(!ebwtBw.isInMemory());
{
// Load the other half of the index into memory
Timer _t(cerr, "Time loading forward index: ", timing);
ebwtFw.loadIntoMemory(-1, !noRefNames, startVerbose);
}
{
// Load the other half of the index into memory
Timer _t(cerr, "Time loading mirror index: ", timing);
ebwtBw.loadIntoMemory(-1, !noRefNames, startVerbose);
}
// Create range caches, which are shared among all aligners
BitPairReference *refs = NULL;
bool pair = mates1.size() > 0 || mates12.size() > 0;
if(pair && mixedThresh < 0xffffffff) {
Timer _t(cerr, "Time loading reference: ", timing);
refs = new BitPairReference(adjustedEbwtFileBase, sanityCheck, NULL, &os, false, true, useMm, useShmem, mmSweep, verbose, startVerbose);
if(!refs->loaded()) throw 1;
}
twoOrThreeMismatchSearch_refs = refs;
twoOrThreeMismatchSearch_patsrc = &_patsrc;
twoOrThreeMismatchSearch_sink = &_sink;
twoOrThreeMismatchSearch_ebwtFw = &ebwtFw;
twoOrThreeMismatchSearch_ebwtBw = &ebwtBw;
twoOrThreeMismatchSearch_os = &os;
twoOrThreeMismatchSearch_doneMask = NULL;
twoOrThreeMismatchSearch_hitMask = NULL;
twoOrThreeMismatchSearch_two = two;
int tids[max(nthreads, thread_ceiling)];
#if (__cplusplus >= 201103L)
EList<std::thread*> threads;
EList<thread_tracking_pair> tps;
tps.resizeExact(max(nthreads, thread_ceiling));
#else
EList<tthread::thread*> threads;
#endif
#if (__cplusplus >= 201103L)
std::atomic<int> all_threads_done;
all_threads_done = 0;
#endif
CHUD_START();
{
Timer _t(cerr, "End-to-end 2/3-mismatch full-index search: ", timing);
#ifndef _WIN32
int pid = 0;
if(thread_stealing) {
pid = getpid();
write_pid(thread_stealing_dir.c_str(), pid);
thread_counter = 0;
}
#endif
for(int i = 0; i < nthreads; i++) {
tids[i] = i;
#if (__cplusplus >= 201103L)
tps[i].tid = tids[i];
tps[i].done = &all_threads_done;
if (i == nthreads - 1) {
if(stateful) {
twoOrThreeMismatchSearchWorkerStateful((void*)&tps[i]);
} else {
twoOrThreeMismatchSearchWorkerFull((void*)&tps[i]);
}
}
else {
if(stateful) {
threads.push_back(new std::thread(twoOrThreeMismatchSearchWorkerStateful, (void*)&tps[i]));
} else {
threads.push_back(new std::thread(twoOrThreeMismatchSearchWorkerFull, (void*)&tps[i]));
}
threads[i]->detach();
SLEEP(10);
}
#else
if (i == nthreads - 1) {
if(stateful) {
twoOrThreeMismatchSearchWorkerStateful((void*)(tids + i));
} else {
twoOrThreeMismatchSearchWorkerFull((void*)(tids + i));
}
}
else {
if(stateful) {
threads.push_back(new tthread::thread(twoOrThreeMismatchSearchWorkerStateful, (void *)(tids + i)));
} else {
threads.push_back(new tthread::thread(twoOrThreeMismatchSearchWorkerFull, (void *)(tids + i)));
}
}
#endif
}
#ifndef _WIN32
if(thread_stealing) {
int orig_threads = nthreads, steal_ctr = 1;
for(int j = 0; j < 10; j++) {
sleep(1);
}
while(thread_counter > 0) {
if(steal_thread(pid, orig_threads)) {
nthreads++;
tids[nthreads-1] = nthreads;
#if (__cplusplus >= 201103L)
tps[nthreads-1].tid = nthreads - 1;
tps[nthreads-1].done = &all_threads_done;
if(stateful) {
threads.push_back(new std::thread(twoOrThreeMismatchSearchWorkerStateful, (void*)&tps[nthreads-1]));
} else {
threads.push_back(new std::thread(twoOrThreeMismatchSearchWorkerFull, (void*)&tps[nthreads-1]));
}
threads[nthreads-1]->detach();
SLEEP(10);
#else
if(stateful) {
threads.push_back(new tthread::thread(twoOrThreeMismatchSearchWorkerStateful, (void *)(tids + nthreads - 1)));
} else {
threads.push_back(new tthread::thread(twoOrThreeMismatchSearchWorkerFull, (void *)(tids + nthreads - 1)));
}
#endif
cerr << "pid " << pid << " started new worker # " << nthreads << endl;
}
steal_ctr++;
for(int j = 0; j < 10; j++) {
sleep(1);
}
}
}
#endif
#if (__cplusplus >= 201103L)
while(all_threads_done < nthreads) {
SLEEP(10);
}
#else
for (int i = 0; i < nthreads - 1; i++) {
threads[i]->join();
}
#endif
#ifndef _WIN32
if(thread_stealing) {
del_pid(thread_stealing_dir.c_str(), pid);
}
#endif
}
if(refs != NULL) delete refs;
for (int i = 0; i < nthreads - 1; i++) {
if (threads[i] != NULL) {
delete threads[i];
}
}
return;
}
static PatternComposer* seededQualSearch_patsrc;
static HitSink* seededQualSearch_sink;
static Ebwt* seededQualSearch_ebwtFw;
static Ebwt* seededQualSearch_ebwtBw;
static EList<BTRefString >* seededQualSearch_os;
static SyncBitset* seededQualSearch_doneMask;
static SyncBitset* seededQualSearch_hitMask;
static PartialAlignmentManager* seededQualSearch_pamFw;
static PartialAlignmentManager* seededQualSearch_pamRc;
static int seededQualSearch_qualCutoff;
static BitPairReference* seededQualSearch_refs;
#if (__cplusplus >= 201103L)
//void seededQualSearchWorkerFull::operator()() const {
static void seededQualSearchWorkerFull(void *vp) {
thread_tracking_pair *p = (thread_tracking_pair*) vp;
int tid = p->tid;
#else
static void seededQualSearchWorkerFull(void *vp) {
int tid = *((int*)vp);
#endif
if(thread_stealing) {
increment_thread_counter();
}
PatternComposer& _patsrc = *seededQualSearch_patsrc;
HitSink& _sink = *seededQualSearch_sink;
EList<BTRefString >& os = *seededQualSearch_os;
int qualCutoff = seededQualSearch_qualCutoff;
PatternSourcePerThreadFactory* patsrcFact = createPatsrcFactory(_patsrc, tid, readsPerBatch);
PatternSourcePerThread* patsrc = patsrcFact->create();
HitSinkPerThreadFactory* sinkFact = createSinkFactory(_sink, tid);
HitSinkPerThread* sink = sinkFact->create();
/* Per-thread initialization */
EbwtSearchParams params(
*sink, /* HitSink */
os, /* reference sequences */
true, /* read is forward */
true); /* index is forward */
Ebwt& ebwtFw = *seededQualSearch_ebwtFw;
Ebwt& ebwtBw = *seededQualSearch_ebwtBw;
PartialAlignmentManager * pamRc = NULL;
PartialAlignmentManager * pamFw = NULL;
if(seedMms > 0) {
pamRc = new PartialAlignmentManager(64);
pamFw = new PartialAlignmentManager(64);
}
EList<PartialAlignment> pals;
// GreedyDFSRangeSource for finding exact hits for the forward-
// oriented read
GreedyDFSRangeSource btf1(
&ebwtFw, params,
qualCutoff, // qualThresh
maxBtsBetter, // max backtracks
0, // reportPartials (don't)
true, // reportExacts
rangeMode, // reportRanges
NULL, // seedlings
NULL, // mutations
verbose, // verbose
&os,
false); // considerQuals
GreedyDFSRangeSource bt1(
&ebwtFw, params,
qualCutoff, // qualThresh
maxBtsBetter, // max backtracks
0, // reportPartials (don't)
true, // reportExacts
rangeMode, // reportRanges
NULL, // seedlings
NULL, // mutations
verbose, // verbose
&os, // reference sequences
true, // considerQuals
false, !noMaqRound);
// GreedyDFSRangeSource to search for hits for cases 1F, 2F, 3F
GreedyDFSRangeSource btf2(
&ebwtBw, params,
qualCutoff, // qualThresh
maxBtsBetter, // max backtracks
0, // reportPartials (no)
true, // reportExacts
rangeMode, // reportRanges
NULL, // partial alignment manager
NULL, // mutations
verbose, // verbose
&os, // reference sequences
true, // considerQuals
false, !noMaqRound);
// GreedyDFSRangeSource to search for partial alignments for case 4R
GreedyDFSRangeSource btr2(
&ebwtBw, params,
qualCutoff, // qualThresh (none)
maxBtsBetter, // max backtracks
seedMms, // report partials (up to seedMms mms)
true, // reportExacts
rangeMode, // reportRanges
pamRc, // partial alignment manager
NULL, // mutations
verbose, // verbose
&os, // reference sequences
true, // considerQuals
false, !noMaqRound);
// GreedyDFSRangeSource to search for seedlings for case 4F
GreedyDFSRangeSource btf3(
&ebwtFw, params,
qualCutoff, // qualThresh (none)
maxBtsBetter, // max backtracks
seedMms, // reportPartials (do)
true, // reportExacts
rangeMode, // reportRanges
pamFw, // seedlings
NULL, // mutations
verbose, // verbose
&os, // reference sequences
true, // considerQuals
false, !noMaqRound);
// GreedyDFSRangeSource to search for hits for case 4R by extending
// the partial alignments found in Phase 2
GreedyDFSRangeSource btr3(
&ebwtFw, params,
qualCutoff, // qualThresh
maxBtsBetter, // max backtracks
0, // reportPartials (don't)
true, // reportExacts
rangeMode,// reportRanges
NULL, // seedlings
NULL, // mutations
verbose, // verbose
&os, // reference sequences
true, // considerQuals
false, !noMaqRound);
// The half-and-half GreedyDFSRangeSource
GreedyDFSRangeSource btr23(
&ebwtFw, params,
qualCutoff, // qualThresh
maxBtsBetter, // max backtracks
0, // reportPartials (don't)
true, // reportExacts
rangeMode,// reportRanges
NULL, // seedlings
NULL, // mutations
verbose, // verbose
&os,
true, // considerQuals
true, // halfAndHalf
!noMaqRound);
// GreedyDFSRangeSource to search for hits for case 4F by extending
// the partial alignments found in Phase 3
GreedyDFSRangeSource btf4(
&ebwtBw, params,
qualCutoff, // qualThresh
maxBtsBetter, // max backtracks
0, // reportPartials (don't)
true, // reportExacts
rangeMode,// reportRanges
NULL, // seedlings
NULL, // mutations
verbose, // verbose
&os, // reference sequences
true, // considerQuals
false, !noMaqRound);
// Half-and-half GreedyDFSRangeSource for forward read
GreedyDFSRangeSource btf24(
&ebwtBw, params,
qualCutoff, // qualThresh
maxBtsBetter, // max backtracks
0, // reportPartials (don't)
true, // reportExacts
rangeMode,// reportRanges
NULL, // seedlings
NULL, // mutations
verbose, // verbose
&os,
true, // considerQuals
true, // halfAndHalf
!noMaqRound);
EList<QueryMutation> muts;
bool skipped = false;
pair<bool, bool> get_read_ret = make_pair(false, false);
#ifdef PER_THREAD_TIMING
uint64_t ncpu_changeovers = 0;
uint64_t nnuma_changeovers = 0;
int current_cpu = 0, current_node = 0;
get_cpu_and_node(current_cpu, current_node);
std::stringstream ss;
std::string msg;
ss << "thread: " << tid << " time: ";
msg = ss.str();
{
Timer timer(std::cout, msg.c_str());
#endif
while(true) {
#ifdef PER_THREAD_TIMING
int cpu = 0, node = 0;
get_cpu_and_node(cpu, node);
if(cpu != current_cpu) {
ncpu_changeovers++;
current_cpu = cpu;
}
if(node != current_node) {
nnuma_changeovers++;
current_node = node;
}
#endif
FINISH_READ(patsrc);
GET_READ(patsrc);
uint32_t plen = (uint32_t)patFw.length();
uint32_t s = seedLen;
uint32_t s3 = (s >> 1); /* length of 3' half of seed */
uint32_t s5 = (s >> 1) + (s & 1); /* length of 5' half of seed */
uint32_t qs = min<uint32_t>(plen, s);
uint32_t qs3 = qs >> 1;
uint32_t qs5 = (qs >> 1) + (qs & 1);
#define DONEMASK_SET(p)
#include "search_seeded_phase1.c"
#include "search_seeded_phase2.c"
#include "search_seeded_phase3.c"
#include "search_seeded_phase4.c"
#undef DONEMASK_SET
}
FINISH_READ(patsrc);
if(thread_stealing) {
decrement_thread_counter();
}
if(seedMms > 0) {
delete pamRc;
delete pamFw;
}
#ifdef PER_THREAD_TIMING
ss.str("");
ss.clear();
ss << "thread: " << tid << " cpu_changeovers: " << ncpu_changeovers << std::endl
<< "thread: " << tid << " node_changeovers: " << nnuma_changeovers << std::endl;
std::cout << ss.str();
}
#endif
#if (__cplusplus >= 201103L)
p->done->fetch_add(1);
#endif
WORKER_EXIT();
}
#if (__cplusplus >= 201103L)
//void seededQualSearchWorkerFullStateful::operator()() const {
static void seededQualSearchWorkerFullStateful(void *vp) {
thread_tracking_pair *p = (thread_tracking_pair*) vp;
int tid = p->tid;
#else
static void seededQualSearchWorkerFullStateful(void *vp) {
int tid = *((int*)vp);
#endif
if(thread_stealing) {
increment_thread_counter();
}
PatternComposer& _patsrc = *seededQualSearch_patsrc;
HitSink& _sink = *seededQualSearch_sink;
Ebwt& ebwtFw = *seededQualSearch_ebwtFw;
Ebwt& ebwtBw = *seededQualSearch_ebwtBw;
EList<BTRefString >& os = *seededQualSearch_os;
int qualCutoff = seededQualSearch_qualCutoff;
BitPairReference* refs = seededQualSearch_refs;
// Global initialization
PatternSourcePerThreadFactory* patsrcFact = createPatsrcFactory(_patsrc, tid, readsPerBatch);
HitSinkPerThreadFactory* sinkFact = createSinkFactory(_sink, tid);
ChunkPool *pool = new ChunkPool(chunkSz * 1024, chunkPoolMegabytes * 1024 * 1024, chunkVerbose);
AlignerMetrics *metrics = NULL;
if(stats) {
metrics = new AlignerMetrics();
}
UnpairedSeedAlignerFactory alSEfact(
ebwtFw,
&ebwtBw,
!nofw,
!norc,
seedMms,
seedLen,
qualCutoff,
maxBts,
_sink,
*sinkFact,
NULL, //&cacheFw,
NULL, //&cacheBw,
cacheLimit,
pool,
refs,
os,
!noMaqRound,
!better,
strandFix,
rangeMode,
verbose,
quiet,
seed,
metrics);
PairedSeedAlignerFactory alPEfact(
ebwtFw,
&ebwtBw,
useV1,
!nofw,
!norc,
seedMms,
seedLen,
qualCutoff,
maxBts,
_sink,
*sinkFact,
mate1fw,
mate2fw,
minInsert,
maxInsert,
dontReconcileMates,
mhits, // for symCeiling
mixedThresh,
mixedAttemptLim,
NULL, //&cacheFw,
NULL, //&cacheBw,
cacheLimit,
pool,
refs,
os,
reportSe,
!noMaqRound,
!better,
strandFix,
rangeMode,
verbose,
quiet,
seed);
{
MixedMultiAligner multi(
prefetchWidth,
qUpto,
alSEfact,
alPEfact,
*patsrcFact);
// Run that mother
multi.run(false, tid);
// MultiAligner must be destroyed before patsrcFact
}
if(metrics != NULL) {
metrics->printSummary();
delete metrics;
}
#if (__cplusplus >= 201103L)
p->done->fetch_add(1);
#endif
if(thread_stealing) {
decrement_thread_counter();
}
delete patsrcFact;
delete sinkFact;
delete pool;
return;
}
/**
* Search for a good alignments for each read using criteria that
* correspond somewhat faithfully to Maq's. Search is aided by a pair
* of Ebwt indexes, one for the original references, and one for the
* transpose of the references. Neither index should be loaded upon
* entry to this function.
*
* Like Maq, we treat the first 24 base pairs of the read (those
* closest to the 5' end) differently from the remainder of the read.
* We call the first 24 base pairs the "seed."
*/
static void seededQualCutoffSearchFull(
int seedLen, /// length of seed (not a maq option)
int qualCutoff, /// maximum sum of mismatch qualities
/// like maq map's -e option
/// default: 70
int seedMms, /// max # mismatches allowed in seed
/// (like maq map's -n option)
/// Can only be 1 or 2, default: 1
PatternComposer& _patsrc, /// pattern source
HitSink& _sink, /// hit sink
Ebwt& ebwtFw, /// index of original text
Ebwt& ebwtBw, /// index of mirror text
EList<BTRefString >& os) /// text strings, if available (empty otherwise)
{
// Global intialization
assert_leq(seedMms, 3);
seededQualSearch_patsrc = &_patsrc;
seededQualSearch_sink = &_sink;
seededQualSearch_ebwtFw = &ebwtFw;
seededQualSearch_ebwtBw = &ebwtBw;
seededQualSearch_os = &os;
seededQualSearch_doneMask = NULL;
seededQualSearch_hitMask = NULL;
seededQualSearch_pamFw = NULL;
seededQualSearch_pamRc = NULL;
seededQualSearch_qualCutoff = qualCutoff;
// Create range caches, which are shared among all aligners
BitPairReference *refs = NULL;
bool pair = mates1.size() > 0 || mates12.size() > 0;
if(pair && mixedThresh < 0xffffffff) {
Timer _t(cerr, "Time loading reference: ", timing);
refs = new BitPairReference(adjustedEbwtFileBase, sanityCheck, NULL, &os, false, true, useMm, useShmem, mmSweep, verbose, startVerbose);
if(!refs->loaded()) throw 1;
}
seededQualSearch_refs = refs;
int tids[max(nthreads, thread_ceiling)];
#if (__cplusplus >= 201103L)
EList<std::thread*> threads;
EList<thread_tracking_pair> tps;
tps.resizeExact(max(nthreads, thread_ceiling));
#else
EList<tthread::thread*> threads;
#endif
#if (__cplusplus >= 201103L)
std::atomic<int> all_threads_done;
all_threads_done = 0;
#endif
SWITCH_TO_FW_INDEX();
assert(!ebwtBw.isInMemory());
{
// Load the other half of the index into memory
Timer _t(cerr, "Time loading mirror index: ", timing);
ebwtBw.loadIntoMemory(-1, !noRefNames, startVerbose);
}
CHUD_START();
{
// Phase 1: Consider cases 1R and 2R
Timer _t(cerr, "Seeded quality full-index search: ", timing);
#ifndef _WIN32
int pid = 0;
if(thread_stealing) {
pid = getpid();
write_pid(thread_stealing_dir.c_str(), pid);
thread_counter = 0;
}
#endif
for(int i = 0; i < nthreads; i++) {
tids[i] = i;
#if (__cplusplus >= 201103L)
tps[i].tid = tids[i];
tps[i].done = &all_threads_done;
if (i == nthreads - 1) {
if(stateful) {
seededQualSearchWorkerFullStateful((void*)&tps[i]);
} else {
seededQualSearchWorkerFull((void*)&tps[i]);
}
}
else {
if(stateful) {
threads.push_back(new std::thread(seededQualSearchWorkerFullStateful, (void*)&tps[i]));
} else {
threads.push_back(new std::thread(seededQualSearchWorkerFull, (void*)&tps[i]));
}
threads[i]->detach();
SLEEP(10);
}
#else
if (i == nthreads - 1) {
if(stateful) {
seededQualSearchWorkerFullStateful((void*)(tids + i));
} else {
seededQualSearchWorkerFull((void*)(tids + i));
}
}
else {
if(stateful) {
threads.push_back(new tthread::thread(seededQualSearchWorkerFullStateful, (void *)(tids + i)));
} else {
threads.push_back(new tthread::thread(seededQualSearchWorkerFull, (void *)(tids + i)));
}
}
#endif
}
#ifndef _WIN32
if(thread_stealing) {
int orig_threads = nthreads, steal_ctr = 1;
for(int j = 0; j < 10; j++) {
sleep(1);
}
while(thread_counter > 0) {
if(steal_thread(pid, orig_threads)) {
nthreads++;
tids[nthreads-1] = nthreads - 1;
#if (__cplusplus >= 201103L)
tps[nthreads-1].tid = nthreads - 1;
tps[nthreads-1].done = &all_threads_done;
if(stateful) {
threads.push_back(new std::thread(seededQualSearchWorkerFullStateful, (void*)&tps[nthreads-1]));
} else {
threads.push_back(new std::thread(seededQualSearchWorkerFull, (void*)&tps[nthreads-1]));
}
threads[nthreads-1]->detach();
SLEEP(10);
#else
if(stateful) {
threads.push_back(new tthread::thread(seededQualSearchWorkerFullStateful, (void *)(tids + nthreads - 1)));
} else {
threads.push_back(new tthread::thread(seededQualSearchWorkerFull, (void *)(tids + nthreads - 1)));
}
#endif
cerr << "pid " << pid << " started new worker # " << nthreads << endl;
}
steal_ctr++;
for(int j = 0; j < 10; j++) {
sleep(1);
}
}
}
#endif
#if (__cplusplus >= 201103L)
while(all_threads_done < nthreads) {
SLEEP(10);
}
#else
for (int i = 0; i < nthreads - 1; i++) {
threads[i]->join();
}
#endif
#ifndef _WIN32
if(thread_stealing) {
del_pid(thread_stealing_dir.c_str(), pid);
}
#endif
}
if(refs != NULL) {
delete refs;
}
for (int i = 0; i < nthreads - 1; i++) {
if (threads[i] != NULL) {
delete threads[i];
}
}
ebwtBw.evictFromMemory();
}
/**
* Return a new dynamically allocated PatternSource for the given
* format, using the given list of strings as the filenames to read
* from or as the sequences themselves (i.e. if -c was used).
*/
static PatternSource*
patsrcFromStrings(int format,
const EList<string>& reads,
const EList<string>* quals)
{
switch(format) {
case FASTA:
return new FastaPatternSource (reads, quals,
trim3, trim5);
case FASTA_CONT:
return new FastaContinuousPatternSource (
reads, fastaContLen,
fastaContFreq);
case RAW:
return new RawPatternSource (reads, trim3, trim5);
case FASTQ:
return new FastqPatternSource (reads, trim3, trim5,
solexaQuals, phred64Quals,
integerQuals);
case INTERLEAVED:
return new FastqPatternSource (reads, trim3, trim5,
solexaQuals, phred64Quals,
integerQuals, true /* is interleaved */);
case TAB_MATE:
return new TabbedPatternSource(reads, false, trim3, trim5);
case CMDLINE:
return new VectorPatternSource(reads, trim3, trim5);
default: {
cerr << "Internal error; bad patsrc format: " << format << endl;
throw 1;
}
}
}
static string argstr;
static void driver(const char * type,
const string& ebwtFileBase,
const string& query,
const EList<string>& queries,
const EList<string>& qualities,
const string& outfile)
{
if(verbose || startVerbose) {
cerr << "Entered driver(): "; logTime(cerr, true);
}
// Vector of the reference sequences; used for sanity-checking
EList<BTRefString> os;
// Read reference sequences from the command-line or from a FASTA file
if(!origString.empty()) {
// Determine if it's a file by looking at whether it has a FASTA-like
// extension
size_t len = origString.length();
if((len >= 6 && origString.substr(len-6) == ".fasta") ||
(len >= 4 && origString.substr(len-4) == ".mfa") ||
(len >= 4 && origString.substr(len-4) == ".fas") ||
(len >= 4 && origString.substr(len-4) == ".fna") ||
(len >= 3 && origString.substr(len-3) == ".fa"))
{
// Read fasta file
EList<string> origFiles;
tokenize(origString, ",", origFiles);
readSequenceFiles(origFiles, os);
} else {
// Read sequence
readSequenceString(origString, os);
}
}
// Adjust
adjustedEbwtFileBase = adjustEbwtBase(argv0, ebwtFileBase, verbose);
bool isBt2Index = false;
if (gEbwt_ext == "bt2" || gEbwt_ext == "bt2l") {
isBt2Index = true;
}
EList<PatternSource*> patsrcs_a;
EList<PatternSource*> patsrcs_b;
EList<PatternSource*> patsrcs_ab;
// If there were any first-mates specified, we will operate in
// stateful mode
bool paired = mates1.size() > 0 || mates12.size() > 0;
if(paired) stateful = true;
// Create list of pattern sources for paired reads appearing
// interleaved in a single file
if(verbose || startVerbose) {
cerr << "Creating paired-end patsrcs: "; logTime(cerr, true);
}
for(size_t i = 0; i < mates12.size(); i++) {
const EList<string>* qs = &mates12;
EList<string> tmp;
if(fileParallel) {
// Feed query files one to each PatternSource
qs = &tmp;
tmp.push_back(mates12[i]);
assert_eq(1, tmp.size());
}
patsrcs_ab.push_back(patsrcFromStrings(format, *qs, NULL));
if(!fileParallel) {
break;
}
}
// Create list of pattern sources for paired reads
for(size_t i = 0; i < mates1.size(); i++) {
const EList<string>* qs = &mates1;
const EList<string>* quals = &qualities1;
EList<string> tmpSeq;
EList<string> tmpQual;
if(fileParallel) {
// Feed query files one to each PatternSource
qs = &tmpSeq;
tmpSeq.push_back(mates1[i]);
quals = &tmpSeq;
tmpQual.push_back(qualities1[i]);
assert_eq(1, tmpSeq.size());
}
if(quals->empty()) quals = NULL;
patsrcs_a.push_back(patsrcFromStrings(format, *qs, quals));
if(!fileParallel) {
break;
}
}
// Create list of pattern sources for paired reads
for(size_t i = 0; i < mates2.size(); i++) {
const EList<string>* qs = &mates2;
const EList<string>* quals = &qualities2;
EList<string> tmpSeq;
EList<string> tmpQual;
if(fileParallel) {
// Feed query files one to each PatternSource
qs = &tmpSeq;
tmpSeq.push_back(mates2[i]);
quals = &tmpQual;
tmpQual.push_back(qualities2[i]);
assert_eq(1, tmpSeq.size());
}
if(quals->empty()) quals = NULL;
patsrcs_b.push_back(patsrcFromStrings(format, *qs, quals));
if(!fileParallel) {
break;
}
}
// All mates/mate files must be paired
assert_eq(patsrcs_a.size(), patsrcs_b.size());
// Create list of pattern sources for the unpaired reads
if(verbose || startVerbose) {
cerr << "Creating single-end patsrcs: "; logTime(cerr, true);
}
for(size_t i = 0; i < queries.size(); i++) {
const EList<string>* qs = &queries;
const EList<string>* quals = &qualities;
PatternSource* patsrc = NULL;
EList<string> tmpSeq;
EList<string> tmpQual;
if(fileParallel) {
// Feed query files one to each PatternSource
qs = &tmpSeq;
tmpSeq.push_back(queries[i]);
quals = &tmpQual;
tmpQual.push_back(qualities[i]);
assert_eq(1, tmpSeq.size());
}
if(quals->empty()) quals = NULL;
patsrc = patsrcFromStrings(format, *qs, quals);
assert(patsrc != NULL);
patsrcs_a.push_back(patsrc);
patsrcs_b.push_back(NULL);
if(!fileParallel) {
break;
}
}
if(verbose || startVerbose) {
cerr << "Creating PatternSource: "; logTime(cerr, true);
}
PatternComposer *patsrc = NULL;
if(mates12.size() > 0) {
patsrc = new SoloPatternComposer(patsrcs_ab);
} else {
patsrc = new DualPatternComposer(patsrcs_a, patsrcs_b);
}
// Open hit output file
if(verbose || startVerbose) {
cerr << "Opening hit output file: "; logTime(cerr, true);
}
OutFileBuf *fout;
if(!outfile.empty()) {
fout = new OutFileBuf(outfile.c_str(), false);
} else {
fout = new OutFileBuf();
}
// Initialize Ebwt object and read in header
if(verbose || startVerbose) {
cerr << "About to initialize fw Ebwt: "; logTime(cerr, true);
}
Ebwt ebwt(adjustedEbwtFileBase,
-1, // don't care about entireReverse
true, // index is for the forward direction
/* overriding: */ offRate,
/* overriding: */ isaRate,
useMm, // whether to use memory-mapped files
useShmem, // whether to use shared memory
mmSweep, // sweep memory-mapped files
!noRefNames, // load names?
verbose, // whether to be talkative
startVerbose, // talkative during initialization
false /*passMemExc*/,
sanityCheck,
isBt2Index);
Ebwt* ebwtBw = NULL;
// We need the mirror index if mismatches are allowed
if(mismatches > 0 || maqLike) {
if(verbose || startVerbose) {
cerr << "About to initialize rev Ebwt: "; logTime(cerr, true);
}
ebwtBw = new Ebwt(
adjustedEbwtFileBase + ".rev",
-1, // don't care about entireReverse
false, // index is for the reverse direction
/* overriding: */ offRate,
/* overriding: */ isaRate,
useMm, // whether to use memory-mapped files
useShmem, // whether to use shared memory
mmSweep, // sweep memory-mapped files
!noRefNames, // load names?
verbose, // whether to be talkative
startVerbose, // talkative during initialization
false /*passMemExc*/,
sanityCheck,
isBt2Index);
}
if(!os.empty()) {
for(size_t i = 0; i < os.size(); i++) {
size_t olen = os[i].length();
int longestStretch = 0;
int curStretch = 0;
for(size_t j = 0; j < olen; j++) {
if((int)os[i][j] < 4) {
curStretch++;
if(curStretch > longestStretch) longestStretch = curStretch;
} else {
curStretch = 0;
}
}
if(longestStretch < 1) {
os.erase(i--);
}
}
}
if(sanityCheck && !os.empty()) {
// Sanity check number of patterns and pattern lengths in Ebwt
// against original strings
assert_eq(os.size(), ebwt.nPat());
for(size_t i = 0; i < os.size(); i++) {
assert_eq(os[i].length(), ebwt.plen()[i]);
}
ebwt.loadIntoMemory(-1, !noRefNames, startVerbose);
ebwt.checkOrigs(os, false);
ebwt.evictFromMemory();
}
{
Timer _t(cerr, "Time searching: ", timing);
if(verbose || startVerbose) {
cerr << "Creating HitSink: "; logTime(cerr, true);
}
// Set up hit sink; if sanityCheck && !os.empty() is true,
// then instruct the sink to "retain" hits in a vector in
// memory so that we can easily sanity check them later on
HitSink *sink;
EList<string>* refnames = &ebwt.refnames();
if(noRefNames) refnames = NULL;
if(outType == OUTPUT_FULL) {
sink = new VerboseHitSink(
*fout, offBase,
printCost,
suppressOuts,
fullRef,
dumpAlBase,
dumpUnalBase,
dumpMaxBase,
format == TAB_MATE, sampleMax,
refnames, nthreads,
outBatchSz, partitionSz);
} else if(outType == OUTPUT_SAM) {
SAMHitSink *sam = new SAMHitSink(
*fout,
fullRef, samNoQnameTrunc,
dumpAlBase,
dumpUnalBase,
dumpMaxBase,
format == TAB_MATE,
sampleMax,
refnames,
nthreads,
outBatchSz,
reorder);
if(!samNoHead) {
EList<string> refnames;
if(!samNoSQ) {
readEbwtRefnames(adjustedEbwtFileBase, refnames);
}
sam->appendHeaders(
sam->out(),
ebwt.nPat(),
refnames, samNoSQ,
ebwt.plen(), fullRef,
samNoQnameTrunc,
argstr.c_str(),
rgs.empty() ? NULL : rgs.c_str());
}
sink = sam;
} else {
cerr << "Invalid output type: " << outType << endl;
throw 1;
}
if(verbose || startVerbose) {
cerr << "Dispatching to search driver: "; logTime(cerr, true);
}
if(maqLike) {
seededQualCutoffSearchFull(seedLen,
qualThresh,
seedMms,
*patsrc,
*sink,
ebwt, // forward index
*ebwtBw, // mirror index (not optional)
os); // references, if available
}
else if(mismatches > 0) {
if(mismatches == 1) {
assert(ebwtBw != NULL);
mismatchSearchFull(*patsrc, *sink, ebwt, *ebwtBw, os);
} else if(mismatches == 2 || mismatches == 3) {
twoOrThreeMismatchSearchFull(*patsrc, *sink, ebwt, *ebwtBw, os, mismatches == 2);
} else {
cerr << "Error: " << mismatches << " is not a supported number of mismatches" << endl;
throw 1;
}
} else {
// Search without mismatches
// Note that --fast doesn't make a difference here because
// we're only loading half of the index anyway
exactSearch(*patsrc, *sink, ebwt, os);
}
// Evict any loaded indexes from memory
if(ebwt.isInMemory()) {
ebwt.evictFromMemory();
}
if(ebwtBw != NULL) {
delete ebwtBw;
}
sink->finish(hadoopOut); // end the hits section of the hit file
for(size_t i = 0; i < patsrcs_a.size(); i++) {
assert(patsrcs_a[i] != NULL);
delete patsrcs_a[i];
}
for(size_t i = 0; i < patsrcs_b.size(); i++) {
if(patsrcs_b[i] != NULL) {
delete patsrcs_b[i];
}
}
for(size_t i = 0; i < patsrcs_ab.size(); i++) {
if(patsrcs_ab[i] != NULL) {
delete patsrcs_ab[i];
}
}
delete patsrc;
delete sink;
if(fout != NULL) delete fout;
}
}
// C++ name mangling is disabled for the bowtie() function to make it
// easier to use Bowtie as a library.
extern "C" {
/**
* Main bowtie entry function. Parses argc/argv style command-line
* options, sets global configuration variables, and calls the driver()
* function.
*/
int bowtie(int argc, const char **argv) {
try {
#if (__cplusplus >= 201103L)
#ifdef WITH_AFFINITY
//CWILKS: adjust this depending on # of hyperthreads per core
pinning_observer pinner( 2 /* the number of hyper threads on each core */ );
pinner.observe( true );
#endif
#endif
// Reset all global state, including getopt state
opterr = optind = 1;
resetOptions();
for(int i = 0; i < argc; i++) {
argstr += argv[i];
if(i < argc-1) argstr += " ";
}
string query; // read query string(s) from this file
EList<string> queries;
string outfile; // write query results to this file
if(startVerbose) { cerr << "Entered main(): "; logTime(cerr, true); }
parseOptions(argc, argv);
argv0 = argv[0];
if(showVersion) {
cout << argv0 << " version " << BOWTIE_VERSION << endl;
if(sizeof(void*) == 4) {
cout << "32-bit" << endl;
} else if(sizeof(void*) == 8) {
cout << "64-bit" << endl;
} else {
cout << "Neither 32- nor 64-bit: sizeof(void*) = " << sizeof(void*) << endl;
}
cout << "Built on " << BUILD_HOST << endl;
cout << BUILD_TIME << endl;
cout << "Compiler: " << COMPILER_VERSION << endl;
cout << "Options: " << COMPILER_OPTIONS << endl;
cout << "Sizeof {int, long, long long, void*, size_t, off_t}: {"
<< sizeof(int)
<< ", " << sizeof(long) << ", " << sizeof(long long)
<< ", " << sizeof(void *) << ", " << sizeof(size_t)
<< ", " << sizeof(off_t) << "}" << endl;
return 0;
}
#ifdef CHUD_PROFILING
chudInitialize();
chudAcquireRemoteAccess();
#endif
{
Timer _t(cerr, "Overall time: ", timing);
if(startVerbose) {
cerr << "Parsing index and read arguments: "; logTime(cerr, true);
}
// Get index basename
if (ebwtFile.empty()) {
if(optind >= argc) {
cerr << "No index, query, or output file specified!" << endl;
printUsage(cerr);
return 1;
}
std::cerr << "Setting the index via positional argument"
<< " will be deprecated in a future release."
<< " Please use -x option instead." << std::endl;
ebwtFile = argv[optind++];
}
// Get query filename
if(optind >= argc) {
if(mates1.size() > 0 || mates12.size() > 0) {
query = "";
} else {
cerr << "No query or output file specified!" << endl;
printUsage(cerr);
return 1;
}
} else if (mates1.size() == 0 && mates12.size() == 0) {
query = argv[optind++];
// Tokenize the list of query files
tokenize(query, ",", queries);
if(queries.size() < 1) {
cerr << "Tokenized query file list was empty!" << endl;
printUsage(cerr);
return 1;
}
}
// Get output filename
if(optind < argc) {
outfile = argv[optind++];
}
// Extra parametesr?
if(optind < argc) {
cerr << "Extra parameter(s) specified: ";
for(int i = optind; i < argc; i++) {
cerr << "\"" << argv[i] << "\"";
if(i < argc-1) cerr << ", ";
}
cerr << endl;
if(mates1.size() > 0) {
cerr << "Note that if <mates> files are specified using -1/-2, a <singles> file cannot" << endl
<< "also be specified. Please run bowtie separately for mates and singles." << endl;
}
throw 1;
}
// Optionally summarize
if(verbose) {
cout << "Input ebwt file: \"" << ebwtFile << "\"" << endl;
cout << "Query inputs (DNA, " << file_format_names[format] << "):" << endl;
for(size_t i = 0; i < queries.size(); i++) {
cout << " " << queries[i] << endl;
}
cout << "Quality inputs:" << endl;
for(size_t i = 0; i < qualities.size(); i++) {
cout << " " << qualities[i] << endl;
}
cout << "Output file: \"" << outfile << "\"" << endl;
cout << "Local endianness: " << (currentlyBigEndian()? "big":"little") << endl;
cout << "Sanity checking: " << (sanityCheck? "enabled":"disabled") << endl;
#ifdef NDEBUG
cout << "Assertions: disabled" << endl;
#else
cout << "Assertions: enabled" << endl;
#endif
}
if(ipause) {
cout << "Press key to continue..." << endl;
getchar();
}
driver("DNA", ebwtFile, query, queries, qualities, outfile);
CHUD_STOP();
}
#ifdef CHUD_PROFILING
chudReleaseRemoteAccess();
#endif
#if (__cplusplus >= 201103L)
#ifdef WITH_AFFINITY
// Always disable observation before observers destruction
//tracker.observe( false );
pinner.observe( false );
#endif
#endif
return 0;
} catch(exception& e) {
cerr << "Command: ";
for(int i = 0; i < argc; i++) cerr << argv[i] << " ";
cerr << endl;
return 1;
} catch(int e) {
if(e != 0) {
cerr << "Command: ";
for(int i = 0; i < argc; i++) cerr << argv[i] << " ";
cerr << endl;
}
return e;
}
} // bowtie()
} // extern "C"
|