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
|
<!--
! This manual is written in "markdown" format and thus contains some
! distracting formatting clutter. See 'MANUAL' for an easier-to-read version
! of this text document, or see the HTML manual online.
! -->
Introduction
============
[Bowtie 2] is an ultrafast and memory-efficient tool for aligning sequencing
reads to long reference sequences. It is particularly good at aligning reads of
about 50 up to 100s of characters to relatively long (e.g. mammalian)
genomes. Bowtie 2 indexes the genome with an [FM Index][FM Index Wiki] (based on the
[Burrows-Wheeler Transform] or [BWT]) to keep its memory footprint small: for
the human genome, its memory footprint is typically around 3.2 gigabytes of RAM.
Bowtie 2 supports gapped, local, and paired-end alignment modes. Multiple
processors can be used simultaneously to achieve greater alignment speed.
Bowtie 2 outputs alignments in [SAM] format, enabling interoperation with a
large number of other tools (e.g. [SAMtools], [GATK]) that use SAM. Bowtie 2 is
distributed under the [GPLv3 license], and it runs on the command line under
Windows, Mac OS X and Linux and BSD.
[Bowtie 2] is often the first step in pipelines for comparative genomics,
including for variation calling, ChIP-seq, RNA-seq, BS-seq. [Bowtie 2] and
[Bowtie] (also called "[Bowtie 1]" here) are also tightly integrated into many
other tools, some of which [are listed here](http://bowtie-bio.sourceforge.net/bowtie2/other_tools.shtml).
If you use [Bowtie 2] for your published research, please cite our work. Papers
describing Bowtie 2 are:
* Langmead B, Wilks C, Antonescu V, Charles R. [Scaling read aligners to hundreds
of threads on general-purpose processors](https://doi.org/10.1093/bioinformatics/bty648). _Bioinformatics_. 2018 Jul 18. doi:
10.1093/bioinformatics/bty648.
* Langmead B, Salzberg SL. [Fast gapped-read alignment with Bowtie 2](https://www.nature.com/articles/nmeth.1923). _Nature
Methods_. 2012 Mar 4;9(4):357-9. doi: 10.1038/nmeth.1923.
How is Bowtie 2 different from Bowtie 1?
----------------------------------------
Bowtie 1 was released in 2009 and was geared toward aligning the relatively
short sequencing reads (up to 25-50 nucleotides) prevalent at the time. Since
then, technology has improved both sequencing throughput (more nucleotides
produced per sequencer per day) and read length (more nucleotides per read).
The chief differences between Bowtie 1 and Bowtie 2 are:
1. For reads longer than about 50 bp Bowtie 2 is generally faster, more
sensitive, and uses less memory than Bowtie 1. For relatively short reads (e.g.
less than 50 bp) Bowtie 1 is sometimes faster and/or more sensitive.
2. Bowtie 2 supports gapped alignment with affine gap penalties. Number of gaps
and gap lengths are not restricted, except by way of the configurable scoring
scheme. Bowtie 1 finds just ungapped alignments.
3. Bowtie 2 supports [local alignment], which doesn't require reads to align
end-to-end. Local alignments might be "trimmed" ("soft clipped") at one or both
extremes in a way that optimizes alignment score. Bowtie 2 also supports
[end-to-end alignment] which, like Bowtie 1, requires that the read align
entirely.
4. There is no upper limit on read length in Bowtie 2. Bowtie 1 had an upper
limit of around 1000 bp.
5. Bowtie 2 allows alignments to [overlap ambiguous characters] (e.g. `N`s) in
the reference. Bowtie 1 does not.
6. Bowtie 2 does away with Bowtie 1's notion of alignment "stratum", and its
distinction between "Maq-like" and "end-to-end" modes. In Bowtie 2 all
alignments lie along a continuous spectrum of alignment scores where the
[scoring scheme], similar to [Needleman-Wunsch] and [Smith-Waterman].
7. Bowtie 2's [paired-end alignment] is more flexible. E.g. for pairs that do
not align in a paired fashion, Bowtie 2 attempts to find unpaired alignments for
each mate.
8. Bowtie 2 reports a spectrum of mapping qualities, in contrast for Bowtie 1
which reports either 0 or high.
9. Bowtie 2 does not align colorspace reads.
Bowtie 2 is not a "drop-in" replacement for Bowtie 1. Bowtie 2's command-line
arguments and genome index format are both different from Bowtie 1's.
What isn't Bowtie 2?
--------------------
Bowtie 2 is geared toward aligning relatively short sequencing reads to long
genomes. That said, it handles arbitrarily small reference sequences (e.g.
amplicons) and very long reads (i.e. upwards of 10s or 100s of kilobases),
though it is slower in those settings. It is optimized for the read lengths
and error modes yielded by typical Illumina sequencers.
Bowtie 2 does not support alignment of colorspace reads. (Bowtie 1 does.)
Obtaining Bowtie 2
==================
Bowtie 2 is available from various package managers, notably [Bioconda](https://anaconda.org/bioconda/bowtie2).
With Bioconda installed, you should be able to install Bowtie 2 with `conda
install bowtie2`.
You can also download Bowtie 2 sources and binaries from the
[Download] section of the Sourceforge site. Binaries are available
for the `x86_64` architecture running Linux, Mac OS X, and Windows.
FreeBSD users can obtain the latest version of Bowtie 2 from ports
using `pkg install bowtie2`. If you plan to compile Bowtie 2 yourself,
make sure to get the source package, i.e., the filename that ends
in "-source.zip".
Building from source
--------------------
Building from source
Building Bowtie 2 from source requires a GNU-like environment with
Clang/GCC, GNU Make and other basics. It should be possible to build
Bowtie 2 on most vanilla *NIX installations or on a Mac installation
with Xcode installed.
Bowtie 2 can also be built on Windows using a 64-bit MinGW distribution
and MSYS. In order to simplify the MinGW setup it might be worth
investigating popular MinGW personal builds since these are coming
already prepared with most of the toolchains needed.
First, download the source package from the [sourceforge site]. Make sure
you're getting the source package; the file downloaded should end in
`-source.zip`. Unzip the file, change to the unzipped directory, and build the
Bowtie 2 tools by running GNU `make` (usually with the command `make`, but
sometimes with `gmake`) with no arguments. If building with MinGW, run `make`
from the MSYS environment.
The Bowtie 2 Makefile also includes recipes for basic automatic dependency
management. Running `make static-libs && make STATIC_BUILD=1` will issue
a series of commands that will:
1. download zstd and zlib
2. compile them as static libraries
3. link the resulting libraries to the compiled Bowtie 2 binaries
### Building with SRA support ###
As of version 2.3.5 bowtie2 now supports aligning SRA reads. Prepackaged
builds will include a package that supports SRA. If you're building bowtie2
from source please make sure that the Java runtime is available on your system.
You can then proceed with the build by running `make sra-deps && make USE_SRA=1`.
### Building with libsais support ###
As of version 2.5.3 `bowtie2` supports building indexes using the SAIS algorithm
provided by [libsais]. SAIS is a state-of-the-art suffix array construction algorithm
that will bring-forth a significant speed-up to the overall index building process.
There is, however, the downside of a significant increase in memory usage compared
to the persistent blockwise algorithm that `bowtie2-build` uses by default. When using
SAIS small indexes can be built for inputs up to 2GB. The `bowtie2-build` wrapper
will help determine the appropriate index type for uncompressed and gzipped inputs.
To build `bowtie2-build` with [libsais] first make sure that the libsais submodule
is available. This can be done in one of the following ways:
* first time cloning bowtie2 -- `git clone --recursive https://github.com/BenLangmead/bowtie2.git`
* existing checkout of bowtie2 -- `git submodule init && git submodule update`
Issue the following command line to build libsais:
* with OpenMP support -- `[g]make libsais USE_SAIS_OPENMP=1`
* without OpenMP support -- `[g]make libsais USE_SAIS=1`
The choice of using OpenMP will determine whether or not the algorithm
runs multithreaded. The [`-p/--threads`] argument to `bowtie2-build` will
be ignored when libsais is compiled without OpenMP support.
Finally, building the bowtie2-build executable:
* with OpenMP support -- `[g]make bowtie2-build-s USE_SAIS_OPENMP=1`
* without OpenMP support -- `[g]make bowtie2-build-s USE_SAIS=1`
### Building with CMake ###
To build Bowtie2 with SRA and libsais support issue the following command:
* `cmake . -D USE_SRA=1 -D USE_SAIS=1 && cmake --build .`
CMake will take care of building and linking against the specified dependencies.
Adding to PATH
--------------
By adding your new Bowtie 2 directory to your [PATH environment variable], you
ensure that whenever you run `bowtie2`, `bowtie2-build` or `bowtie2-inspect`
from the command line, you will get the version you just installed without
having to specify the entire path. This is recommended for most users. To do
this, follow your operating system's instructions for adding the directory to
your [PATH].
If you would like to install Bowtie 2 by copying the Bowtie 2 executable files
to an existing directory in your [PATH], make sure that you copy all the
executables, including `bowtie2`, `bowtie2-align-s`, `bowtie2-align-l`,
`bowtie2-build`, `bowtie2-build-s`, `bowtie2-build-l`, `bowtie2-inspect`,
`bowtie2-inspect-s` and `bowtie2-inspect-l`.
The `bowtie2` aligner
=====================
`bowtie2` takes a Bowtie 2 index and a set of sequencing read files and outputs
a set of alignments in SAM format.
"Alignment" is the process by which we discover how and where the read sequences
are similar to the reference sequence. An "alignment" is a result from this
process, specifically: an alignment is a way of "lining up" some or all of the
characters in the read with some characters from the reference in a way that
reveals how they're similar. For example:
Read: GACTGGGCGATCTCGACTTCG
||||| |||||||||| |||
Reference: GACTG--CGATCTCGACATCG
Where dash symbols represent gaps and vertical bars show where aligned
characters match.
We use alignment to make an educated guess as to where a read originated with
respect to the reference genome. It's not always possible to determine this
with certainty. For instance, if the reference genome contains several long
stretches of As (`AAAAAAAAA` etc.) and the read sequence is a short stretch of As
(`AAAAAAA`), we cannot know for certain exactly where in the sea of `A`s the
read originated.
End-to-end alignment versus local alignment
-------------------------------------------
By default, Bowtie 2 performs end-to-end read alignment. That is, it searches
for alignments involving all of the read characters. This is also called an
"untrimmed" or "unclipped" alignment.
When the --local option is specified, Bowtie 2 performs local read alignment. In
this mode, Bowtie 2 might "trim" or "clip" some read characters from one or both
ends of the alignment if doing so maximizes the alignment score.
### End-to-end alignment example
The following is an "end-to-end" alignment because it involves all the
characters in the read. Such an alignment can be produced by Bowtie 2 in either
end-to-end mode or in local mode.
Read: GACTGGGCGATCTCGACTTCG
Reference: GACTGCGATCTCGACATCG
Alignment:
Read: GACTGGGCGATCTCGACTTCG
||||| |||||||||| |||
Reference: GACTG--CGATCTCGACATCG
### Local alignment example
The following is a "local" alignment because some of the characters at the ends
of the read do not participate. In this case, 4 characters are omitted (or
"soft trimmed" or "soft clipped") from the beginning and 3 characters are
omitted from the end. This sort of alignment can be produced by Bowtie 2 only
in local mode.
Read: ACGGTTGCGTTAATCCGCCACG
Reference: TAACTTGCGTTAAATCCGCCTGG
Alignment:
Read: ACGGTTGCGTTAA-TCCGCCACG
||||||||| ||||||
Reference: TAACTTGCGTTAAATCCGCCTGG
Scores: higher = more similar
-----------------------------
An alignment score quantifies how similar the read sequence is to the reference
sequence aligned to. The higher the score, the more similar they are. A score
is calculated by subtracting penalties for each difference (mismatch, gap, etc.)
and, in local alignment mode, adding bonuses for each match.
The scores can be configured with the [`--ma`] (match bonus), [`--mp`] (mismatch
penalty), [`--np`] (penalty for having an N in either the read or the
reference), [`--rdg`] (affine read gap penalty) and [`--rfg`] (affine reference
gap penalty) options.
### End-to-end alignment score example
A mismatched base at a high-quality position in the read receives a penalty of
-6 by default. A length-2 read gap receives a penalty of -11 by default (-5 for
the gap open, -3 for the first extension, -3 for the second extension). Thus,
in end-to-end alignment mode, if the read is 50 bp long and it matches the
reference exactly except for one mismatch at a high-quality position and one
length-2 read gap, then the overall score is -(6 + 11) = -17.
The best possible alignment score in end-to-end mode is 0, which happens when
there are no differences between the read and the reference.
### Local alignment score example
A mismatched base at a high-quality position in the read receives a penalty of
-6 by default. A length-2 read gap receives a penalty of -11 by default (-5 for
the gap open, -3 for the first extension, -3 for the second extension). A base
that matches receives a bonus of +2 be default. Thus, in local alignment mode,
if the read is 50 bp long and it matches the reference exactly except for one
mismatch at a high-quality position and one length-2 read gap, then the overall
score equals the total bonus, 2 * 49, minus the total penalty, 6 + 11, = 81.
The best possible score in local mode equals the match bonus times the length of
the read. This happens when there are no differences between the read and the
reference.
### Valid alignments meet or exceed the minimum score threshold
For an alignment to be considered "valid" (i.e. "good enough") by Bowtie 2, it
must have an alignment score no less than the minimum score threshold. The
threshold is configurable and is expressed as a function of the read length. In
end-to-end alignment mode, the default minimum score threshold is `-0.6 + -0.6 *
L`, where `L` is the read length. In local alignment mode, the default minimum
score threshold is `20 + 8.0 * ln(L)`, where L is the read length. This can be
configured with the [`--score-min`] option. For details on how to set options
like `--score-min` that correspond to functions, see the section on [setting
function options].
Mapping quality: higher = more unique
-------------------------------------
The aligner cannot always assign a read to its point of origin with high
confidence. For instance, a read that originated inside a repeat element might
align equally well to many occurrences of the element throughout the genome,
leaving the aligner with no basis for preferring one over the others.
Aligners characterize their degree of confidence in the point of origin by
reporting a mapping quality: a non-negative integer Q = -10 log10 p, where p is
an estimate of the probability that the alignment does not correspond to the
read's true point of origin. Mapping quality is sometimes abbreviated MAPQ, and
is recorded in the [SAM] `MAPQ` field.
Mapping quality is related to "uniqueness." We say an alignment is unique if it
has a much higher alignment score than all the other possible alignments. The
bigger the gap between the best alignment's score and the second-best
alignment's score, the more unique the best alignment, and the higher its mapping
quality should be.
Accurate mapping qualities are useful for downstream tools like variant callers.
For instance, a variant caller might choose to ignore evidence from alignments
with mapping quality less than, say, 10. A mapping quality of 10 or less
indicates that there is at least a 1 in 10 chance that the read truly originated
elsewhere.
Aligning pairs
--------------
A "paired-end" or "mate-pair" read consists of pair of mates, called mate 1 and
mate 2. Pairs come with a prior expectation about (a) the relative orientation
of the mates, and (b) the distance separating them on the original DNA molecule.
Exactly what expectations hold for a given dataset depends on the lab procedures
used to generate the data. For example, a common lab procedure for producing
pairs is Illumina's Paired-end Sequencing Assay, which yields pairs with a
relative orientation of FR ("forward, reverse") meaning that if mate 1 came from
the Watson strand, mate 2 very likely came from the Crick strand and vice versa.
Also, this protocol yields pairs where the expected genomic distance from end
to end is about 200-500 base pairs.
For simplicity, this manual uses the term "paired-end" to refer to any pair of
reads with some expected relative orientation and distance. Depending on the
protocol, these might actually be referred to as "paired-end" or "mate-paired."
Also, we always refer to the individual sequences making up the pair as "mates."
### Paired inputs
Pairs are often stored in a pair of files, one file containing the mate 1s and
the other containing the mates 2s. The first mate in the file for mate 1 forms
a pair with the first mate in the file for mate 2, the second with the second,
and so on. When aligning pairs with Bowtie 2, specify the file with the mate 1s
mates using the [`-1`] argument and the file with the mate 2s using the [`-2`]
argument. This causes Bowtie 2 to take the paired nature of the reads into
account when aligning them.
### Paired SAM output
When Bowtie 2 prints a SAM alignment for a pair, it prints two records (i.e. two
lines of output), one for each mate. The first record describes the alignment
for mate 1 and the second record describes the alignment for mate 2. In both
records, some of the fields of the SAM record describe various properties of the
alignment; for instance, the 7th and 8th fields (`RNEXT` and `PNEXT`
respectively) indicate the reference name and position where the other mate
aligned, and the 9th field indicates the inferred length of the DNA fragment
from which the two mates were sequenced. See the [SAM specification] for more
details regarding these fields.
### Concordant pairs match pair expectations, discordant pairs don't
A pair that aligns with the expected relative mate orientation and with the
expected range of distances between mates is said to align "concordantly". If
both mates have unique alignments, but the alignments do not match paired-end
expectations (i.e. the mates aren't in the expected relative orientation, or
aren't within the expected distance range, or both), the pair is said to align
"discordantly". Discordant alignments may be of particular interest, for
instance, when seeking [structural variants].
The expected relative orientation of the mates is set using the [`--ff`],
[`--fr`], or [`--rf`] options. The expected range of inter-mates distances (as
measured from the furthest extremes of the mates; also called "outer distance")
is set with the [`-I`][`+I`] and [`-X`][`+X`] options. Note that setting [`-I`][`+I`] and [`-X`][`+X`]
far apart makes Bowtie 2 slower. See documentation for [`-I`][`+I`] and [`-X`][`+X`].
To declare that a pair aligns discordantly, Bowtie 2 requires that both mates
align uniquely. This is a conservative threshold, but this is often desirable
when seeking structural variants.
By default, Bowtie 2 searches for both concordant and discordant alignments,
though searching for discordant alignments can be disabled with the
[`--no-discordant`] option.
### Mixed mode: paired where possible, unpaired otherwise
If Bowtie 2 cannot find a paired-end alignment for a pair, by default it will go
on to look for unpaired alignments for the constituent mates. This is called
"mixed mode." To disable mixed mode, set the [`--no-mixed`] option.
Bowtie 2 runs a little faster in `--no-mixed` mode, but will only consider
alignment status of pairs per se, not individual mates.
### Some SAM FLAGS describe paired-end properties
The SAM `FLAGS` field, the second field in a SAM record, has multiple bits that
describe the paired-end nature of the read and alignment. The first (least
significant) bit (1 in decimal, 0x1 in hexadecimal) is set if the read is part
of a pair. The second bit (2 in decimal, 0x2 in hexadecimal) is set if the read
is part of a pair that aligned in a paired-end fashion. The fourth bit (8 in
decimal, 0x8 in hexadecimal) is set if the read is part of a pair and the other
mate in the pair had at least one valid alignment. The sixth bit (32 in
decimal, 0x20 in hexadecimal) is set if the read is part of a pair and the other
mate in the pair aligned to the Crick strand (or, equivalently, if the reverse
complement of the other mate aligned to the Watson strand). The seventh bit (64
in decimal, 0x40 in hexadecimal) is set if the read is mate 1 in a pair. The
eighth bit (128 in decimal, 0x80 in hexadecimal) is set if the read is mate 2 in
a pair. See the [SAM specification] for a more detailed description of the
`FLAGS` field.
### Some SAM optional fields describe more paired-end properties
The last several fields of each SAM record usually contain SAM optional fields,
which are simply tab-separated strings conveying additional information about
the reads and alignments. A SAM optional field is formatted like this: "XP:i:1"
where "XP" is the `TAG`, "i" is the `TYPE` ("integer" in this case), and "1" is
the `VALUE`. See the [SAM specification] for details regarding SAM optional
fields.
### Mates can overlap, contain, or dovetail each other
The fragment and read lengths might be such that alignments for the two mates
from a pair overlap each other. Consider this example:
(For these examples, assume we expect mate 1 to align to the left of mate 2.)
Mate 1: GCAGATTATATGAGTCAGCTACGATATTGTT
Mate 2: TGTTTGGGGTGACACATTACGCGTCTTTGAC
Reference: GCAGATTATATGAGTCAGCTACGATATTGTTTGGGGTGACACATTACGCGTCTTTGAC
It's also possible, though unusual, for one mate alignment to contain the other,
as in these examples:
Mate 1: GCAGATTATATGAGTCAGCTACGATATTGTTTGGGGTGACACATTACGC
Mate 2: TGTTTGGGGTGACACATTACGC
Reference: GCAGATTATATGAGTCAGCTACGATATTGTTTGGGGTGACACATTACGCGTCTTTGAC
Mate 1: CAGCTACGATATTGTTTGGGGTGACACATTACGC
Mate 2: CTACGATATTGTTTGGGGTGAC
Reference: GCAGATTATATGAGTCAGCTACGATATTGTTTGGGGTGACACATTACGCGTCTTTGAC
And it's also possible, though unusual, for the mates to "dovetail", with the
mates seemingly extending "past" each other as in this example:
Mate 1: GTCAGCTACGATATTGTTTGGGGTGACACATTACGC
Mate 2: TATGAGTCAGCTACGATATTGTTTGGGGTGACACAT
Reference: GCAGATTATATGAGTCAGCTACGATATTGTTTGGGGTGACACATTACGCGTCTTTGAC
In some situations, it's desirable for the aligner to consider all these cases
as "concordant" as long as other paired-end constraints are not violated. Bowtie
2's default behavior is to consider overlapping and containing as being
consistent with concordant alignment. By default, dovetailing is considered
inconsistent with concordant alignment.
These defaults can be overridden. Setting [`--no-overlap`] causes Bowtie 2 to
consider overlapping mates as non-concordant. Setting [`--no-contain`] causes
Bowtie 2 to consider cases where one mate alignment contains the other as
non-concordant. Setting [`--dovetail`] causes Bowtie 2 to consider cases where
the mate alignments dovetail as concordant.
Reporting
---------
The reporting mode governs how many alignments Bowtie 2 looks for, and how to
report them. Bowtie 2 has three distinct reporting modes. The default
reporting mode is similar to the default reporting mode of many other read
alignment tools, including [BWA]. It is also similar to Bowtie 1's `-M`
alignment mode.
In general, when we say that a read has an alignment, we mean that it has a
[valid alignment]. When we say that a read has multiple alignments, we mean
that it has multiple alignments that are valid and distinct from one another.
### Distinct alignments map a read to different places
Two alignments for the same individual read are "distinct" if they map the same
read to different places. Specifically, we say that two alignments are distinct
if there are no alignment positions where a particular read offset is aligned
opposite a particular reference offset in both alignments with the same
orientation. E.g. if the first alignment is in the forward orientation and
aligns the read character at read offset 10 to the reference character at
chromosome 3, offset 3,445,245, and the second alignment is also in the forward
orientation and also aligns the read character at read offset 10 to the
reference character at chromosome 3, offset 3,445,245, they are not distinct
alignments.
Two alignments for the same pair are distinct if either the mate 1s in the two
paired-end alignments are distinct or the mate 2s in the two alignments are
distinct or both.
### Default mode: search for multiple alignments, report the best one
By default, Bowtie 2 searches for distinct, valid alignments for each read. When
it finds a valid alignment, it generally will continue to look for alignments
that are nearly as good or better. It will eventually stop looking, either
because it exceeded a limit placed on search effort (see [`-D`] and [`-R`][`+R`]) or
because it already knows all it needs to know to report an alignment.
Information from the best alignments are used to estimate mapping quality (the
`MAPQ` [SAM] field) and to set SAM optional fields, such as [`AS:i`] and
[`XS:i`]. Bowtie 2 does not guarantee that the alignment reported is the best
possible in terms of alignment score.
See also: [`-D`], which puts an upper limit on the number of dynamic programming
problems (i.e. seed extensions) that can "fail" in a row before Bowtie 2 stops
searching. Increasing [`-D`] makes Bowtie 2 slower, but increases the
likelihood that it will report the correct alignment for a read that aligns many
places.
See also: [`-R`][`+R`], which sets the maximum number of times Bowtie 2 will "re-seed"
when attempting to align a read with repetitive seeds. Increasing [`-R`][`+R`] makes
Bowtie 2 slower, but increases the likelihood that it will report the correct
alignment for a read that aligns many places.
### -k mode: search for one or more alignments, report each
In [`-k`] mode, Bowtie 2 searches for up to N distinct, valid alignments for
each read, where N equals the integer specified with the `-k` parameter. That
is, if `-k 2` is specified, Bowtie 2 will search for at most 2 distinct
alignments. It reports all alignments found, in descending order by alignment
score. The alignment score for a paired-end alignment equals the sum of the
alignment scores of the individual mates. Each reported read or pair alignment
beyond the first has the SAM 'secondary' bit (which equals 256) set in its FLAGS
field. Supplementary alignments will also be assigned a MAPQ of 255.
See the [SAM specification] for details.
Bowtie 2 does not "find" alignments in any specific order, so for reads that
have more than N distinct, valid alignments, Bowtie 2 does not guarantee that
the N alignments reported are the best possible in terms of alignment score.
Still, this mode can be effective and fast in situations where the user cares
more about whether a read aligns (or aligns a certain number of times) than
where exactly it originated.
### -a mode: search for and report all alignments
[`-a`] mode is similar to [`-k`] mode except that there is no upper limit on the
number of alignments Bowtie 2 should report. Alignments are reported in
descending order by alignment score. The alignment score for a paired-end
alignment equals the sum of the alignment scores of the individual mates. Each
reported read or pair alignment beyond the first has the SAM 'secondary' bit
(which equals 256) set in its FLAGS field. Supplementary alignments will be assigned
a MAPQ of 255. See the [SAM specification] for details.
Some tools are designed with this reporting mode in mind. Bowtie 2 is not! For
very large genomes, this mode is very slow.
### Randomness in Bowtie 2
Bowtie 2's search for alignments for a given read is "randomized." That is,
when Bowtie 2 encounters a set of equally-good choices, it uses a pseudo-random
number to choose. For example, if Bowtie 2 discovers a set of 3 equally-good
alignments and wants to decide which to report, it picks a pseudo-random integer
0, 1 or 2 and reports the corresponding alignment. Arbitrary choices can crop up
at various points during alignment.
The pseudo-random number generator is re-initialized for every read, and the
seed used to initialize it is a function of the read name, nucleotide string,
quality string, and the value specified with [`--seed`]. If you run the same
version of Bowtie 2 on two reads with identical names, nucleotide strings, and
quality strings, and if [`--seed`] is set the same for both runs, Bowtie 2 will
produce the same output; i.e., it will align the read to the same place, even if
there are multiple equally good alignments. This is intuitive and desirable in
most cases. Most users expect Bowtie to produce the same output when run twice
on the same input.
However, when the user specifies the [`--non-deterministic`] option, Bowtie 2
will use the current time to re-initialize the pseudo-random number generator.
When this is specified, Bowtie 2 might report different alignments for identical
reads. This is counter-intuitive for some users, but might be more appropriate
in situations where the input consists of many identical reads.
Multiseed heuristic
-------------------
To rapidly narrow the number of possible alignments that must be considered,
Bowtie 2 begins by extracting substrings ("seeds") from the read and its reverse
complement and aligning them in an ungapped fashion with the help of the [FM Index][FM Index Paper].
This is "multiseed alignment" and it is similar to what [Bowtie 1
does], except Bowtie 1 attempts to align the entire read this way.
This initial step makes Bowtie 2 much faster than it would be without such a
filter, but at the expense of missing some valid alignments. For instance, it
is possible for a read to have a valid overall alignment but to have no valid
seed alignments because each potential seed alignment is interrupted by too many
mismatches or gaps.
The trade-off between speed and sensitivity/accuracy can be adjusted by setting
the seed length ([`-L`]), the interval between extracted seeds ([`-i`]), and the
number of mismatches permitted per seed ([`-N`]). For more sensitive alignment,
set these parameters to (a) make the seeds closer together, (b) make the seeds
shorter, and/or (c) allow more mismatches. You can adjust these options
one-by-one, though Bowtie 2 comes with some useful combinations of options
prepackaged as "[preset options]."
[`-D`] and [`-R`][`+R`] are also options that adjust the trade-off between speed and
sensitivity/accuracy.
### FM Index memory footprint
Bowtie 2 uses the [FM Index][FM Index Paper] to find ungapped alignments for seeds. This step
accounts for the bulk of Bowtie 2's memory footprint, as the [FM Index][FM Index Paper] itself
is typically the largest data structure used. For instance, the memory
footprint of the [FM Index][FM Index Paper] for the human genome is about 3.2 gigabytes of RAM.
Ambiguous characters
--------------------
Non-whitespace characters besides A, C, G or T are considered "ambiguous." N is
a common ambiguous character that appears in reference sequences. Bowtie 2
considers all ambiguous characters in the reference (including [IUPAC nucleotide
codes]) to be Ns.
Bowtie 2 allows alignments to overlap ambiguous characters in the reference. An
alignment position that contains an ambiguous character in the read, reference,
or both, is penalized according to [`--np`]. [`--n-ceil`] sets an upper limit
on the number of positions that may contain ambiguous reference characters in a
valid alignment. The optional field [`XN:i`] reports the number of ambiguous
reference characters overlapped by an alignment.
Note that the [multiseed heuristic] cannot find *seed* alignments that overlap
ambiguous reference characters. For an alignment overlapping an ambiguous
reference character to be found, it must have one or more seed alignments that
do not overlap ambiguous reference characters.
Presets: setting many settings at once
--------------------------------------
Bowtie 2 comes with some useful combinations of parameters packaged into shorter
"preset" parameters. For example, running Bowtie 2 with the [`--very-sensitive`]
option is the same as running with options: `-D 20 -R 3 -N 0 -L 20 -i S,1,0.50`.
The preset options that come with Bowtie 2 are designed to cover a wide area of
the speed/sensitivity/accuracy trade-off space, with the presets ending in `fast`
generally being faster but less sensitive and less accurate, and the presets
ending in `sensitive` generally being slower but more sensitive and more
accurate. See the [documentation for the preset options] for details.
As of Bowtie2 v2.4.0, individual preset values can be overridden by providing the
specific options e.g. the configured seed length of 20 in the [`--very-senitive`]
preset above can be changed to 25 by also specifying the `-L 25` parameter
anywhere on the command line.
Filtering
---------
Some reads are skipped or "filtered out" by Bowtie 2. For example, reads may be
filtered out because they are extremely short or have a high proportion of
ambiguous nucleotides. Bowtie 2 will still print a SAM record for such a read,
but no alignment will be reported and the `YF:i` SAM optional field will be
set to indicate the reason the read was filtered.
* `YF:Z:LN`: the read was filtered because it had length less than or equal to
the number of seed mismatches set with the [`-N`] option.
* `YF:Z:NS`: the read was filtered because it contains a number of ambiguous
characters (usually `N` or `.`) greater than the ceiling specified with
[`--n-ceil`].
* `YF:Z:SC`: the read was filtered because the read length and the match bonus
(set with [`--ma`]) are such that the read can't possibly earn an alignment
score greater than or equal to the threshold set with [`--score-min`]
* `YF:Z:QC`: the read was filtered because it was marked as failing quality
control and the user specified the [`--qc-filter`] option. This only happens
when the input is in Illumina's QSEQ format (i.e. when [`--qseq`] is specified)
and the last (11th) field of the read's QSEQ record contains `1`.
If a read could be filtered for more than one reason, the value `YF:Z` flag will
reflect only one of those reasons.
Alignment summary
------------------
When Bowtie 2 finishes running, it prints messages summarizing what happened.
These messages are printed to the "standard error" ("stderr") filehandle. For
datasets consisting of unpaired reads, the summary might look like this:
20000 reads; of these:
20000 (100.00%) were unpaired; of these:
1247 (6.24%) aligned 0 times
18739 (93.69%) aligned exactly 1 time
14 (0.07%) aligned >1 times
93.77% overall alignment rate
For datasets consisting of pairs, the summary might look like this:
10000 reads; of these:
10000 (100.00%) were paired; of these:
650 (6.50%) aligned concordantly 0 times
8823 (88.23%) aligned concordantly exactly 1 time
527 (5.27%) aligned concordantly >1 times
----
650 pairs aligned concordantly 0 times; of these:
34 (5.23%) aligned discordantly 1 time
----
616 pairs aligned 0 times concordantly or discordantly; of these:
1232 mates make up the pairs; of these:
660 (53.57%) aligned 0 times
571 (46.35%) aligned exactly 1 time
1 (0.08%) aligned >1 times
96.70% overall alignment rate
The indentation indicates how subtotals relate to totals.
Wrapper scripts
---------------
The `bowtie2`, `bowtie2-build` and `bowtie2-inspect` executables are actually
wrapper scripts that call binary programs as appropriate. The wrappers shield
users from having to distinguish between "small" and "large" index formats,
discussed briefly in the following section. Also, the `bowtie2` wrapper
provides some key functionality, like the ability to handle compressed inputs,
and the functionality for [`--un`], [`--al`] and related options.
It is recommended that you always run the bowtie2 wrappers and not run the
binaries directly.
Small and large indexes
-----------------------
`bowtie2-build` can index reference genomes of any size. For genomes less than
about 4 billion nucleotides in length, `bowtie2-build` builds a "small" index
using 32-bit numbers in various parts of the index. When the genome is longer,
`bowtie2-build` builds a "large" index using 64-bit numbers. Small indexes are
stored in files with the `.bt2` extension, and large indexes are stored in
files with the `.bt2l` extension. The user need not worry about whether a
particular index is small or large; the wrapper scripts will automatically build
and use the appropriate index.
Performance tuning
------------------
1. If your computer has multiple processors/cores, use `-p`
The [`-p`] option causes Bowtie 2 to launch a specified number of parallel
search threads. Each thread runs on a different processor/core and all
threads find alignments in parallel, increasing alignment throughput by
approximately a multiple of the number of threads (though in practice,
speedup is somewhat worse than linear).
2. If reporting many alignments per read, try reducing
`bowtie2-build --offrate`
If you are using [`-k`] or [`-a`] options and Bowtie 2 is reporting many
alignments per read, using an index with a denser SA sample can speed
things up considerably. To do this, specify a smaller-than-default
[`-o`/`--offrate`] value when running `bowtie2-build`.
A denser SA sample yields a larger index, but is also particularly
effective at speeding up alignment when many alignments are reported per
read.
3. If `bowtie2` "thrashes", try increasing `bowtie2-build --offrate`
If `bowtie2` runs very slowly on a relatively low-memory computer, try
setting [`-o`/`--offrate`] to a *larger* value when building the index.
This decreases the memory footprint of the index.
Command Line
------------
### Setting function options
Some Bowtie 2 options specify a function rather than an individual number or
setting. In these cases the user specifies three parameters: (a) a function
type `F`, (b) a constant term `B`, and (c) a coefficient `A`. The available
function types are constant (`C`), linear (`L`), square-root (`S`), and natural
log (`G`). The parameters are specified as `F,B,A` - that is, the function type,
the constant term, and the coefficient are separated by commas with no
whitespace. The constant term and coefficient may be negative and/or
floating-point numbers.
For example, if the function specification is `L,-0.4,-0.6`, then the function
defined is:
f(x) = -0.4 + -0.6 * x
If the function specification is `G,1,5.4`, then the function defined is:
f(x) = 1.0 + 5.4 * ln(x)
See the documentation for the option in question to learn what the parameter `x`
is for. For example, in the case if the [`--score-min`] option, the function
`f(x)` sets the minimum alignment score necessary for an alignment to be
considered valid, and `x` is the read length.
### Usage
bowtie2 [options]* -x <bt2-idx> {-1 <m1> -2 <m2> | -U <r> | --interleaved <i> | --sra-acc <acc> | -b <bam>} -S [<sam>]
### Main arguments
<table><tr><td id="bowtie2-options-x">
-x <bt2-idx>
</td><td>
The basename of the index for the reference genome. The basename is the name of
any of the index files up to but not including the final `.1.bt2` / `.rev.1.bt2`
/ etc. `bowtie2` looks for the specified index first in the current directory,
then in the directory specified in the `BOWTIE2_INDEXES` environment variable.
</td></tr>
<tr><td id="bowtie2-options-1">
-1 <m1>
</td><td>
Comma-separated list of files containing mate 1s (filename usually includes
`_1`), e.g. `-1 flyA_1.fq,flyB_1.fq`. Sequences specified with this option must
correspond file-for-file and read-for-read with those specified in `<m2>`. Reads
may be a mix of different lengths. If `-` is specified, `bowtie2` will read the
mate 1s from the "standard in" or "stdin" filehandle.
</td></tr>
<tr><td id="bowtie2-options-2">
-2 <m2>
</td><td>
Comma-separated list of files containing mate 2s (filename usually includes
`_2`), e.g. `-2 flyA_2.fq,flyB_2.fq`. Sequences specified with this option must
correspond file-for-file and read-for-read with those specified in `<m1>`. Reads
may be a mix of different lengths. If `-` is specified, `bowtie2` will read the
mate 2s from the "standard in" or "stdin" filehandle.
</td></tr>
<tr><td id="bowtie2-options-U">
-U <r>
</td><td>
Comma-separated list of files containing unpaired reads to be aligned, e.g.
`lane1.fq,lane2.fq,lane3.fq,lane4.fq`. Reads may be a mix of different lengths.
If `-` is specified, `bowtie2` gets the reads from the "standard in" or "stdin"
filehandle.
</td></tr>
<tr><td id="bowtie2-options-interleaved">
--interleaved
</td><td>
Reads interleaved FASTQ files where the first two records (8 lines)
represent a mate pair.
</td></tr>
<tr><td id="bowtie2-options-sra-acc">
--sra-acc
</td><td>
Reads are SRA accessions. If the accession provided cannot be found in
local storage it will be fetched from the NCBI database. If you find that
SRA alignments are long running please rerun your command with the
[`-p`/`--threads`] parameter set to desired number of threads.
NB: this option is only available if bowtie 2 is compiled with the necessary
SRA libraries. See [Obtaining Bowtie 2][obtain Bowtie 2] for details.
</td></tr>
<tr><td id="bowtie2-options-b">
-b <bam>
</td><td>
Reads are unaligned BAM records sorted by read name.
The [`--align-paired-reads`] and [`--preserve-tags`] options
affect the way Bowtie 2 processes records.
</td></tr>
<tr><td id="bowtie2-options-S">
-S <sam>
</td><td>
File to write SAM alignments to. By default, alignments are written to the
"standard out" or "stdout" filehandle (i.e. the console).
</td></tr></table>
### Options
#### Input options
<table>
<tr><td id="bowtie2-options-q">
-q
</td><td>
Reads (specified with `<m1>`, `<m2>`, `<s>`) are FASTQ files. FASTQ files
usually have extension `.fq` or `.fastq`. FASTQ is the default format. See
also: [`--solexa-quals`] and [`--int-quals`].
</td></tr>
<tr><td id="bowtie2-options-tab5">
--tab5
</td><td>
Each read or pair is on a single line. An unpaired read line is
`[name]\t[seq]\t[qual]\n`. A paired-end read line is
`[name]\t[seq1]\t[qual1]\t[seq2]\t[qual2]\n`. An input file can be a
mix of unpaired and paired-end reads and Bowtie 2 recognizes each
according to the number of fields, handling each as it should.
</td></tr>
<tr><td id="bowtie2-options-tab6">
--tab6
</td><td>
Similar to [`--tab5`] except, for paired-end reads, the second end can have a
different name from the first:
`[name1]\t[seq1]\t[qual1]\t[name2]\t[seq2]\t[qual2]\n`
</td></tr>
<tr><td id="bowtie2-options-qseq">
--qseq
</td><td>
Reads (specified with `<m1>`, `<m2>`, `<s>`) are QSEQ files. QSEQ files usually
end in `_qseq.txt`. See also: [`--solexa-quals`] and [`--int-quals`].
</td></tr>
<tr><td id="bowtie2-options-f">
-f
</td><td>
Reads (specified with `<m1>`, `<m2>`, `<s>`) are [`FASTA`] files. [`FASTA`] files
usually have extension `.fa`, `.fasta`, `.mfa`, `.fna` or similar. [`FASTA`] files
do not have a way of specifying quality values, so when `-f` is set, the result
is as if [`--ignore-quals`] is also set.
</td></tr>
<tr><td id="bowtie2-options-r">
-r
</td><td>
Reads (specified with `<m1>`, `<m2>`, `<s>`) are files with one input sequence
per line, without any other information (no read names, no qualities). When
`-r` is set, the result is as if [`--ignore-quals`] is also set.
</td></tr>
<tr><td id="bowtie2-options-F">
-F k:<int>,i:<int>
</td><td>
Reads are substrings (k-mers) extracted from a FASTA file.
Specifically, for every reference sequence in the FASTA file, Bowtie
2 aligns the k-mers at offsets 1, 1+i, 1+2i, ... until reaching the
end of the reference. Each k-mer is aligned as a separate read.
Quality values are set to all Is (40 on Phred scale). Each k-mer
(read) is given a name like `<sequence>_<offset>`, where `<sequence>`
is the name of the FASTA sequence it was drawn from and `<offset>`
is its 0-based offset of origin with respect to the sequence. Only
single k-mers, i.e. unpaired reads, can be aligned in this way.
</td></tr>
<tr><td id="bowtie2-options-c">
-c
</td><td>
The read sequences are given on command line. I.e. `<m1>`, `<m2>` and
`<singles>` are comma-separated lists of reads rather than lists of read files.
There is no way to specify read names or qualities, so `-c` also implies
[`--ignore-quals`].
</td></tr>
<tr><td id="bowtie2-options-s">
-s/--skip <int>
</td><td>
Skip (i.e. do not align) the first `<int>` reads or pairs in the input.
</td></tr>
<tr><td id="bowtie2-options-u">
-u/--qupto <int>
</td><td>
Align the first `<int>` reads or read pairs from the input (after the
[`-s`/`--skip`] reads or pairs have been skipped), then stop. Default: no limit.
</td></tr>
<tr><td id="bowtie2-options-5">
-5/--trim5 <int>
</td><td>
Trim `<int>` bases from 5' (left) end of each read before alignment (default: 0).
</td></tr>
<tr><td id="bowtie2-options-3">
-3/--trim3 <int>
</td><td>
Trim `<int>` bases from 3' (right) end of each read before alignment (default: 0).
</td></tr><tr><td id="bowtie2-options-trim-to">
--trim-to [3:|5:]<int>
</td><td>
Trim reads exceeding `<int>` bases. Bases will be trimmed from either the 3' (right)
or 5' (left) end of the read. If the read end if not specified, bowtie 2 will default
to trimming from the 3' (right) end of the read. [`--trim-to`] and [`-3`]/[`-5`] are
mutually exclusive.
</td></tr><tr><td id="bowtie2-options-phred33-quals">
--phred33
</td><td>
Input qualities are ASCII chars equal to the [Phred quality] plus 33. This is
also called the "Phred+33" encoding, which is used by the very latest Illumina
pipelines.
</td></tr>
<tr><td id="bowtie2-options-phred64-quals">
--phred64
</td><td>
Input qualities are ASCII chars equal to the [Phred quality] plus 64. This is
also called the "Phred+64" encoding.
</td></tr>
<tr><td id="bowtie2-options-solexa-quals">
--solexa-quals
</td><td>
Convert input qualities from [Solexa][Phred quality] (which can be negative) to
[Phred][Phred quality] (which can't). This scheme was used in older Illumina GA
Pipeline versions (prior to 1.3). Default: off.
</td></tr>
<tr><td id="bowtie2-options-int-quals">
--int-quals
</td><td>
Quality values are represented in the read input file as space-separated ASCII
integers, e.g., `40 40 30 40`..., rather than ASCII characters, e.g., `II?I`....
Integers are treated as being on the [Phred quality] scale unless
[`--solexa-quals`] is also specified. Default: off.
</td></tr></table>
#### Preset options in `--end-to-end` mode
<table>
<tr><td id="bowtie2-options-very-fast">
--very-fast
</td><td>
Same as: `-D 5 -R 1 -N 0 -L 22 -i S,0,2.50`
</td></tr>
<tr><td id="bowtie2-options-fast">
--fast
</td><td>
Same as: `-D 10 -R 2 -N 0 -L 22 -i S,0,2.50`
</td></tr>
<tr><td id="bowtie2-options-sensitive">
--sensitive
</td><td>
Same as: `-D 15 -R 2 -N 0 -L 22 -i S,1,1.15` (default in [`--end-to-end`] mode)
</td></tr>
<tr><td id="bowtie2-options-very-sensitive">
--very-sensitive
</td><td>
Same as: `-D 20 -R 3 -N 0 -L 20 -i S,1,0.50`
</td></tr>
</table>
#### Preset options in `--local` mode
<table>
<tr><td id="bowtie2-options-very-fast-local">
--very-fast-local
</td><td>
Same as: `-D 5 -R 1 -N 0 -L 25 -i S,1,2.00`
</td></tr>
<tr><td id="bowtie2-options-fast-local">
--fast-local
</td><td>
Same as: `-D 10 -R 2 -N 0 -L 22 -i S,1,1.75`
</td></tr>
<tr><td id="bowtie2-options-sensitive-local">
--sensitive-local
</td><td>
Same as: `-D 15 -R 2 -N 0 -L 20 -i S,1,0.75` (default in [`--local`] mode)
</td></tr>
<tr><td id="bowtie2-options-very-sensitive-local">
--very-sensitive-local
</td><td>
Same as: `-D 20 -R 3 -N 0 -L 20 -i S,1,0.50`
</td></tr>
</table>
#### Alignment options
<table>
<tr><td id="bowtie2-options-N">
-N <int>
</td><td>
Sets the number of mismatches to allowed in a seed alignment during [multiseed
alignment]. Can be set to 0 or 1. Setting this higher makes alignment slower
(often much slower) but increases sensitivity. Default: 0.
</td></tr>
<tr><td id="bowtie2-options-L">
-L <int>
</td><td>
Sets the length of the seed substrings to align during [multiseed alignment].
Smaller values make alignment slower but more sensitive. Default: the
[`--sensitive`] preset is used by default, which sets `-L` to 22 and
20 in [`--end-to-end`] mode and in [`--local`] mode.
</td></tr>
<tr><td id="bowtie2-options-i">
-i <func>
</td><td>
Sets a function governing the interval between seed substrings to use during
[multiseed alignment]. For instance, if the read has 30 characters, and seed
length is 10, and the seed interval is 6, the seeds extracted will be:
Read: TAGCTACGCTCTACGCTATCATGCATAAAC
Seed 1 fw: TAGCTACGCT
Seed 1 rc: AGCGTAGCTA
Seed 2 fw: CGCTCTACGC
Seed 2 rc: GCGTAGAGCG
Seed 3 fw: ACGCTATCAT
Seed 3 rc: ATGATAGCGT
Seed 4 fw: TCATGCATAA
Seed 4 rc: TTATGCATGA
Since it's best to use longer intervals for longer reads, this parameter sets
the interval as a function of the read length, rather than a single
one-size-fits-all number. For instance, specifying `-i S,1,2.5` sets the
interval function `f` to `f(x) = 1 + 2.5 * sqrt(x)`, where x is the read length.
See also: [setting function options]. If the function returns a result less than
1, it is rounded up to 1. Default: the [`--sensitive`] preset is used by
default, which sets `-i` to `S,1,1.15` in [`--end-to-end`] mode to `-i S,1,0.75`
in [`--local`] mode.
</td></tr>
<tr><td id="bowtie2-options-n-ceil">
--n-ceil <func>
</td><td>
Sets a function governing the maximum number of ambiguous characters (usually
`N`s and/or `.`s) allowed in a read as a function of read length. For instance,
specifying `-L,0,0.15` sets the N-ceiling function `f` to `f(x) = 0 + 0.15 * x`,
where x is the read length. See also: [setting function options]. Reads
exceeding this ceiling are [filtered out]. Default: `L,0,0.15`.
</td></tr>
<tr><td id="bowtie2-options-dpad">
--dpad <int>
</td><td>
"Pads" dynamic programming problems by `<int>` columns on either side to allow
gaps. Default: 15.
</td></tr>
<tr><td id="bowtie2-options-gbar">
--gbar <int>
</td><td>
Disallow gaps within `<int>` positions of the beginning or end of the read.
Default: 4.
</td></tr>
<tr><td id="bowtie2-options-ignore-quals">
--ignore-quals
</td><td>
When calculating a mismatch penalty, always consider the quality value at the
mismatched position to be the highest possible, regardless of the actual value.
I.e. input is treated as though all quality values are high. This is also the
default behavior when the input doesn't specify quality values (e.g. in [`-f`],
[`-r`], or [`-c`] modes).
</td></tr>
<tr><td id="bowtie2-options-nofw">
--nofw/--norc
</td><td>
If `--nofw` is specified, `bowtie2` will not attempt to align unpaired reads to
the forward (Watson) reference strand. If `--norc` is specified, `bowtie2` will
not attempt to align unpaired reads against the reverse-complement (Crick)
reference strand. In paired-end mode, `--nofw` and `--norc` pertain to the
fragments; i.e. specifying `--nofw` causes `bowtie2` to explore only those
paired-end configurations corresponding to fragments from the reverse-complement
(Crick) strand. Default: both strands enabled.
</td></tr>
<tr><td id="bowtie2-options-no-1mm-upfront">
--no-1mm-upfront
</td><td>
By default, Bowtie 2 will attempt to find either an exact or a 1-mismatch
end-to-end alignment for the read *before* trying the [multiseed heuristic]. Such
alignments can be found very quickly, and many short read alignments have exact or
near-exact end-to-end alignments. However, this can lead to unexpected
alignments when the user also sets options governing the [multiseed heuristic],
like [`-L`] and [`-N`]. For instance, if the user specifies `-N 0` and `-L` equal
to the length of the read, the user will be surprised to find 1-mismatch alignments
reported. This option prevents Bowtie 2 from searching for 1-mismatch end-to-end
alignments before using the [multiseed heuristic], which leads to the expected
behavior when combined with options such as [`-L`] and [`-N`]. This comes at the
expense of speed.
</td></tr><tr><td id="bowtie2-options-end-to-end">
--end-to-end
</td><td>
In this mode, Bowtie 2 requires that the entire read align from one end to the
other, without any trimming (or "soft clipping") of characters from either end.
The match bonus [`--ma`] always equals 0 in this mode, so all alignment scores
are less than or equal to 0, and the greatest possible alignment score is 0.
This is mutually exclusive with [`--local`]. `--end-to-end` is the default mode.
</td></tr>
<tr><td id="bowtie2-options-local">
--local
</td><td>
In this mode, Bowtie 2 does not require that the entire read align from one end
to the other. Rather, some characters may be omitted ("soft clipped") from the
ends in order to achieve the greatest possible alignment score. The match bonus
[`--ma`] is used in this mode, and the best possible alignment score is equal to
the match bonus ([`--ma`]) times the length of the read. Specifying `--local`
and one of the presets (e.g. `--local --very-fast`) is equivalent to specifying
the local version of the preset (`--very-fast-local`). This is mutually
exclusive with [`--end-to-end`]. `--end-to-end` is the default mode.
</td></tr>
</table>
#### Scoring options
<table>
<tr><td id="bowtie2-options-ma">
--ma <int>
</td><td>
Sets the match bonus. In [`--local`] mode `<int>` is added to the alignment
score for each position where a read character aligns to a reference character
and the characters match. Not used in [`--end-to-end`] mode. Default: 2.
</td></tr>
<tr><td id="bowtie2-options-mp">
--mp MX,MN
</td><td>
Sets the maximum (`MX`) and minimum (`MN`) mismatch penalties, both integers. A
number less than or equal to `MX` and greater than or equal to `MN` is
subtracted from the alignment score for each position where a read character
aligns to a reference character, the characters do not match, and neither is an
`N`. If [`--ignore-quals`] is specified, the number subtracted quals `MX`.
Otherwise, the number subtracted is `MN + floor( (MX-MN)(MIN(Q, 40.0)/40.0) )`
where Q is the Phred quality value. Default: `MX` = 6, `MN` = 2.
</td></tr>
<tr><td id="bowtie2-options-np">
--np <int>
</td><td>
Sets penalty for positions where the read, reference, or both, contain an
ambiguous character such as `N`. Default: 1.
</td></tr>
<tr><td id="bowtie2-options-rdg">
--rdg <int1>,<int2>
</td><td>
Sets the read gap open (`<int1>`) and extend (`<int2>`) penalties. A read gap of
length N gets a penalty of `<int1>` + N * `<int2>`. Default: 5, 3.
</td></tr>
<tr><td id="bowtie2-options-rfg">
--rfg <int1>,<int2>
</td><td>
Sets the reference gap open (`<int1>`) and extend (`<int2>`) penalties. A
reference gap of length N gets a penalty of `<int1>` + N * `<int2>`. Default:
5, 3.
</td></tr>
<tr><td id="bowtie2-options-score-min">
--score-min <func>
</td><td>
Sets a function governing the minimum alignment score needed for an alignment to
be considered "valid" (i.e. good enough to report). This is a function of read
length. For instance, specifying `L,0,-0.6` sets the minimum-score function `f`
to `f(x) = 0 + -0.6 * x`, where `x` is the read length. See also: [setting
function options]. The default in [`--end-to-end`] mode is `L,-0.6,-0.6` and
the default in [`--local`] mode is `G,20,8`.
</td></tr>
</table>
#### Reporting options
<table>
<tr><td id="bowtie2-options-k">
-k <int>
</td><td>
By default, `bowtie2` searches for distinct, valid alignments for each read.
When it finds a valid alignment, it continues looking for alignments that are
nearly as good or better. The best alignment found is reported (randomly
selected from among best if tied). Information about the best alignments is
used to estimate mapping quality and to set SAM optional fields, such as
[`AS:i`] and [`XS:i`].
When `-k` is specified, however, `bowtie2` behaves differently. Instead, it
searches for at most `<int>` distinct, valid alignments for each read. The
search terminates when it can't find more distinct valid alignments, or when it
finds `<int>`, whichever happens first. All alignments found are reported in
descending order by alignment score. The alignment score for a paired-end
alignment equals the sum of the alignment scores of the individual mates. Each
reported read or pair alignment beyond the first has the SAM 'secondary' bit
(which equals 256) set in its FLAGS field. For reads that have more than
`<int>` distinct, valid alignments, `bowtie2` does not guarantee that the
`<int>` alignments reported are the best possible in terms of alignment score.
`-k` is mutually exclusive with [`-a`].
Note: Bowtie 2 is not designed with large values for `-k` in mind, and when
aligning reads to long, repetitive genomes large `-k` can be very, very slow.
</td></tr>
<tr><td id="bowtie2-options-a">
-a
</td><td>
Like [`-k`] but with no upper limit on number of alignments to search for. `-a`
is mutually exclusive with [`-k`].
Note: Bowtie 2 is not designed with `-a` mode in mind, and when
aligning reads to long, repetitive genomes this mode can be very, very slow.
</td></tr>
</table>
#### Effort options
<table>
<tr><td id="bowtie2-options-D">
-D <int>
</td><td>
Up to `<int>` consecutive seed extension attempts can "fail" before Bowtie 2
moves on, using the alignments found so far. A seed extension "fails" if it
does not yield a new best or a new second-best alignment. This limit is
automatically adjusted up when -k or -a are specified. Default: 15.
</td></tr>
<tr><td id="bowtie2-options-R">
-R <int>
</td><td>
`<int>` is the maximum number of times Bowtie 2 will "re-seed" reads with
repetitive seeds. When "re-seeding," Bowtie 2 simply chooses a new set of reads
(same length, same number of mismatches allowed) at different offsets and
searches for more alignments. A read is considered to have repetitive seeds if
the total number of seed hits divided by the number of seeds that aligned at
least once is greater than 300. Default: 2.
</td></tr>
<tr><td id="bowtie2-options-d">
-d/--deterministic-seeds
</td><td>
Consider all seeds in order (no subsampling). Can be used to augment
[`-a`] or [`-k`] with deterministic behavior. This option
significantly speeds up [`-a`] while also reducing memory consumption.
It is not however always strictly better than standalone `[-a]` when
considering the number of repeated alignments found.
Note: In order to use this option exact upfront and 1mm upfront behavior
have to be disabled using the following options: [`--no-exact-upfront`]
and [`--no-1mm-upfront`].
</td></tr>
</table>
#### Paired-end options
<table>
<tr><td id="bowtie2-options-I">
-I/--minins <int>
</td><td>
The minimum fragment length for valid paired-end alignments. E.g. if `-I 60` is
specified and a paired-end alignment consists of two 20-bp alignments in the
appropriate orientation with a 20-bp gap between them, that alignment is
considered valid (as long as [`-X`][`+X`] is also satisfied). A 19-bp gap would not
be valid in that case. If trimming options [`-3`] or [`-5`] are also used, the
[`-I`][`+I`] constraint is applied with respect to the untrimmed mates.
The larger the difference between [`-I`][`+I`] and [`-X`][`+X`], the slower Bowtie 2 will
run. This is because larger differences between [`-I`][`+I`] and [`-X`][`+X`] require that
Bowtie 2 scan a larger window to determine if a concordant alignment exists.
For typical fragment length ranges (200 to 400 nucleotides), Bowtie 2 is very
efficient.
Default: 0 (essentially imposing no minimum)
</td></tr>
<tr><td id="bowtie2-options-X">
-X/--maxins <int>
</td><td>
The maximum fragment length for valid paired-end alignments. E.g. if `-X 100`
is specified and a paired-end alignment consists of two 20-bp alignments in the
proper orientation with a 60-bp gap between them, that alignment is considered
valid (as long as [`-I`][`+I`] is also satisfied). A 61-bp gap would not be valid in
that case. If trimming options [`-3`] or [`-5`] are also used, the `-X`
constraint is applied with respect to the untrimmed mates, not the trimmed
mates.
The larger the difference between [`-I`][`+I`] and [`-X`][`+X`], the slower Bowtie 2 will
run. This is because larger differences between [`-I`][`+I`] and [`-X`][`+X`] require that
Bowtie 2 scan a larger window to determine if a concordant alignment exists.
For typical fragment length ranges (200 to 400 nucleotides), Bowtie 2 is very
efficient.
Default: 500.
</td></tr>
<tr><td id="bowtie2-options-fr">
--fr/--rf/--ff
</td><td>
The upstream/downstream mate orientations for a valid paired-end alignment
against the forward reference strand. E.g., if `--fr` is specified and there is
a candidate paired-end alignment where mate 1 appears upstream of the reverse
complement of mate 2 and the fragment length constraints ([`-I`][`+I`] and [`-X`][`+X`]) are
met, that alignment is valid. Also, if mate 2 appears upstream of the reverse
complement of mate 1 and all other constraints are met, that too is valid.
`--rf` likewise requires that an upstream mate1 be reverse-complemented and a
downstream mate2 be forward-oriented. ` --ff` requires both an upstream mate 1
and a downstream mate 2 to be forward-oriented. Default: `--fr` (appropriate
for Illumina's Paired-end Sequencing Assay).
</td></tr>
<tr><td id="bowtie2-options-no-mixed">
--no-mixed
</td><td>
By default, when `bowtie2` cannot find a concordant or discordant alignment for
a pair, it then tries to find alignments for the individual mates. This option
disables that behavior.
</td></tr>
<tr><td id="bowtie2-options-no-discordant">
--no-discordant
</td><td>
By default, `bowtie2` looks for discordant alignments if it cannot find any
concordant alignments. A discordant alignment is an alignment where both mates
align uniquely, but that does not satisfy the paired-end constraints
([`--fr`/`--rf`/`--ff`], [`-I`][`+I`], [`-X`][`+X`]). This option disables that behavior.
</td></tr>
<tr><td id="bowtie2-options-dovetail">
--dovetail
</td><td>
If the mates "dovetail", that is if one mate alignment extends past the
beginning of the other such that the wrong mate begins upstream, consider that
to be concordant. See also: [Mates can overlap, contain or dovetail each
other]. Default: mates cannot dovetail in a concordant alignment.
</td></tr>
<tr><td id="bowtie2-options-no-contain">
--no-contain
</td><td>
If one mate alignment contains the other, consider that to be non-concordant.
See also: [Mates can overlap, contain or dovetail each other]. Default: a mate
can contain the other in a concordant alignment.
</td></tr>
<tr><td id="bowtie2-options-no-overlap">
--no-overlap
</td><td>
If one mate alignment overlaps the other at all, consider that to be
non-concordant. See also: [Mates can overlap, contain or dovetail each other].
Default: mates can overlap in a concordant alignment.
</td></tr></table>
#### BAM options
<table>
<tr><td id="bowtie2-options-align-paired-reads">
--align-paired-reads
</td><td>
Bowtie 2 will, by default, attempt to align unpaired BAM reads.
Use this option to align paired-end reads instead.
</td></tr>
<tr><td id="bowtie2-options-preserve-tags">
--preserve-tags
</td><td>
Preserve tags from the original BAM record by appending them to the end
of the corresponding Bowtie 2 SAM output.
</td></tr></table>
#### Output options
<table>
<tr><td id="bowtie2-options-t">
-t/--time
</td><td>
Print the wall-clock time required to load the index files and align the reads.
This is printed to the "standard error" ("stderr") filehandle. Default: off.
</td></tr>
<tr><td id="bowtie2-options-un">
--un <path>
--un-gz <path>
--un-bz2 <path>
--un-lz4 <path>
</td><td>
Write unpaired reads that fail to align to file at `<path>`. These reads
correspond to the SAM records with the FLAGS `0x4` bit set and neither the
`0x40` nor `0x80` bits set. If `--un-gz` is specified, output will be gzip
compressed. If `--un-bz2` or `--un-lz4` is specified, output will be bzip2 or
lz4 compressed. Reads written in this way will appear exactly as they did in
the input file, without any modification (same sequence, same name, same quality
string, same quality encoding). Reads will not necessarily appear in the same
order as they did in the input.
</td></tr>
<tr><td id="bowtie2-options-al">
--al <path>
--al-gz <path>
--al-bz2 <path>
--al-lz4 <path>
</td><td>
Write unpaired reads that align at least once to file at `<path>`. These reads
correspond to the SAM records with the FLAGS `0x4`, `0x40`, and `0x80` bits
unset. If `--al-gz` is specified, output will be gzip compressed. If `--al-bz2`
is specified, output will be bzip2 compressed. Similarly if `--al-lz4` is specified,
output will be lz4 compressed. Reads written in this way will
appear exactly as they did in the input file, without any modification (same
sequence, same name, same quality string, same quality encoding). Reads will
not necessarily appear in the same order as they did in the input.
</td></tr>
<tr><td id="bowtie2-options-un-conc">
--un-conc <path>
--un-conc-gz <path>
--un-conc-bz2 <path>
--un-conc-lz4 <path>
</td><td>
Write paired-end reads that fail to align concordantly to file(s) at `<path>`.
These reads correspond to the SAM records with the FLAGS `0x4` bit set and
either the `0x40` or `0x80` bit set (depending on whether it's mate #1 or #2).
`.1` and `.2` strings are added to the filename to distinguish which file
contains mate #1 and mate #2. If a percent symbol, `%`, is used in `<path>`,
the percent symbol is replaced with `1` or `2` to make the per-mate filenames.
Otherwise, `.1` or `.2` are added before the final dot in `<path>` to make the
per-mate filenames. Reads written in this way will appear exactly as they did
in the input files, without any modification (same sequence, same name, same
quality string, same quality encoding). Reads will not necessarily appear in
the same order as they did in the inputs.
</td></tr>
<tr><td id="bowtie2-options-al-conc">
--al-conc <path>
--al-conc-gz <path>
--al-conc-bz2 <path>
--al-conc-lz4 <path>
</td><td>
Write paired-end reads that align concordantly at least once to file(s) at
`<path>`. These reads correspond to the SAM records with the FLAGS `0x4` bit
unset and either the `0x40` or `0x80` bit set (depending on whether it's mate #1
or #2). `.1` and `.2` strings are added to the filename to distinguish which
file contains mate #1 and mate #2. If a percent symbol, `%`, is used in
`<path>`, the percent symbol is replaced with `1` or `2` to make the per-mate
filenames. Otherwise, `.1` or `.2` are added before the final dot in `<path>` to
make the per-mate filenames. Reads written in this way will appear exactly as
they did in the input files, without any modification (same sequence, same name,
same quality string, same quality encoding). Reads will not necessarily appear
in the same order as they did in the inputs.
</td></tr>
<tr><td id="bowtie2-options-quiet">
--quiet
</td><td>
Print nothing besides alignments and serious errors.
</td></tr>
<tr><td id="bowtie2-options-met-file">
--met-file <path>
</td><td>
Write `bowtie2` metrics to file `<path>`. Having alignment metric can be useful
for debugging certain problems, especially performance issues. See also:
[`--met`]. Default: metrics disabled.
</td></tr>
<tr><td id="bowtie2-options-met-stderr">
--met-stderr <path>
</td><td>
Write `bowtie2` metrics to the "standard error" ("stderr") filehandle. This is
not mutually exclusive with [`--met-file`]. Having alignment metric can be
useful for debugging certain problems, especially performance issues. See also:
[`--met`]. Default: metrics disabled.
</td></tr>
<tr><td id="bowtie2-options-met">
--met <int>
</td><td>
Write a new `bowtie2` metrics record every `<int>` seconds. Only matters if
either [`--met-stderr`] or [`--met-file`] are specified. Default: 1.
</td></tr>
</table>
#### SAM options
<table>
<tr><td id="bowtie2-options-no-unal">
--no-unal
</td><td>
Suppress SAM records for reads that failed to align.
</td></tr>
<tr><td id="bowtie2-options-no-hd">
--no-hd
</td><td>
Suppress SAM header lines (starting with `@`).
</td></tr>
<tr><td id="bowtie2-options-no-sq">
--no-sq
</td><td>
Suppress `@SQ` SAM header lines.
</td></tr>
<tr><td id="bowtie2-options-rg-id">
--rg-id <text>
</td><td>
Set the read group ID to `<text>`. This causes the SAM `@RG` header line to be
printed, with `<text>` as the value associated with the `ID:` tag. It also
causes the `RG:Z:` extra field to be attached to each SAM output record, with
value set to `<text>`.
</td></tr>
<tr><td id="bowtie2-options-rg">
--rg <text>
</td><td>
Add `<text>` (usually of the form `TAG:VAL`, e.g. `SM:Pool1`) as a field on the
`@RG` header line. Note: in order for the `@RG` line to appear, [`--rg-id`]
must also be specified. This is because the `ID` tag is required by the [SAM
Spec][SAM]. Specify `--rg` multiple times to set multiple fields. See the
[SAM Spec][SAM] for details about what fields are legal.
</td></tr>
<tr><td id="bowtie2-options-omit-sec-seq">
--omit-sec-seq
</td><td>
When printing secondary alignments, Bowtie 2 by default will write out the `SEQ`
and `QUAL` strings. Specifying this option causes Bowtie 2 to print an asterisk
in those fields instead.
</td></tr>
<tr><td id="bowtie2-options-soft-clipped-unmapped-tlen">
--soft-clipped-unmapped-tlen
</td><td>
Consider soft-clipped bases unmapped when calculating `TLEN`. Only available
in [`--local`] mode.
</td></tr>
<tr><td id="bowtie2-options-sam-no-qname-trunc">
--sam-no-qname-trunc
</td><td>
Suppress standard behavior of truncating readname at first whitespace
at the expense of generating non-standard SAM
</td></tr>
<tr><td id="bowtie2-options-xeq">
--xeq
</td><td>
Use `'='/'X'`, instead of `'M'`, to specify matches/mismatches in SAM record
</td></tr>
<tr><td id="bowtie2-options-sam-append-comment">
--sam-append-comment
</td><td>
Append FASTA/FASTQ comment to SAM record, where a comment is everything
after the first space in the read name.
</td></tr>
<tr><td id="bowtie2-options-sam-opt-config">
--sam-opt-config <config>
</td><td>
Use `<config>` to toggle SAM Optional Fields where `<config>` is a
string of comma delimited, case-insensitive, two-letter tags. Tags
prefixed with a "-" will be turned off and hence will not be included
in the SAM output. The example below turns off the "MD" tag and
enables the `bowtie2`-specific "YP" tag. The config is additive, so,
any default OPT flags that need to be turned off will have to
explicitly specified.
`bowtie2 ... --sam-opt-config "-md,yp"
</td></tr>
</table>
#### Performance options
<table><tr>
<td id="bowtie2-options-o">
-o/--offrate <int>
</td><td>
Override the offrate of the index with `<int>`. If `<int>` is greater
than the offrate used to build the index, then some row markings are
discarded when the index is read into memory. This reduces the memory
footprint of the aligner but requires more time to calculate text
offsets. `<int>` must be greater than the value used to build the
index.
</td></tr>
<tr><td id="bowtie2-options-p">
-p/--threads NTHREADS
</td><td>
Launch `NTHREADS` parallel search threads (default: 1). Threads will run on
separate processors/cores and synchronize when parsing reads and outputting
alignments. Searching for alignments is highly parallel, and speedup is close
to linear. Increasing `-p` increases Bowtie 2's memory footprint. E.g. when
aligning to a human genome index, increasing `-p` from 1 to 8 increases the
memory footprint by a few hundred megabytes. This option is only available if
`bowtie` is linked with the `pthreads` library (i.e. if `BOWTIE_PTHREADS=0` is
not specified at build time).
</td></tr>
<tr><td id="bowtie2-options-reorder">
--reorder
</td><td>
Guarantees that output SAM records are printed in an order corresponding to the
order of the reads in the original input file, even when [`-p`] is set greater
than 1. Specifying `--reorder` and setting [`-p`] greater than 1 causes Bowtie
2 to run somewhat slower and use somewhat more memory than if `--reorder` were
not specified. Has no effect if [`-p`] is set to 1, since output order will
naturally correspond to input order in that case.
</td></tr>
<tr><td id="bowtie2-options-mm">
--mm
</td><td>
Use memory-mapped I/O to load the index, rather than typical file I/O.
Memory-mapping allows many concurrent `bowtie` processes on the same computer to
share the same memory image of the index (i.e. you pay the memory overhead just
once). This facilitates memory-efficient parallelization of `bowtie` in
situations where using [`-p`] is not possible or not preferable.
</td></tr></table>
#### Other options
<table>
<tr><td id="bowtie2-options-qc-filter">
--qc-filter
</td><td>
Filter out reads for which the QSEQ filter field is non-zero. Only has an
effect when read format is [`--qseq`]. Default: off.
</td></tr>
<tr><td id="bowtie2-options-seed">
--seed <int>
</td><td>
Use `<int>` as the seed for pseudo-random number generator. Default: 0.
</td></tr>
<tr><td id="bowtie2-options-non-deterministic">
--non-deterministic
</td><td>
Normally, Bowtie 2 re-initializes its pseudo-random generator for each read. It
seeds the generator with a number derived from (a) the read name, (b) the
nucleotide sequence, (c) the quality sequence, (d) the value of the [`--seed`]
option. This means that if two reads are identical (same name, same
nucleotides, same qualities) Bowtie 2 will find and report the same alignment(s)
for both, even if there was ambiguity. When `--non-deterministic` is specified,
Bowtie 2 re-initializes its pseudo-random generator for each read using the
current time. This means that Bowtie 2 will not necessarily report the same
alignment for two identical reads. This is counter-intuitive for some users,
but might be more appropriate in situations where the input consists of many
identical reads.
</td></tr>
<tr><td id="bowtie2-options-version">
--version
</td><td>
Print version information and quit.
</td></tr>
<tr><td id="bowtie2-options-h">
-h/--help
</td><td>
Print usage information and quit.
</td></tr></table>
SAM output
----------
Following is a brief description of the [SAM] format as output by `bowtie2`.
For more details, see the [SAM format specification][SAM].
By default, `bowtie2` prints a SAM header with `@HD`, `@SQ` and `@PG` lines.
When one or more [`--rg`] arguments are specified, `bowtie2` will also print
an `@RG` line that includes all user-specified [`--rg`] tokens separated by
tabs.
Each subsequent line describes an alignment or, if the read failed to align, a
read. Each line is a collection of at least 12 fields separated by tabs; from
left to right, the fields are:
1. Name of read that aligned.
Note that the [SAM specification] disallows whitespace in the read name.
If the read name contains any whitespace characters, Bowtie 2 will truncate
the name at the first whitespace character. This is similar to the
behavior of other tools. The standard behavior of truncating at the first
whitespace can be suppressed with `--sam-no-qname-trunc` at the expense of
generating non-standard SAM.
2. Sum of all applicable flags. Flags relevant to Bowtie are:
<table><tr><td>
1
</td><td>
The read is one of a pair
</td></tr><tr><td>
2
</td><td>
The alignment is one end of a proper paired-end alignment
</td></tr><tr><td>
4
</td><td>
The read has no reported alignments
</td></tr><tr><td>
8
</td><td>
The read is one of a pair and has no reported alignments
</td></tr><tr><td>
16
</td><td>
The alignment is to the reverse reference strand
</td></tr><tr><td>
32
</td><td>
The other mate in the paired-end alignment is aligned to the
reverse reference strand
</td></tr><tr><td>
64
</td><td>
The read is mate 1 in a pair
</td></tr><tr><td>
128
</td><td>
The read is mate 2 in a pair
</td></tr></table>
Thus, an unpaired read that aligns to the reverse reference strand
will have flag 16. A paired-end read that aligns and is the first
mate in the pair will have flag 83 (= 64 + 16 + 2 + 1).
3. Name of reference sequence where alignment occurs
4. 1-based offset into the forward reference strand where leftmost
character of the alignment occurs
5. Mapping quality
6. CIGAR string representation of alignment
7. Name of reference sequence where mate's alignment occurs. Set to `=` if the
mate's reference sequence is the same as this alignment's, or `*` if there is no
mate.
8. 1-based offset into the forward reference strand where leftmost character of
the mate's alignment occurs. Offset is 0 if there is no mate.
9. Inferred fragment length. Size is negative if the mate's alignment occurs
upstream of this alignment. Size is 0 if the mates did not align concordantly.
However, size is non-0 if the mates aligned discordantly to the same
chromosome.
10. Read sequence (reverse-complemented if aligned to the reverse strand)
11. ASCII-encoded read qualities (reverse-complemented if the read aligned to
the reverse strand). The encoded quality values are on the [Phred quality]
scale and the encoding is ASCII-offset by 33 (ASCII char `!`), similarly to a
[FASTQ] file.
12. Optional fields. Fields are tab-separated. `bowtie2` outputs zero or more
of these optional fields for each alignment, depending on the type of the
alignment:
<table><tr><td id="bowtie2-build-opt-fields-as">
AS:i:<N>
</td><td>
Alignment score. Can be negative. Can be greater than 0 in [`--local`]
mode (but not in [`--end-to-end`] mode). Only present if SAM record is for
an aligned read.
</td></tr><tr><td id="bowtie2-build-opt-fields-xs">
XS:i:<N>
</td><td>
Alignment score for the best-scoring alignment found other than the
alignment reported. Can be negative. Can be greater than 0 in [`--local`]
mode (but not in [`--end-to-end`] mode). Only present if the SAM record is
for an aligned read and more than one alignment was found for the read.
Note that, when the read is part of a concordantly-aligned pair, this score
could be greater than [`AS:i`].
</td></tr><tr><td id="bowtie2-build-opt-fields-ys">
YS:i:<N>
</td><td>
Alignment score for opposite mate in the paired-end alignment. Only present
if the SAM record is for a read that aligned as part of a paired-end
alignment.
</td></tr><tr><td id="bowtie2-build-opt-fields-xn">
XN:i:<N>
</td><td>
The number of ambiguous bases in the reference covering this alignment.
Only present if SAM record is for an aligned read.
</td></tr><tr><td id="bowtie2-build-opt-fields-xm">
XM:i:<N>
</td><td>
The number of mismatches in the alignment. Only present if SAM record is
for an aligned read.
</td></tr><tr><td id="bowtie2-build-opt-fields-xo">
XO:i:<N>
</td><td>
The number of gap opens, for both read and reference gaps, in the alignment.
Only present if SAM record is for an aligned read.
</td></tr><tr><td id="bowtie2-build-opt-fields-xg">
XG:i:<N>
</td><td>
The number of gap extensions, for both read and reference gaps, in the
alignment. Only present if SAM record is for an aligned read.
</td></tr><tr><td id="bowtie2-build-opt-fields-nm">
NM:i:<N>
</td><td>
The edit distance; that is, the minimal number of one-nucleotide edits
(substitutions, insertions and deletions) needed to transform the read
string into the reference string. Only present if SAM record is for an
aligned read.
</td></tr><tr><td id="bowtie2-build-opt-fields-yf">
YF:Z:<S>
</td><td>
String indicating reason why the read was filtered out. See also:
[Filtering]. Only appears for reads that were filtered out.
</td></tr><tr><td id="bowtie2-build-opt-fields-yt">
YT:Z:<S>
</td><td>
Value of `UU` indicates the read was not part of a pair. Value of `CP`
indicates the read was part of a pair and the pair aligned concordantly.
Value of `DP` indicates the read was part of a pair and the pair aligned
discordantly. Value of `UP` indicates the read was part of a pair but the
pair failed to aligned either concordantly or discordantly.
</td></tr><tr><td id="bowtie2-build-opt-fields-md">
MD:Z:<S>
</td><td>
A string representation of the mismatched reference bases in the alignment.
See [SAM Tags format specification][SAMTags] for details. Only present if SAM record is
for an aligned read.
</td></tr>
</table>
The `bowtie2-build` indexer
===========================
`bowtie2-build` builds a Bowtie index from a set of DNA sequences.
`bowtie2-build` outputs a set of 6 files with suffixes `.1.bt2`, `.2.bt2`,
`.3.bt2`, `.4.bt2`, `.rev.1.bt2`, and `.rev.2.bt2`. In the case of a large
index these suffixes will have a `bt2l` termination. These files together
constitute the index: they are all that is needed to align reads to that
reference. The original sequence [`FASTA`] files are no longer used by Bowtie 2
once the index is built.
Bowtie 2's `.bt2` index format is different from Bowtie 1's `.ebwt` format, and
they are not compatible with each other.
Use of Karkkainen's [blockwise algorithm] allows `bowtie2-build` to trade off
between running time and memory usage. `bowtie2-build` has three options
governing how it makes this trade: [`-p`/`--packed`], [`--bmax`]/[`--bmaxdivn`],
and [`--dcv`]. By default, `bowtie2-build` will automatically search for the
settings that yield the best running time without exhausting memory. This
behavior can be disabled using the [`-a`/`--noauto`] option.
The indexer provides options pertaining to the "shape" of the index, e.g.
[`--offrate`](#bowtie2-build-options-o) governs the fraction of [Burrows-Wheeler]
rows that are "marked" (i.e., the density of the suffix-array sample; see the
original [FM Index][FM Index Paper] paper for details). All of these options are potentially
profitable trade-offs depending on the application. They have been set to
defaults that are reasonable for most cases according to our experiments. See
[Performance tuning] for details.
`bowtie2-build` can generate either [small or large indexes](#small-and-large-indexes). The wrapper
will decide which based on the length of the input genome. If the reference
does not exceed 4 billion characters but a large index is preferred, the user
can specify [`--large-index`] to force `bowtie2-build` to build a large index
instead.
The Bowtie 2 index is based on the [FM Index][FM Index Paper] of Ferragina and Manzini, which in
turn is based on the [Burrows-Wheeler] transform. The algorithm used to build
the index is based on the [blockwise algorithm] of Karkkainen.
Command Line
------------
Usage:
bowtie2-build [options]* <reference_in> <bt2_base>
### Main arguments
<table><tr><td>
<reference_in>
</td><td>
A comma-separated list of [`FASTA`] files containing the reference sequences to be
aligned to, or, if [`-c`](#bowtie2-build-options-c) is specified, the sequences
themselves. E.g., `<reference_in>` might be `chr1.fa,chr2.fa,chrX.fa,chrY.fa`,
or, if [`-c`](#bowtie2-build-options-c) is specified, this might be
`GGTCATCCT,ACGGGTCGT,CCGTTCTATGCGGCTTA`.
</td></tr><tr><td>
<bt2_base>
</td><td>
The basename of the index files to write. By default, `bowtie2-build` writes
files named `NAME.1.bt2`, `NAME.2.bt2`, `NAME.3.bt2`, `NAME.4.bt2`,
`NAME.rev.1.bt2`, and `NAME.rev.2.bt2`, where `NAME` is `<bt2_base>`.
</td></tr></table>
### Options
<table><tr><td>
-f
</td><td>
The reference input files (specified as `<reference_in>`) are [`FASTA`] files
(usually having extension `.fa`, `.mfa`, `.fna` or similar).
</td></tr><tr><td id="bowtie2-build-options-c">
-c
</td><td>
The reference sequences are given on the command line. I.e. `<reference_in>` is
a comma-separated list of sequences rather than a list of [`FASTA`] files.
</td></tr><tr><td id="bowtie2-build-options-large-index">
--large-index
</td><td>
Force `bowtie2-build` to build a [large index](#small-and-large-indexes), even if the reference is less
than ~ 4 billion nucleotides inlong.
</td></tr>
<tr><td id="bowtie2-build-options-a">
-a/--noauto
</td><td>
Disable the default behavior whereby `bowtie2-build` automatically selects
values for the [`--bmax`], [`--dcv`] and [`--packed`] parameters according to
available memory. Instead, user may specify values for those parameters. If
memory is exhausted during indexing, an error message will be printed; it is up
to the user to try new parameters.
</td></tr><tr><td id="bowtie2-build-options-p">
-p/--packed
</td><td>
Use a packed (2-bits-per-nucleotide) representation for DNA strings. This saves
memory but makes indexing 2-3 times slower. Default: off. This is configured
automatically by default; use [`-a`/`--noauto`] to configure manually.
</td></tr><tr><td id="bowtie2-build-options-bmax">
--bmax <int>
</td><td>
The maximum number of suffixes allowed in a block. Allowing more suffixes per
block makes indexing faster, but increases peak memory usage. Setting this
option overrides any previous setting for [`--bmax`], or [`--bmaxdivn`].
Default (in terms of the [`--bmaxdivn`] parameter) is [`--bmaxdivn`] 4 * number of threads. This is
configured automatically by default; use [`-a`/`--noauto`] to configure manually.
</td></tr><tr><td id="bowtie2-build-options-bmaxdivn">
--bmaxdivn <int>
</td><td>
The maximum number of suffixes allowed in a block, expressed as a fraction of
the length of the reference. Setting this option overrides any previous setting
for [`--bmax`], or [`--bmaxdivn`]. Default: [`--bmaxdivn`] 4 * number of threads. This is
configured automatically by default; use [`-a`/`--noauto`] to configure manually.
</td></tr><tr><td id="bowtie2-build-options-dcv">
--dcv <int>
</td><td>
Use `<int>` as the period for the difference-cover sample. A larger period
yields less memory overhead, but may make suffix sorting slower, especially if
repeats are present. Must be a power of 2 no greater than 4096. Default: 1024.
This is configured automatically by default; use [`-a`/`--noauto`] to configure
manually.
</td></tr><tr><td id="bowtie2-build-options-nodc">
--nodc
</td><td>
Disable use of the difference-cover sample. Suffix sorting becomes
quadratic-time in the worst case (where the worst case is an extremely
repetitive reference). Default: off.
</td></tr><tr><td>
-r/--noref
</td><td>
Do not build the `NAME.3.bt2` and `NAME.4.bt2` portions of the index, which
contain a bitpacked version of the reference sequences and are used for
paired-end alignment.
</td></tr><tr><td>
-3/--justref
</td><td>
Build only the `NAME.3.bt2` and `NAME.4.bt2` portions of the index, which
contain a bitpacked version of the reference sequences and are used for
paired-end alignment.
</td></tr><tr><td id="bowtie2-build-options-o">
-o/--offrate <int>
</td><td>
To map alignments back to positions on the reference sequences, it's necessary
to annotate ("mark") some or all of the [Burrows-Wheeler] rows with their
corresponding location on the genome.
[`-o`/`--offrate`](#bowtie2-build-options-o) governs how many rows get marked:
the indexer will mark every 2^`<int>` rows. Marking more rows makes
reference-position lookups faster, but requires more memory to hold the
annotations at runtime. The default is 5 (every 32nd row is marked; for human
genome, annotations occupy about 340 megabytes).
</td></tr><tr><td>
-t/--ftabchars <int>
</td><td>
The ftab is the lookup table used to calculate an initial [Burrows-Wheeler]
range with respect to the first `<int>` characters of the query. A larger
`<int>` yields a larger lookup table but faster query times. The ftab has size
4^(`<int>`+1) bytes. The default setting is 10 (ftab is 4MB).
</td></tr><tr><td>
--seed <int>
</td><td>
Use `<int>` as the seed for pseudo-random number generator.
</td></tr><tr><td>
--cutoff <int>
</td><td>
Index only the first `<int>` bases of the reference sequences (cumulative across
sequences) and ignore the rest.
</td></tr><tr><td>
-q/--quiet
</td><td>
`bowtie2-build` is verbose by default. With this option `bowtie2-build` will
print only error messages.
</td></tr><tr><td>
--threads <int>
</td><td>
By default `bowtie2-build` is using only one thread. Increasing the number
of threads will speed up the index building considerably in most cases.
</td></tr><tr><td>
-h/--help
</td><td>
Print usage information and quit.
</td></tr><tr><td>
--version
</td><td>
Print version information and quit.
</td></tr></table>
The `bowtie2-inspect` index inspector
=====================================
`bowtie2-inspect` extracts information from a Bowtie index about what kind of
index it is and what reference sequences were used to build it. When run without
any options, the tool will output a [`FASTA`] file containing the sequences of the
original references (with all non-`A`/`C`/`G`/`T` characters converted to `N`s).
It can also be used to extract just the reference sequence names using the
[`-n`/`--names`] option or a more verbose summary using the [`-s`/`--summary`]
option.
Command Line
------------
Usage:
bowtie2-inspect [options]* <bt2_base>
### Main arguments
<table><tr><td>
<bt2_base>
</td><td>
The basename of the index to be inspected. The basename is name of any of the
index files but with the `.X.bt2` or `.rev.X.bt2` suffix omitted.
`bowtie2-inspect` first looks in the current directory for the index files, then
in the directory specified in the `BOWTIE2_INDEXES` environment variable.
</td></tr></table>
### Options
<table><tr><td>
-a/--across <int>
</td><td>
When printing [`FASTA`] output, output a newline character every `<int>` bases
(default: 60).
</td></tr><tr><td id="bowtie2-inspect-options-n">
-n/--names
</td><td>
Print reference sequence names, one per line, and quit.
</td></tr><tr><td id="bowtie2-inspect-options-s">
-s/--summary
</td><td>
Print a summary that includes information about index settings, as well as the
names and lengths of the input sequences. The summary has this format:
Colorspace <0 or 1>
SA-Sample 1 in <sample>
FTab-Chars <chars>
Sequence-1 <name> <len>
Sequence-2 <name> <len>
...
Sequence-N <name> <len>
Fields are separated by tabs. Colorspace is always set to 0 for Bowtie 2.
</td></tr><tr><td id="bowtie2-inspect-options-o">
-o/--output <filename>
</td><td>
Save output to user-specified filename (default: stdout)
</td></tr><tr><td>
-v/--verbose
</td><td>
Print verbose output (for debugging).
</td></tr><tr><td>
--version
</td><td>
Print version information and quit.
</td></tr><tr><td>
-h/--help
</td><td>
Print usage information and quit.
</td></tr></table>
Getting started with Bowtie 2: Lambda phage example
===================================================
Bowtie 2 comes with some example files to get you started. The example files
are not scientifically significant; we use the [Lambda phage] reference genome
simply because it's short, and the reads were generated by a computer program,
not a sequencer. However, these files will let you start running Bowtie 2 and
downstream tools right away.
First follow the manual instructions to [obtain Bowtie 2]. Set the `BT2_HOME`
environment variable to point to the new Bowtie 2 directory containing the
`bowtie2`, `bowtie2-build` and `bowtie2-inspect` binaries. This is important,
as the `BT2_HOME` variable is used in the commands below to refer to that
directory.
Indexing a reference genome
---------------------------
To create an index for the [Lambda phage] reference genome included with Bowtie
2, create a new temporary directory (it doesn't matter where), change into that
directory, and run:
$BT2_HOME/bowtie2-build $BT2_HOME/example/reference/lambda_virus.fa lambda_virus
The command should print many lines of output then quit. When the command
completes, the current directory will contain four new files that all start with
`lambda_virus` and end with `.1.bt2`, `.2.bt2`, `.3.bt2`, `.4.bt2`,
`.rev.1.bt2`, and `.rev.2.bt2`. These files constitute the index - you're done!
You can use `bowtie2-build` to create an index for a set of [`FASTA`] files obtained
from any source, including sites such as [UCSC], [NCBI], and [Ensembl]. When
indexing multiple [`FASTA`] files, specify all the files using commas to separate
file names. For more details on how to create an index with `bowtie2-build`,
see the [manual section on index building]. You may also want to bypass this
process by obtaining a pre-built index. See [using a pre-built index] below
for an example.
Aligning example reads
----------------------
Stay in the directory created in the previous step, which now contains the
`lambda_virus` index files. Next, run:
$BT2_HOME/bowtie2 -x lambda_virus -U $BT2_HOME/example/reads/reads_1.fq -S eg1.sam
This runs the Bowtie 2 aligner, which aligns a set of unpaired reads to the
[Lambda phage] reference genome using the index generated in the previous step.
The alignment results in SAM format are written to the file `eg1.sam`, and a
short alignment summary is written to the console. (Actually, the summary is
written to the "standard error" or "stderr" filehandle, which is typically
printed to the console.)
To see the first few lines of the SAM output, run:
head eg1.sam
You will see something like this:
@HD VN:1.0 SO:unsorted
@SQ SN:gi|9626243|ref|NC_001416.1| LN:48502
@PG ID:bowtie2 PN:bowtie2 VN:2.0.1
r1 0 gi|9626243|ref|NC_001416.1| 18401 42 122M * 0 0 TGAATGCGAACTCCGGGACGCTCAGTAATGTGACGATAGCTGAAAACTGTACGATAAACNGTACGCTGAGGGCAGAAAAAATCGTCGGGGACATTNTAAAGGCGGCGAGCGCGGCTTTTCCG +"@6<:27(F&5)9"B):%B+A-%5A?2$HCB0B+0=D<7E/<.03#!.F77@6B==?C"7>;))%;,3-$.A06+<-1/@@?,26">=?*@'0;$:;??G+:#+(A?9+10!8!?()?7C> AS:i:-5 XN:i:0 XM:i:3 XO:i:0 XG:i:0 NM:i:3 MD:Z:59G13G21G26 YT:Z:UU
r2 0 gi|9626243|ref|NC_001416.1| 8886 42 275M * 0 0 NTTNTGATGCGGGCTTGTGGAGTTCAGCCGATCTGACTTATGTCATTACCTATGAAATGTGAGGACGCTATGCCTGTACCAAATCCTACAATGCCGGTGAAAGGTGCCGGGATCACCCTGTGGGTTTATAAGGGGATCGGTGACCCCTACGCGAATCCGCTTTCAGACGTTGACTGGTCGCGTCTGGCAAAAGTTAAAGACCTGACGCCCGGCGAACTGACCGCTGAGNCCTATGACGACAGCTATCTCGATGATGAAGATGCAGACTGGACTGC (#!!'+!$""%+(+)'%)%!+!(&++)''"#"#&#"!'!("%'""("+&%$%*%%#$%#%#!)*'(#")(($&$'&%+&#%*)*#*%*')(%+!%%*"$%"#+)$&&+)&)*+!"*)!*!("&&"*#+"&"'(%)*("'!$*!!%$&&&$!!&&"(*"$&"#&!$%'%"#)$#+%*+)!&*)+(""#!)!%*#"*)*')&")($+*%%)!*)!('(%""+%"$##"#+(('!*(($*'!"*('"+)&%#&$+('**$$&+*&!#%)')'(+(!%+ AS:i:-14 XN:i:0 XM:i:8 XO:i:0 XG:i:0 NM:i:8 MD:Z:0A0C0G0A108C23G9T81T46 YT:Z:UU
r3 16 gi|9626243|ref|NC_001416.1| 11599 42 338M * 0 0 GGGCGCGTTACTGGGATGATCGTGAAAAGGCCCGTCTTGCGCTTGAAGCCGCCCGAAAGAAGGCTGAGCAGCAGACTCAAGAGGAGAAAAATGCGCAGCAGCGGAGCGATACCGAAGCGTCACGGCTGAAATATACCGAAGAGGCGCAGAAGGCTNACGAACGGCTGCAGACGCCGCTGCAGAAATATACCGCCCGTCAGGAAGAACTGANCAAGGCACNGAAAGACGGGAAAATCCTGCAGGCGGATTACAACACGCTGATGGCGGCGGCGAAAAAGGATTATGAAGCGACGCTGTAAAAGCCGAAACAGTCCAGCGTGAAGGTGTCTGCGGGCGAT 7F$%6=$:9B@/F'>=?!D?@0(:A*)7/>9C>6#1<6:C(.CC;#.;>;2'$4D:?&B!>689?(0(G7+0=@37F)GG=>?958.D2E04C<E,*AD%G0.%$+A:'H;?8<72:88?E6((CF)6DF#.)=>B>D-="C'B080E'5BH"77':"@70#4%A5=6.2/1>;9"&-H6)=$/0;5E:<8G!@::1?2DC7C*;@*#.1C0.D>H/20,!"C-#,6@%<+<D(AG-).?�.00'@)/F8?B!&"170,)>:?<A7#1(A@0E#&A.*DC.E")AH"+.,5,2>5"2?:G,F"D0B8D-6$65D<D!A/38860.*4;4B<*31?6 AS:i:-22 XN:i:0 XM:i:8 XO:i:0 XG:i:0 NM:i:8 MD:Z:80C4C16A52T23G30A8T76A41 YT:Z:UU
r4 0 gi|9626243|ref|NC_001416.1| 40075 42 184M * 0 0 GGGCCAATGCGCTTACTGATGCGGAATTACGCCGTAAGGCCGCAGATGAGCTTGTCCATATGACTGCGAGAATTAACNGTGGTGAGGCGATCCCTGAACCAGTAAAACAACTTCCTGTCATGGGCGGTAGACCTCTAAATCGTGCACAGGCTCTGGCGAAGATCGCAGAAATCAAAGCTAAGT(=8B)GD04*G%&4F,1'A>.C&7=F$,+#6!))43C,5/5+)?-/0>/D3=-,2/+.1?@->;)00!'3!7BH$G)HG+ADC'#-9F)7<7"$?&.>0)@5;4,!0-#C!15CF8&HB+B==H>7,/)C5)5*+(F5A%D,EA<(>G9E0>7&/E?4%;#'92)<5+@7:A.(BG@BG86@.G AS:i:-1 XN:i:0 XM:i:1 XO:i:0 XG:i:0 NM:i:1 MD:Z:77C106 YT:Z:UU
r5 0 gi|9626243|ref|NC_001416.1| 48010 42 138M * 0 0 GTCAGGAAAGTGGTAAAACTGCAACTCAATTACTGCAATGCCCTCGTAATTAAGTGAATTTACAATATCGTCCTGTTCGGAGGGAAGAACGCGGGATGTTCATTCTTCATCACTTTTAATTGATGTATATGCTCTCTT 9''%<D)A03E1-*7=),:F/0!6,D9:H,<9D%:0B(%'E,(8EFG$E89B$27G8F*2+4,-!,0D5()&=(FGG:5;3*@/.0F-G#5#3->('FDFEG?)5.!)"AGADB3?6(@H(:B<>6!>;>6>G,."?% AS:i:0 XN:i:0 XM:i:0 XO:i:0 XG:i:0 NM:i:0 MD:Z:138 YT:Z:UU
r6 16 gi|9626243|ref|NC_001416.1| 41607 42 72M2D119M * 0 0 TCGATTTGCAAATACCGGAACATCTCGGTAACTGCATATTCTGCATTAAAAAATCAACGCAAAAAATCGGACGCCTGCAAAGATGAGGAGGGATTGCAGCGTGTTTTTAATGAGGTCATCACGGGATNCCATGTGCGTGACGGNCATCGGGAAACGCCAAAGGAGATTATGTACCGAGGAAGAATGTCGCT 1H#G;H"$E*E#&"*)2%66?=9/9'=;4)4/>@%+5#@#$4A*!<D=="8#1*A9BA=:(1+#C&.#(3#H=9E)AC*5,AC#E'536*2?)H14?>9'B=7(3H/B:+A:8%1-+#(E%&$$&14"76D?>7(&20H5%*&CF8!G5B+A4F$7(:"'?0$?G+$)B-?2<0<F=D!38BH,%=8&5@+ AS:i:-13 XN:i:0 XM:i:2 XO:i:1 XG:i:2 NM:i:4 MD:Z:72^TT55C15A47 YT:Z:UU
r7 16 gi|9626243|ref|NC_001416.1| 4692 42 143M * 0 0 TCAGCCGGACGCGGGCGCTGCAGCCGTACTCGGGGATGACCGGTTACAACGGCATTATCGCCCGTCTGCAACAGGCTGCCAGCGATCCGATGGTGGACAGCATTCTGCTCGATATGGACANGCCCGGCGGGATGGTGGCGGGG -"/@*7A0)>2,AAH@&"%B)*5*23B/,)90.B@%=FE,E063C9?,:26$-0:,.,1849'4.;F>FA;76+5&$<C":$!A*,<B,<)@<'85D%C*:)30@85;?.B$05=@95DCDH<53!8G:F:B7/A.E':434> AS:i:-6 XN:i:0 XM:i:2 XO:i:0 XG:i:0 NM:i:2 MD:Z:98G21C22 YT:Z:UU
The first few lines (beginning with `@`) are SAM header lines, and the rest of
the lines are SAM alignments, one line per read or mate. See the [Bowtie 2
manual section on SAM output] and the [SAM specification] for details about how
to interpret the SAM file format.
Paired-end example
------------------
To align paired-end reads included with Bowtie 2, stay in the same directory and
run:
$BT2_HOME/bowtie2 -x lambda_virus -1 $BT2_HOME/example/reads/reads_1.fq -2 $BT2_HOME/example/reads/reads_2.fq -S eg2.sam
This aligns a set of paired-end reads to the reference genome, with results
written to the file `eg2.sam`.
Local alignment example
-----------------------
To use [local alignment] to align some longer reads included with Bowtie 2, stay
in the same directory and run:
$BT2_HOME/bowtie2 --local -x lambda_virus -U $BT2_HOME/example/reads/longreads.fq -S eg3.sam
This aligns the long reads to the reference genome using local alignment, with
results written to the file `eg3.sam`.
Using SAMtools/BCFtools downstream
----------------------------------
[SAMtools] is a collection of tools for manipulating and analyzing SAM and BAM
alignment files. [BCFtools] is a collection of tools for calling variants and
manipulating VCF and BCF files, and it is typically distributed with [SAMtools].
Using these tools together allows you to get from alignments in SAM format to
variant calls in VCF format. This example assumes that `samtools` and
`bcftools` are installed and that the directories containing these binaries are
in your [PATH environment variable].
Run the paired-end example:
$BT2_HOME/bowtie2 -x $BT2_HOME/example/index/lambda_virus -1 $BT2_HOME/example/reads/reads_1.fq -2 $BT2_HOME/example/reads/reads_2.fq -S eg2.sam
Use `samtools view` to convert the SAM file into a BAM file. BAM is the
binary format corresponding to the SAM text format. Run:
samtools view -bS eg2.sam > eg2.bam
Use `samtools sort` to convert the BAM file to a sorted BAM file.
samtools sort eg2.bam -o eg2.sorted.bam
We now have a sorted BAM file called `eg2.sorted.bam`. Sorted BAM is a useful
format because the alignments are (a) compressed, which is convenient for
long-term storage, and (b) sorted, which is conveneint for variant discovery.
To generate variant calls in VCF format, run:
bcftools mpileup -f $BT2_HOME/example/reference/lambda_virus.fa eg2.sorted.bam | bcftools view -Ov - > eg2.raw.bcf
Then to view the variants, run:
bcftools view eg2.raw.bcf
See the official SAMtools guide to [Calling SNPs/INDELs with SAMtools/BCFtools]
for more details and variations on this process.
[BCFtools]: http://samtools.sourceforge.net/mpileup.shtml
[BLAST]: http://blast.ncbi.nlm.nih.gov/Blast.cgi
[BLAT]: http://genome.ucsc.edu/cgi-bin/hgBlat?command=start
[BWA]: http://bio-bwa.sourceforge.net/
[BWT]: http://en.wikipedia.org/wiki/Burrows-Wheeler_transform
[Blockwise algorithm]: http://portal.acm.org/citation.cfm?id=1314852
[Bowtie 1 does]: http://genomebiology.com/2009/10/3/R25
[Bowtie 1 paper]: http://genomebiology.com/2009/10/3/R25
[Bowtie 1]: http://bowtie-bio.sf.net
[Bowtie 2 manual section on SAM output]: #sam-output
[Bowtie 2]: http://bowtie-bio.sf.net/bowtie2
[Bowtie paper]: http://genomebiology.com/2009/10/3/R25
[Bowtie]: http://bowtie-bio.sf.net
[Burrows-Wheeler Transform]: http://en.wikipedia.org/wiki/Burrows-Wheeler_transform
[Burrows-Wheeler]: http://en.wikipedia.org/wiki/Burrows-Wheeler_transform
[Calling SNPs/INDELs with SAMtools/BCFtools]: http://samtools.sourceforge.net/mpileup.shtml
[Crossbow]: http://bowtie-bio.sf.net/crossbow
[Cufflinks]: http://cufflinks.cbcb.umd.edu/
[Download]: https://sourceforge.net/projects/bowtie-bio/files/bowtie2/
[Ensembl]: http://www.ensembl.org/
[`FASTA`]: https://en.wikipedia.org/wiki/FASTA
[FASTQ]: http://en.wikipedia.org/wiki/FASTQ_format
[FM Index Paper]: http://portal.acm.org/citation.cfm?id=796543
[FM Index Wiki]: http://en.wikipedia.org/wiki/FM-index
[Filtering]: #filtering
[GATK]: http://www.broadinstitute.org/gsa/wiki/index.php/The_Genome_Analysis_Toolkit
[GPLv3 license]: http://www.gnu.org/licenses/gpl-3.0.html
[GnuWin32]: http://gnuwin32.sf.net/packages/coreutils.htm
[IUPAC nucleotide codes]: http://www.bioinformatics.org/sms/iupac.html
[Lambda phage]: http://en.wikipedia.org/wiki/Lambda_phage
[MSYS]: http://www.mingw.org/wiki/msys
[MUMmer]: http://mummer.sourceforge.net/
[Mates can overlap, contain or dovetail each other]: #mates-can-overlap-contain-or-dovetail-each-other
[MinGW]: http://www.mingw.org/
[Myrna]: http://bowtie-bio.sf.net/myrna
[NCBI]: http://www.ncbi.nlm.nih.gov/sites/genome
[NUCmer]: http://mummer.sourceforge.net/manual/#nucmer
[Needleman-Wunsch]: http://en.wikipedia.org/wiki/Needleman-Wunsch_algorithm
[PATH environment variable]: http://en.wikipedia.org/wiki/PATH_(variable)
[PATH]: http://en.wikipedia.org/wiki/PATH_(variable)
[Performance tuning]: #performance-tuning
[Phred quality]: http://en.wikipedia.org/wiki/Phred_quality_score
[SAM format specification]: http://samtools.sf.net/SAM1.pdf
[SAM specification]: http://samtools.sourceforge.net/SAM1.pdf
[SAMTags]: https://samtools.github.io/hts-specs/SAMtags.pdf
[SAM]: http://samtools.sourceforge.net/SAM1.pdf
[SAMtools]: http://samtools.sourceforge.net
[Smith-Waterman]: http://en.wikipedia.org/wiki/Smith_waterman
[TopHat]: http://tophat.cbcb.umd.edu/
[UCSC]: http://genome.ucsc.edu/cgi-bin/hgGateway
[Xcode]: http://developer.apple.com/xcode/
[`+I`/`--minins`]: #bowtie2-options-I
[`+I`]: #bowtie2-options-I
[`+R`]: #bowtie2-options-R
[`+S`/`--sam`]: #bowtie2-options-S
[`+S`]: #bowtie2-options-S
[`+U`]: #bowtie2-options-U
[`+X`/`--maxins`]: #bowtie2-options-X
[`+X`]: #bowtie2-options-X
[`--al-bz2`]: #bowtie2-options-al
[`--al-conc-bz2`]: #bowtie2-options-al-conc
[`--al-conc-gz`]: #bowtie2-options-al-conc
[`--al-conc-lz4`]: #bowtie2-options-al-conc
[`--al-conc`]: #bowtie2-options-al-conc
[`--al-gz`]: #bowtie2-options-al
[`--al-lz4`]: #bowtie2-options-al
[`--al`]: #bowtie2-options-al
[`--align-paired-reads`]: #bowtie2-options-align-paired-reads
[`--bmax`]: #bowtie2-build-options-bmax
[`--bmaxdivn`]: #bowtie2-build-options-bmaxdivn
[`--dcv`]: #bowtie2-build-options-dcv
[`--dovetail`]: #bowtie2-options-dovetail
[`--dpad`]: #bowtie2-options-dpad
[`--end-to-end`]: #bowtie2-options-end-to-end
[`--fast-local`]: #bowtie2-options-fast-local
[`--fast`]: #bowtie2-options-fast
[`--ff`]: #bowtie2-options-fr
[`--fr`/`--rf`/`--ff`]: #bowtie2-options-fr
[`--fr`]: #bowtie2-options-fr
[`--gbar`]: #bowtie2-options-gbar
[`--ignore-quals`]: #bowtie2-options-ignore-quals
[`--int-quals`]: #bowtie2-options-int-quals
[`--interleaved`]: #bowtie2-options-interleaved
[`--sra-acc`]: #bowtie2-options-sra-acc
[`--large-index`]: #bowtie2-build-options-large-index
[`--local`]: #bowtie2-options-local
[`--ma`]: #bowtie2-options-ma
[`--met-file`]: #bowtie2-options-met-file
[`--met-stderr`]: #bowtie2-options-met-stderr
[`--met`]: #bowtie2-options-met
[`--mm`]: #bowtie2-options-mm
[`--mp`]: #bowtie2-options-mp
[`--n-ceil`]: #bowtie2-options-n-ceil
[`--no-1mm-upfront`]: #bowtie2-options-no-1mm-upfront
[`--no-contain`]: #bowtie2-options-no-contain
[`--no-discordant`]: #bowtie2-options-no-discordant
[`--no-hd`]: #bowtie2-options-no-hd
[`--no-mixed`]: #bowtie2-options-no-mixed
[`--no-overlap`]: #bowtie2-options-no-overlap
[`--no-sq`]: #bowtie2-options-no-sq
[`--no-unal`]: #bowtie2-options-no-unal
[`--nodc`]: #bowtie2-build-options-nodc
[`--nofw`]: #bowtie2-options-nofw
[`--non-deterministic`]: #bowtie2-options-non-deterministic
[`--np`]: #bowtie2-options-np
[`--offrate`]: #bowtie2-options-o
[`--omit-sec-seq`]: #bowtie2-options-omit-sec-seq
[`--packed`]: #bowtie2-build-options-p
[`--phred33`]: #bowtie2-options-phred33-quals
[`--phred64`]: #bowtie2-options-phred64-quals
[`--preserve-tags`]: #bowtie2-options-preserve-tags
[`--qc-filter`]: #bowtie2-options-qc-filter
[`--qseq`]: #bowtie2-options-qseq
[`--quiet`]: #bowtie2-options-quiet
[`--rdg`]: #bowtie2-options-rdg
[`--reorder`]: #bowtie2-options-reorder
[`--rf`]: #bowtie2-options-fr
[`--rfg`]: #bowtie2-options-rfg
[`--rg-id`]: #bowtie2-options-rg-id
[`--rg`]: #bowtie2-options-rg
[`--score-min`]: #bowtie2-options-score-min
[`--seed`]: #bowtie2-options-seed
[`--sensitive-local`]: #bowtie2-options-sensitive-local
[`--sensitive`]: #bowtie2-options-sensitive
[`--soft-clipped-unmapped-tlen`]: #bowtie2-options-soft-clipped-unmapped-tlen
[`--solexa-quals`]: #bowtie2-options-solexa-quals
[`--tab5`]: #bowtie2-options-tab5
[`--tab6`]: #bowtie2-options-tab6
[`--un-bz2`]: #bowtie2-options-un
[`--un-conc-bz2`]: #bowtie2-options-un-conc
[`--un-conc-gz`]: #bowtie2-options-un-conc
[`--un-conc-lz4`]: #bowtie2-options-un-conc
[`--un-conc`]: #bowtie2-options-un-conc
[`--un-gz`]: #bowtie2-options-un
[`--un-lz4`]: #bowtie2-options-un
[`--un`]: #bowtie2-options-un
[`--version`]: #bowtie2-options-version
[`--very-fast-local`]: #bowtie2-options-very-fast-local
[`--very-fast`]: #bowtie2-options-very-fast
[`--very-sensitive-local`]: #bowtie2-options-very-sensitive-local
[`--very-sensitive`]: #bowtie2-options-very-sensitive
[`--xeq`]: #bowtie2-options-xeq
[`--sam-append-comment`]: #bowtie2-options-sam-append-comment
[`--sam-opt-config`]: #bowtie2-options-sam-opt-config
[`-1`]: #bowtie2-options-1
[`-2`]: #bowtie2-options-2
[`-3`/`--trim3`]: #bowtie2-options-3
[`-3`]: #bowtie2-options-3
[`-5`/`--trim5`]: #bowtie2-options-5
[`-5`]: #bowtie2-options-5
[`--trim-to`]: #bowtie2-options-trim-to
[`-D`]: #bowtie2-options-D
[`-L`]: #bowtie2-options-L
[`-N`]: #bowtie2-options-N
[`-a`/`--noauto`]: #bowtie2-build-options-a
[`-a`]: #bowtie2-options-a
<!-- fasta-continuous option does not exist but was added to prevent
warnings due to the case insensitive nature of markdown URLs -->
[`-F`/--fasta-continuous]: #bowtie2-options-F
[`-b`]: #bowtie2-options-b
[`-c`]: #bowtie2-options-c
[`-f`]: #bowtie2-options-f
[`-i`]: #bowtie2-options-i
[`-k`]: #bowtie2-options-k
[`-m`]: #bowtie2-options-m
[`-n`/`--names`]: #bowtie2-inspect-options-n
[`-o`/`--offrate`]: #bowtie2-options-o
[`-o`/`--output`]: #bowtie2-inspect-options-o
[`-o`]: #bowtie2-options-o
[`-p`/`--packed`]: #bowtie2-build-options-p
[`-p`/`--threads`]: #bowtie2-options-p
[`-p`]: #bowtie2-options-p
[`-q`]: #bowtie2-options-q
[`-r`]: #bowtie2-options-r
[`-s`/`--skip`]: #bowtie2-options-s
[`-s`/`--summary`]: #bowtie2-inspect-options-s
[`-s`]: #bowtie2-options-s
[`-t`/`--time`]: #bowtie2-options-t
[`-t`]: #bowtie2-options-t
[`-u`/`--qupto`]: #bowtie2-options-u
[`-u`]: #bowtie2-options-u
[`-x`]: #bowtie2-options-x
[`AS:i`]: #bowtie2-build-opt-fields-as
[`MD:Z`]: #bowtie2-build-opt-fields-md
[`NM:i`]: #bowtie2-build-opt-fields-nm
[`XG:i`]: #bowtie2-build-opt-fields-xg
[`XM:i`]: #bowtie2-build-opt-fields-xm
[`XN:i`]: #bowtie2-build-opt-fields-xn
[`XO:i`]: #bowtie2-build-opt-fields-xo
[`XS:i`]: #bowtie2-build-opt-fields-xs
[`YF:Z`]: #bowtie2-build-opt-fields-yf
[`YS:i`]: #bowtie2-build-opt-fields-ys
[`YT:Z`]: #bowtie2-build-opt-fields-yt
[bi-directional BWT approach]: http://www.computer.org/portal/web/csdl/doi/10.1109/BIBM.2009.42
[documentation for the preset options]: #preset-options-in---end-to-end-mode
[end-to-end alignment]: #end-to-end-alignment-versus-local-alignment
[filtered out]: #filtering
[local alignment]: #end-to-end-alignment-versus-local-alignment
[manual section on index building]: #the-bowtie2-build-indexer
[multiseed alignment]: #multiseed-heuristic
[multiseed heuristic]: #multiseed-heuristic
[obtain Bowtie 2]: #obtaining-bowtie-2
[overlap ambiguous characters]: #ambiguous-characters
[paired-end alignment]: #aligning-pairs
[preset options]: #presets-setting-many-settings-at-once
[pthreads]: http://sourceware.org/pthreads-win32/
[reporting]: #reporting
[scoring scheme]: #scores-higher-more-similar
[setting function options]: #setting-function-options
[sourceforge site]: https://sourceforge.net/projects/bowtie-bio/files/bowtie2/
[structural variants]: http://www.ncbi.nlm.nih.gov/dbvar/content/overview/
[using a pre-built index]: #using-a-pre-built-index
[valid alignment]: #valid-alignments-meet-or-exceed-the-minimum-score-threshold
[yields a larger memory footprint]: #fm-index-memory-footprint
[libsais]: https://github.com/IlyaGrebnov/libsais
|