1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513
|
#!/usr/bin/env python
"""Tests for the Gibbs parser
"""
from __future__ import division
from cogent.util.unit_test import TestCase, main
import string
import re
from cogent.motif.util import Motif,Module
from cogent.core.moltype import DNA,RNA,PROTEIN
from cogent.parse.record import DelimitedSplitter
from cogent.parse.record_finder import LabeledRecordFinder
from cogent.parse.gibbs import get_sequence_and_motif_blocks, get_sequence_map,\
get_motif_blocks, get_motif_sequences, get_motif_p_value, guess_alphabet,\
build_module_objects, module_ids_to_int, GibbsParser
from math import exp
__author__ = "Jeremy Widmann"
__copyright__ = "Copyright 2007-2012, The Cogent Project"
__credits__ = ["Jeremy Widmann"]
__license__ = "GPL"
__version__ = "1.5.3"
__maintainer__ = "Jeremy Widmann"
__email__ = "jeremy.widmann@colorado.edu"
__status__ = "Production"
class GibbsTests(TestCase):
"""Tests for gibbs parser.
"""
def setUp(self):
"""Setup function for gibbs tests.
"""
self.gibbs_lines = GIBBS_FILE.split('\n')
self.sequence_map = {'1':'1091044',\
'10':'135765',\
'11':'1388082',\
'12':'140543',\
'13':'14286173',\
'14':'14578634',\
'15':'14600438',\
'16':'15218394',\
'17':'15597673',\
'18':'15599256',\
'19':'15602312',\
'2':'11467494',\
'20':'15605725',\
'21':'15605963',\
'22':'15609375',\
'23':'15609658',\
'24':'15613511',\
'25':'15614085',\
'26':'15614140',\
'27':'15615431',\
'28':'15643152',\
'29':'15672286',\
'3':'11499727',\
'30':'15790738',\
'31':'15791337',\
'32':'15801846',\
'33':'15805225',\
'34':'15805374',\
'35':'15807234',\
'36':'15826629',\
'37':'15899007',\
'38':'15899339',\
'39':'15964668',\
'4':'1174686',\
'40':'15966937',\
'41':'15988313',\
'42':'16078864',\
'43':'16123427',\
'44':'16125919',\
'45':'16330420',\
'46':'1633495',\
'47':'16501671',\
'48':'1651717',\
'49':'16759994',\
'5':'12044976',\
'50':'16761507',\
'51':'16803644',\
'52':'16804867',\
'53':'17229033',\
'54':'17229859',\
'55':'1729944',\
'56':'17531233',\
'57':'17537401',\
'58':'17547503',\
'59':'18309723',\
'6':'13186328',\
'60':'18313548',\
'61':'18406743',\
'62':'19173077',\
'63':'19554157',\
'64':'19705357',\
'65':'19746502',\
'66':'20092028',\
'67':'20151112',\
'68':'21112072',\
'69':'21222859',\
'7':'13358154',\
'70':'21223405',\
'71':'21227878',\
'72':'21283385',\
'73':'21674812',\
'74':'23098307',\
'75':'2649838',\
'76':'267116',\
'77':'27375582',\
'78':'2822332',\
'79':'30021713',\
'8':'13541053',\
'80':'3261501',\
'81':'3318841',\
'82':'3323237',\
'83':'4155972',\
'84':'4200327',\
'85':'4433065',\
'86':'4704732',\
'87':'4996210',\
'88':'5326864',\
'89':'6322180',\
'9':'13541117',\
'90':'6323138',\
'91':'6687568',\
'92':'6850955',\
'93':'7109697',\
'94':'7290567',\
'95':'9955016',\
'96':'15677788',\
}
self.motif_a_lines = """
10 columns
Num Motifs: 27
2, 1 72 klstq ILAISVDSPFSH lqyll 83 1.00 F 11467494
6, 1 66 nlntk IYAISNDSHFVQ knwie 77 1.00 F 13186328
8, 1 68 kknte VISVSEDTVYVH kawvq 79 1.00 F 13541053
9, 1 66 kfkak VIGISVDSPFSL aefak 77 1.00 F 13541117
""".split('\n')
self.motif_b_lines = """ MOTIF b
15 columns
Num Motifs: 6
2, 1 161 riles IQYVKENPGYACPVNWNFG dqvfy 179 1.00 F 11467494
47, 1 160 lrmvd ALQFHEEHGDVCPAQWEKG kegmn 178 1.00 F 16501671
67, 1 154 rkika AQYVAAHPGEVCPAKWKEG eatla 172 1.00 F 20151112
81, 1 166 lrvvi SLQLTAEKRVATPVDWKDG dsvmv 184 1.00 F 3318841
87, 1 163 lrvlk SLQLTNTHPVATPVNWKEG dkcci 181 1.00 F 4996210
95, 1 160 lrlvq AFQYTDEHGEVCPAGWKPG sdtik 178 1.00 F 9955016
**** * ******* ** *
Log Motif portion of MAP for motif b = -187.76179
Log Fragmentation portion of MAP for motif b = -7.77486
-------------------------------------------------------------------------
""".split('\n')
def test_get_sequence_and_motif_blocks(self):
"""get_sequence_and_motif_blocks tests."""
seq_motif_lines = ['before line',\
'=====MAP MAXIMIZATION RESULTS=====',\
'after line'\
]
exp_seq_block=['before line']
exp_motif_block=['=====MAP MAXIMIZATION RESULTS=====','after line']
seq_block,motif_block = get_sequence_and_motif_blocks(seq_motif_lines)
self.assertEqual(seq_block,exp_seq_block)
self.assertEqual(motif_block,exp_motif_block)
def test_get_sequence_map(self):
"""get_sequence_map tests."""
sequence_map = get_sequence_map(self.gibbs_lines)
self.assertEqual(sequence_map,self.sequence_map)
def test_get_motif_blocks(self):
"""get_motif_blocks tests."""
motif_lines = ['before motifs',\
'first MOTIF a',\
' motif a data',\
'second MOTIF b',\
' motif b data',
'after motifs'
]
exp_motif_blocks = [['first MOTIF a', 'motif a data'],\
['second MOTIF b', 'motif b data', 'after motifs']]
motif_blocks = get_motif_blocks(motif_lines)
self.assertEqual(motif_blocks,exp_motif_blocks)
def test_get_motif_sequences(self):
"""get_motif_sequences tests."""
motif_list = get_motif_sequences(self.motif_a_lines)
exp_motif_list = [('2', 71, 'ILAISVDSPFSH', 1.0, '1'),\
('6', 65, 'IYAISNDSHFVQ', 1.0, '1'),\
('8', 67, 'VISVSEDTVYVH', 1.0, '1'),\
('9', 65, 'VIGISVDSPFSL', 1.0, '1')]
self.assertEqual(motif_list,exp_motif_list)
def test_get_motif_p_value(self):
"""get_motif_p_value tests."""
log_list = ['Column 8 : Sequence Description from Fast A input',\
'Log Motif portion of MAP for motif a = -469.15170',\
'Log Fragmentation portion of MAP for motif a = -3.80666',\
]
exp_p_val = exp(-469.15170)
self.assertEqual(get_motif_p_value(log_list),exp_p_val)
def test_guess_alphabet(self):
"""guess_alphabet tests."""
motif_list = [('2', 71, 'ILAISVDSPFSH', 1.0, '1'),\
('6', 65, 'IYAISNDSHFVQ', 1.0, '1'),\
('8', 67, 'VISVSEDTVYVH', 1.0, '1'),\
('9', 65, 'VIGISVDSPFSL', 1.0, '1')]
alphabet = guess_alphabet(motif_list)
self.assertEqual(alphabet,PROTEIN)
def test_build_module_objects(self):
"""build_module_objects tests."""
module = list(build_module_objects(self.motif_b_lines,\
self.sequence_map))[0]
exp_module_dict = {('20151112', 153): 'AQYVAAHPGEVCPAKWKEG',\
('9955016', 159): 'AFQYTDEHGEVCPAGWKPG',\
('16501671', 159): 'ALQFHEEHGDVCPAQWEKG',\
('11467494', 160): 'IQYVKENPGYACPVNWNFG',\
('4996210', 162): 'SLQLTNTHPVATPVNWKEG',\
('3318841', 165): 'SLQLTAEKRVATPVDWKDG',\
}
#module.AlignedSeqs.items() == exp_module_dict.items()
for k1,k2 in zip(module.AlignedSeqs.keys(),\
exp_module_dict.keys()):
self.assertEqual(k1,k2)
v1 = str(module.AlignedSeqs[k1])
v2 = exp_module_dict[k2]
self.assertEqual(v1,v2)
def test_module_ids_to_int(self):
"""module_ids_to_int tests."""
module = list(build_module_objects(self.motif_b_lines,\
self.sequence_map))[0]
module_ids_to_int([module])
self.assertEqual(module.ID,'0')
GIBBS_FILE = """
Gibbs.linux superfamily_aln_gis.fasta 10,15,20,25 5,5,5,5
i = 20 range = 20 high = 11 low = -9
Gibbs 2.06.024 Jul 21 2005
Data file: superfamily_aln_gis.fasta
Current directory: /home/widmannj/superfamilies
The following options are set:
Concentrated Region False Sequence type False
Collapsed Alphabet False Pseudocount weight False
Use Expectation/Maximization False Don't Xnu sequence False
Help flag False Near optimal cutoff False
Number of iterations False Don't fragment False
Don't use map maximization False Repeat regions False
Output file False Informed priors file False
Plateau periods False palindromic sequence False
Don't Reverse complement False Number of seeds False
Seed Value False Pseudosite weight False
Suboptimal sampler output False Overlap False
Allow width to vary False Wilcoxon signed rank False
Sample along length False Output Scan File False
Output prior file False Modular Sampler False
Ignore Spacing Model False Sample Background False
Bkgnd Comp Model False Init from prior False
Homologous Seq pairs False Parallel Tempering False
Group Sampler False No progress info False
Fragment from middle False Verify Mode False
Alternate sample on k False No freq. soln. False
Calc. def. pseudo wt. False Motif/Recur smpl False
Phylogenetic Sampling False Supress Near Opt. False
Nearopt display cutoff False
site_samp = 0
nMotifLen = 10, 15, 20, 25
nAlphaLen = 20
nNumMotifs = 5 ,5 ,5 ,5
dPseudoCntWt = 0.1
dPseudoSiteWt = 0.8
nMaxIterations = 500
lSeedVal = 1149743202
nPlateauPeriods = 20
nSeeds = 10
nNumMotifTypes = 4
dCutoff = 0.01
dNearOptDispCutoff = 0.5
RevComplement = 0
glOverlapParam = 0
Rcutoff factor = 0.001
Post Plateau Samples = 0
Frag/Shft Per. = 5
Frag width = 15,22,30,37
Sequences to be Searched:
_________________________
#1 1091044
#2 11467494
#3 11499727
#4 1174686
#5 12044976
#6 13186328
#7 13358154
#8 13541053
#9 13541117
#10 135765
#11 1388082
#12 140543
#13 14286173
#14 14578634
#15 14600438
#16 15218394
#17 15597673
#18 15599256
#19 15602312
#20 15605725
#21 15605963
#22 15609375
#23 15609658
#24 15613511
#25 15614085
#26 15614140
#27 15615431
#28 15643152
#29 15672286
#30 15790738
#31 15791337
#32 15801846
#33 15805225
#34 15805374
#35 15807234
#36 15826629
#37 15899007
#38 15899339
#39 15964668
#40 15966937
#41 15988313
#42 16078864
#43 16123427
#44 16125919
#45 16330420
#46 1633495
#47 16501671
#48 1651717
#49 16759994
#50 16761507
#51 16803644
#52 16804867
#53 17229033
#54 17229859
#55 1729944
#56 17531233
#57 17537401
#58 17547503
#59 18309723
#60 18313548
#61 18406743
#62 19173077
#63 19554157
#64 19705357
#65 19746502
#66 20092028
#67 20151112
#68 21112072
#69 21222859
#70 21223405
#71 21227878
#72 21283385
#73 21674812
#74 23098307
#75 2649838
#76 267116
#77 27375582
#78 2822332
#79 30021713
#80 3261501
#81 3318841
#82 3323237
#83 4155972
#84 4200327
#85 4433065
#86 4704732
#87 4996210
#88 5326864
#89 6322180
#90 6323138
#91 6687568
#92 6850955
#93 7109697
#94 7290567
#95 9955016
#96 15677788
Processed Sequence Length: 16216 Total sequence length: 16307
Seed = 1149743202
motif A: 5 (+/- 7.88) out of 15393 a = 20; b = 61552; p = 0.000323771
motif B: 5 (+/- 7.87) out of 14888 a = 20; b = 59532; p = 0.000334158
motif C: 5 (+/- 7.86) out of 14383 a = 20; b = 57512; p = 0.000345232
motif D: 5 (+/- 7.85) out of 13878 a = 20; b = 55492; p = 0.000357066
** 1 **
1
2
3
4[] motif A cycle 4 AP 0.0 (0 sites)
[] motif B cycle 4 AP -567.7 (18 sites)
[] motif C cycle 4 AP -1161.7 (31 sites)
[] motif D cycle 4 AP -245.0 (4 sites)
Total Map : 412.899 Prev: -1.79769e+308 Diff: 1.79769e+308 Motifs: 53
5[] motif A cycle 5 AP -26.6 (1 sites)
[] motif B cycle 5 AP -426.5 (17 sites)
[] motif C cycle 5 AP -1245.5 (33 sites)
[------] motif D cycle 5 AP -210.4 (4 sites)
Total Map : 499.315 Prev: 412.899 Diff: 86.4157 Motifs: 55
6[] motif A cycle 6 AP -178.0 (10 sites)
[] motif B cycle 6 AP -691.2 (26 sites)
[] motif C cycle 6 AP -1189.4 (32 sites)
[------] motif D cycle 6 AP -315.4 (6 sites)
Total Map : 605.7 Prev: 499.315 Diff: 106.385 Motifs: 74
7[] motif A cycle 7 AP -260.3 (16 sites)
[] motif B cycle 7 AP -664.9 (25 sites)
[] motif C cycle 7 AP -1189.4 (32 sites)
[------] motif D cycle 7 AP -366.4 (7 sites)
Total Map : 646.637 Prev: 605.7 Diff: 40.937 Motifs: 80
8[] motif A cycle 8 AP -331.5 (20 sites)
[] motif B cycle 8 AP -725.3 (27 sites)
[] motif C cycle 8 AP -1141.6 (31 sites)
[------] motif D cycle 8 AP -366.4 (7 sites)
Total Map : 660.38 Prev: 646.637 Diff: 13.7434 Motifs: 85
9
10[] motif A cycle 10 AP -371.3 (22 sites)
[] motif B cycle 10 AP -727.7 (27 sites)
[] motif C cycle 10 AP -1245.5 (33 sites)
[] motif D cycle 10 AP -346.6 (7 sites)
Total Map : 671.561 Prev: 660.38 Diff: 11.181 Motifs: 89
11[] motif A cycle 11 AP -365.7 (22 sites)
[] motif B cycle 11 AP -760.1 (28 sites)
[] motif C cycle 11 AP -1189.4 (32 sites)
[] motif D cycle 11 AP -346.6 (7 sites)
Total Map : 685.28 Prev: 671.561 Diff: 13.719 Motifs: 89
12[] motif A cycle 12 AP -446.5 (26 sites)
[] motif B cycle 12 AP -725.3 (27 sites)
[] motif C cycle 12 AP -1141.6 (31 sites)
[] motif D cycle 12 AP -346.6 (7 sites)
Total Map : 689.5 Prev: 685.28 Diff: 4.21965 Motifs: 91
13
14
15[] motif A cycle 15 AP -422.8 (26 sites)
[] motif B cycle 15 AP -726.1 (27 sites)
[] motif C cycle 15 AP -1041.5 (29 sites)
[] motif D cycle 15 AP -348.1 (7 sites)
Total Map : 714.246 Prev: 689.5 Diff: 24.7462 Motifs: 89
16[] motif A cycle 16 AP -440.3 (27 sites)
[] motif B cycle 16 AP -725.3 (27 sites)
[] motif C cycle 16 AP -1041.5 (29 sites)
[] motif D cycle 16 AP -348.1 (7 sites)
Total Map : 717.139 Prev: 714.246 Diff: 2.89264 Motifs: 90
17[] motif A cycle 17 AP -416.4 (26 sites)
[] motif B cycle 17 AP -725.3 (27 sites)
[] motif C cycle 17 AP -1041.5 (29 sites)
[] motif D cycle 17 AP -348.1 (7 sites)
Total Map : 723.199 Prev: 717.139 Diff: 6.05975 Motifs: 89
18[] motif A cycle 18 AP -476.5 (29 sites)
[] motif B cycle 18 AP -660.6 (25 sites)
[] motif C cycle 18 AP -1041.5 (29 sites)
[] motif D cycle 18 AP -348.1 (7 sites)
Total Map : 725.194 Prev: 723.199 Diff: 1.99565 Motifs: 90
19[] motif A cycle 19 AP -387.7 (25 sites)
[] motif B cycle 19 AP -725.3 (27 sites)
[] motif C cycle 19 AP -1041.5 (29 sites)
[] motif D cycle 19 AP -348.1 (7 sites)
Total Map : 730.839 Prev: 725.194 Diff: 5.64428 Motifs: 88
20[] motif A cycle 20 AP -454.8 (28 sites)
[] motif B cycle 20 AP -691.2 (26 sites)
[] motif C cycle 20 AP -1090.2 (30 sites)
[] motif D cycle 20 AP -348.1 (7 sites)
Total Map : 740.315 Prev: 730.839 Diff: 9.47605 Motifs: 91
21
22[] motif A cycle 22 AP -347.4 (23 sites)
[] motif B cycle 22 AP -691.2 (26 sites)
[] motif C cycle 22 AP -1041.0 (29 sites)
[] motif D cycle 22 AP -348.1 (7 sites)
Total Map : 742.668 Prev: 740.315 Diff: 2.35327 Motifs: 85
23
24[] motif A cycle 24 AP -368.0 (24 sites)
[] motif B cycle 24 AP -728.8 (27 sites)
[] motif C cycle 24 AP -1041.0 (29 sites)
[] motif D cycle 24 AP -348.1 (7 sites)
Total Map : 742.863 Prev: 742.668 Diff: 0.19554 Motifs: 87
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
MAX :: 742.863379 (Seed = 1149743202, Iteration = 24 Motif A = 24 Motif B = 27 Motif C = 29 Motif D = 7 )
motif A: 5 (+/- 7.88) out of 15393 a = 20; b = 61552; p = 0.000323771
motif B: 5 (+/- 7.87) out of 14888 a = 20; b = 59532; p = 0.000334158
motif C: 5 (+/- 7.86) out of 14383 a = 20; b = 57512; p = 0.000345232
motif D: 5 (+/- 7.85) out of 13878 a = 20; b = 55492; p = 0.000357066
** 2 **
1
2
3
4[] motif A cycle 4 AP -53.8 (3 sites)
[] motif B cycle 4 AP -751.2 (33 sites)
[] motif C cycle 4 AP -1873.4 (54 sites)
[] motif D cycle 4 AP -667.4 (12 sites)
Total Map : 1679.61 Prev: -1.79769e+308 Diff: 1.79769e+308 Motifs: 102
5[] motif A cycle 5 AP -51.0 (3 sites)
[] motif B cycle 5 AP -684.4 (33 sites)
[] motif C cycle 5 AP -1599.1 (54 sites)
[------] motif D cycle 5 AP -534.8 (12 sites)
Total Map : 2005.21 Prev: 1679.61 Diff: 325.602 Motifs: 102
6[] motif A cycle 6 AP -71.4 (4 sites)
[] motif B cycle 6 AP -741.8 (35 sites)
[] motif C cycle 6 AP -1599.1 (54 sites)
[------] motif D cycle 6 AP -468.9 (11 sites)
Total Map : 2020.82 Prev: 2005.21 Diff: 15.6117 Motifs: 104
7[] motif A cycle 7 AP -51.0 (3 sites)
[] motif B cycle 7 AP -741.8 (35 sites)
[] motif C cycle 7 AP -1599.1 (54 sites)
[------] motif D cycle 7 AP -468.9 (11 sites)
Total Map : 2022.05 Prev: 2020.82 Diff: 1.23593 Motifs: 103
8
9
10[] motif A cycle 10 AP -48.5 (3 sites)
[] motif B cycle 10 AP -741.8 (35 sites)
[] motif C cycle 10 AP -1599.1 (54 sites)
[] motif D cycle 10 AP -534.8 (12 sites)
Total Map : 2026.1 Prev: 2022.05 Diff: 4.04393 Motifs: 104
11
12
13
14
15[] motif A cycle 15 AP -47.4 (3 sites)
[] motif B cycle 15 AP -741.8 (35 sites)
[] motif C cycle 15 AP -1599.1 (54 sites)
[] motif D cycle 15 AP -534.8 (12 sites)
Total Map : 2026.45 Prev: 2026.1 Diff: 0.353957 Motifs: 104
16
17
18[] motif A cycle 18 AP -64.6 (4 sites)
[] motif B cycle 18 AP -741.8 (35 sites)
[] motif C cycle 18 AP -1599.1 (54 sites)
[] motif D cycle 18 AP -468.9 (11 sites)
Total Map : 2028.63 Prev: 2026.45 Diff: 2.1753 Motifs: 104
19
20
21
22[] motif A cycle 22 AP -64.6 (4 sites)
[] motif B cycle 22 AP -850.9 (38 sites)
[] motif C cycle 22 AP -1599.1 (54 sites)
[] motif D cycle 22 AP -468.9 (11 sites)
Total Map : 2029.4 Prev: 2028.63 Diff: 0.769306 Motifs: 107
23
24
25[] motif A cycle 25 AP -64.6 (4 sites)
[] motif B cycle 25 AP -850.9 (38 sites)
[] motif C cycle 25 AP -1599.1 (54 sites)
[] motif D cycle 25 AP -534.8 (12 sites)
Total Map : 2029.8 Prev: 2029.4 Diff: 0.400632 Motifs: 108
26
27
28
29
30[] motif A cycle 30 AP -47.5 (3 sites)
[] motif B cycle 30 AP -850.9 (38 sites)
[] motif C cycle 30 AP -1658.1 (55 sites)
[] motif D cycle 30 AP -467.4 (11 sites)
Total Map : 2035.48 Prev: 2029.8 Diff: 5.68003 Motifs: 107
31
32
33
34[] motif A cycle 34 AP -47.5 (3 sites)
[] motif B cycle 34 AP -816.5 (37 sites)
[] motif C cycle 34 AP -1599.1 (54 sites)
[] motif D cycle 34 AP -467.4 (11 sites)
Total Map : 2036.53 Prev: 2035.48 Diff: 1.0477 Motifs: 105
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
MAX :: 2036.525370 (Seed = 1149743202, Iteration = 34 Motif A = 3 Motif B = 37 Motif C = 54 Motif D = 11 )
motif A: 5 (+/- 7.88) out of 15393 a = 20; b = 61552; p = 0.000323771
motif B: 5 (+/- 7.87) out of 14888 a = 20; b = 59532; p = 0.000334158
motif C: 5 (+/- 7.86) out of 14383 a = 20; b = 57512; p = 0.000345232
motif D: 5 (+/- 7.85) out of 13878 a = 20; b = 55492; p = 0.000357066
** 3 **
1
2
3
4[] motif A cycle 4 AP -408.4 (26 sites)
[] motif B cycle 4 AP -71.4 (2 sites)
[] motif C cycle 4 AP -1871.1 (53 sites)
[] motif D cycle 4 AP -174.1 (3 sites)
Total Map : 1146.38 Prev: -1.79769e+308 Diff: 1.79769e+308 Motifs: 84
5[] motif A cycle 5 AP -296.5 (26 sites)
[] motif B cycle 5 AP -71.4 (2 sites)
[] motif C cycle 5 AP -1665.3 (53 sites)
[] motif D cycle 5 AP -174.1 (3 sites)
Total Map : 1455.53 Prev: 1146.38 Diff: 309.149 Motifs: 84
6[] motif A cycle 6 AP -343.8 (29 sites)
[] motif B cycle 6 AP -71.4 (2 sites)
[] motif C cycle 6 AP -1696.2 (54 sites)
[] motif D cycle 6 AP -174.1 (3 sites)
Total Map : 1498.45 Prev: 1455.53 Diff: 42.9205 Motifs: 88
7
8[] motif A cycle 8 AP -384.0 (31 sites)
[] motif B cycle 8 AP -71.4 (2 sites)
[] motif C cycle 8 AP -1696.2 (54 sites)
[] motif D cycle 8 AP -174.1 (3 sites)
Total Map : 1502.55 Prev: 1498.45 Diff: 4.0994 Motifs: 90
9[] motif A cycle 9 AP -422.5 (33 sites)
[] motif B cycle 9 AP -71.4 (2 sites)
[] motif C cycle 9 AP -1696.2 (54 sites)
[] motif D cycle 9 AP -174.1 (3 sites)
Total Map : 1503.54 Prev: 1502.55 Diff: 0.99024 Motifs: 92
10
11[] motif A cycle 11 AP -419.9 (34 sites)
[] motif B cycle 11 AP -71.4 (2 sites)
[] motif C cycle 11 AP -1753.3 (55 sites)
[] motif D cycle 11 AP -174.1 (3 sites)
Total Map : 1516.48 Prev: 1503.54 Diff: 12.938 Motifs: 94
12[] motif A cycle 12 AP -419.9 (34 sites)
[] motif B cycle 12 AP -71.4 (2 sites)
[] motif C cycle 12 AP -1696.2 (54 sites)
[] motif D cycle 12 AP -174.1 (3 sites)
Total Map : 1518.67 Prev: 1516.48 Diff: 2.18498 Motifs: 93
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32motif A: 5 (+/- 7.88) out of 15393 a = 20; b = 61552; p = 0.000323771
motif B: 5 (+/- 7.87) out of 14888 a = 20; b = 59532; p = 0.000334158
motif C: 5 (+/- 7.86) out of 14383 a = 20; b = 57512; p = 0.000345232
motif D: 5 (+/- 7.85) out of 13878 a = 20; b = 55492; p = 0.000357066
** 4 **
1
2
3
4[] motif A cycle 4 AP 0.0 (0 sites)
[] motif B cycle 4 AP -1240.2 (53 sites)
[] motif C cycle 4 AP -192.8 (5 sites)
[] motif D cycle 4 AP -1139.0 (22 sites)
Total Map : 1140.99 Prev: -1.79769e+308 Diff: 1.79769e+308 Motifs: 80
5[] motif A cycle 5 AP -27.5 (1 sites)
[] motif B cycle 5 AP -1108.9 (54 sites)
[] motif C cycle 5 AP -107.7 (4 sites)
[+++] motif D cycle 5 AP -1112.4 (24 sites)
Total Map : 1548.32 Prev: 1140.99 Diff: 407.325 Motifs: 83
6
7
8
9[] motif A cycle 9 AP -370.2 (22 sites)
[] motif B cycle 9 AP -1103.5 (54 sites)
[] motif C cycle 9 AP -1257.6 (33 sites)
[+++] motif D cycle 9 AP 0.0 (0 sites)
Total Map : 1561.07 Prev: 1548.32 Diff: 12.75 Motifs: 109
10[] motif A cycle 10 AP -434.4 (26 sites)
[] motif B cycle 10 AP -1071.7 (53 sites)
[] motif C cycle 10 AP -1241.9 (34 sites)
[] motif D cycle 10 AP -75.4 (1 sites)
Total Map : 1606.41 Prev: 1561.07 Diff: 45.3433 Motifs: 114
11
12[] motif A cycle 12 AP -551.0 (33 sites)
[] motif B cycle 12 AP -1144.9 (55 sites)
[] motif C cycle 12 AP -1232.3 (34 sites)
[] motif D cycle 12 AP 0.0 (0 sites)
Total Map : 1660.34 Prev: 1606.41 Diff: 53.9249 Motifs: 122
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32motif A: 5 (+/- 7.88) out of 15393 a = 20; b = 61552; p = 0.000323771
motif B: 5 (+/- 7.87) out of 14888 a = 20; b = 59532; p = 0.000334158
motif C: 5 (+/- 7.86) out of 14383 a = 20; b = 57512; p = 0.000345232
motif D: 5 (+/- 7.85) out of 13878 a = 20; b = 55492; p = 0.000357066
** 5 **
1
2
3
4[] motif A cycle 4 AP -44.7 (2 sites)
[] motif B cycle 4 AP -1352.6 (53 sites)
[] motif C cycle 4 AP -98.3 (2 sites)
[] motif D cycle 4 AP -1454.8 (28 sites)
Total Map : 989.762 Prev: -1.79769e+308 Diff: 1.79769e+308 Motifs: 85
5[] motif A cycle 5 AP -61.7 (3 sites)
[] motif B cycle 5 AP -1093.0 (53 sites)
[] motif C cycle 5 AP -82.2 (2 sites)
[-----] motif D cycle 5 AP -1250.5 (29 sites)
Total Map : 1543.73 Prev: 989.762 Diff: 553.967 Motifs: 87
6[] motif A cycle 6 AP -117.1 (6 sites)
[] motif B cycle 6 AP -1118.4 (54 sites)
[] motif C cycle 6 AP -82.2 (2 sites)
[-----] motif D cycle 6 AP -1228.9 (29 sites)
Total Map : 1579.26 Prev: 1543.73 Diff: 35.536 Motifs: 91
7
8
9
10[] motif A cycle 10 AP -119.2 (6 sites)
[] motif B cycle 10 AP -1156.4 (55 sites)
[] motif C cycle 10 AP -81.4 (2 sites)
[] motif D cycle 10 AP -1227.7 (29 sites)
Total Map : 1584.6 Prev: 1579.26 Diff: 5.33507 Motifs: 92
11[] motif A cycle 11 AP -117.1 (6 sites)
[] motif B cycle 11 AP -1117.5 (54 sites)
[] motif C cycle 11 AP -81.4 (2 sites)
[] motif D cycle 11 AP -1227.7 (29 sites)
Total Map : 1584.81 Prev: 1584.6 Diff: 0.213828 Motifs: 91
12[] motif A cycle 12 AP -117.1 (6 sites)
[] motif B cycle 12 AP -1156.4 (55 sites)
[] motif C cycle 12 AP -81.4 (2 sites)
[] motif D cycle 12 AP -1227.7 (29 sites)
Total Map : 1587.59 Prev: 1584.81 Diff: 2.77506 Motifs: 92
13
14
15
16
17
18
19
20[] motif A cycle 20 AP -97.4 (5 sites)
[] motif B cycle 20 AP -1156.8 (55 sites)
[] motif C cycle 20 AP -79.9 (2 sites)
[] motif D cycle 20 AP -1227.7 (29 sites)
Total Map : 1587.99 Prev: 1587.59 Diff: 0.397059 Motifs: 91
21
22
23
24
25
26
27
28
29
30[] motif A cycle 30 AP -39.0 (2 sites)
[] motif B cycle 30 AP -1156.8 (55 sites)
[] motif C cycle 30 AP -80.5 (2 sites)
[] motif D cycle 30 AP -1227.7 (29 sites)
Total Map : 1588.16 Prev: 1587.99 Diff: 0.175261 Motifs: 88
31
32[] motif A cycle 32 AP -58.3 (3 sites)
[] motif B cycle 32 AP -1156.8 (55 sites)
[] motif C cycle 32 AP -80.5 (2 sites)
[] motif D cycle 32 AP -1227.7 (29 sites)
Total Map : 1588.59 Prev: 1588.16 Diff: 0.429544 Motifs: 89
33
34
35
36[] motif A cycle 36 AP -232.0 (13 sites)
[] motif B cycle 36 AP -1117.1 (54 sites)
[] motif C cycle 36 AP 0.0 (0 sites)
[] motif D cycle 36 AP -1227.7 (29 sites)
Total Map : 1601.78 Prev: 1588.59 Diff: 13.1946 Motifs: 96
37[] motif A cycle 37 AP -229.0 (13 sites)
[] motif B cycle 37 AP -1156.8 (55 sites)
[] motif C cycle 37 AP -234.4 (5 sites)
[] motif D cycle 37 AP -1227.7 (29 sites)
Total Map : 1611.86 Prev: 1601.78 Diff: 10.0767 Motifs: 102
38[] motif A cycle 38 AP -247.4 (14 sites)
[] motif B cycle 38 AP -1156.8 (55 sites)
[] motif C cycle 38 AP -544.7 (13 sites)
[] motif D cycle 38 AP -1227.7 (29 sites)
Total Map : 1688.66 Prev: 1611.86 Diff: 76.798 Motifs: 111
39
40[] motif A cycle 40 AP -199.9 (12 sites)
[] motif B cycle 40 AP -1156.8 (55 sites)
[] motif C cycle 40 AP -692.6 (17 sites)
[] motif D cycle 40 AP -1227.7 (29 sites)
Total Map : 1767.8 Prev: 1688.66 Diff: 79.137 Motifs: 113
41[] motif A cycle 41 AP -311.4 (18 sites)
[] motif B cycle 41 AP -1156.8 (55 sites)
[] motif C cycle 41 AP -784.5 (19 sites)
[] motif D cycle 41 AP -1227.7 (29 sites)
Total Map : 1785.93 Prev: 1767.8 Diff: 18.1288 Motifs: 121
42
43
44
45
46[] motif A cycle 46 AP -483.4 (27 sites)
[] motif B cycle 46 AP -1120.7 (54 sites)
[] motif C cycle 46 AP -928.7 (22 sites)
[] motif D cycle 46 AP -1227.7 (29 sites)
Total Map : 1799.6 Prev: 1785.93 Diff: 13.6793 Motifs: 132
47[] motif A cycle 47 AP -529.5 (29 sites)
[] motif B cycle 47 AP -1156.8 (55 sites)
[] motif C cycle 47 AP -880.8 (21 sites)
[] motif D cycle 47 AP -1227.7 (29 sites)
Total Map : 1804.67 Prev: 1799.6 Diff: 5.06939 Motifs: 134
48[] motif A cycle 48 AP -459.6 (26 sites)
[] motif B cycle 48 AP -1118.4 (54 sites)
[] motif C cycle 48 AP -876.6 (21 sites)
[] motif D cycle 48 AP -1227.7 (29 sites)
Total Map : 1808.9 Prev: 1804.67 Diff: 4.22417 Motifs: 130
49
50
51
52[] motif A cycle 52 AP -487.1 (27 sites)
[] motif B cycle 52 AP -1156.8 (55 sites)
[] motif C cycle 52 AP -914.8 (22 sites)
[] motif D cycle 52 AP -1227.7 (29 sites)
Total Map : 1817.39 Prev: 1808.9 Diff: 8.49225 Motifs: 133
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72motif A: 5 (+/- 7.88) out of 15393 a = 20; b = 61552; p = 0.000323771
motif B: 5 (+/- 7.87) out of 14888 a = 20; b = 59532; p = 0.000334158
motif C: 5 (+/- 7.86) out of 14383 a = 20; b = 57512; p = 0.000345232
motif D: 5 (+/- 7.85) out of 13878 a = 20; b = 55492; p = 0.000357066
** 6 **
1
2
3
4[] motif A cycle 4 AP -67.0 (3 sites)
[] motif B cycle 4 AP -1223.6 (54 sites)
[] motif C cycle 4 AP -145.7 (3 sites)
[] motif D cycle 4 AP -224.8 (4 sites)
Total Map : 981.16 Prev: -1.79769e+308 Diff: 1.79769e+308 Motifs: 64
5[] motif A cycle 5 AP -37.3 (2 sites)
[] motif B cycle 5 AP -989.0 (54 sites)
[] motif C cycle 5 AP -304.6 (8 sites)
[----] motif D cycle 5 AP -187.9 (4 sites)
Total Map : 1275.57 Prev: 981.16 Diff: 294.41 Motifs: 68
6[] motif A cycle 6 AP -81.8 (5 sites)
[] motif B cycle 6 AP -989.0 (54 sites)
[] motif C cycle 6 AP -590.1 (16 sites)
[----] motif D cycle 6 AP -358.3 (7 sites)
Total Map : 1416.85 Prev: 1275.57 Diff: 141.283 Motifs: 82
7[] motif A cycle 7 AP -96.8 (6 sites)
[] motif B cycle 7 AP -989.0 (54 sites)
[] motif C cycle 7 AP -633.2 (17 sites)
[----] motif D cycle 7 AP -358.3 (7 sites)
Total Map : 1424.61 Prev: 1416.85 Diff: 7.75982 Motifs: 84
8
9
10[] motif A cycle 10 AP -91.9 (6 sites)
[] motif B cycle 10 AP -989.0 (54 sites)
[] motif C cycle 10 AP -674.5 (18 sites)
[-] motif D cycle 10 AP -337.3 (7 sites)
Total Map : 1448.23 Prev: 1424.61 Diff: 23.6156 Motifs: 85
11[] motif A cycle 11 AP -91.9 (6 sites)
[] motif B cycle 11 AP -989.0 (54 sites)
[] motif C cycle 11 AP -667.6 (18 sites)
[-] motif D cycle 11 AP -337.3 (7 sites)
Total Map : 1456.26 Prev: 1448.23 Diff: 8.03531 Motifs: 85
12
13[] motif A cycle 13 AP -114.3 (7 sites)
[] motif B cycle 13 AP -989.0 (54 sites)
[] motif C cycle 13 AP -854.9 (22 sites)
[-] motif D cycle 13 AP -337.3 (7 sites)
Total Map : 1463.23 Prev: 1456.26 Diff: 6.96803 Motifs: 90
14[] motif A cycle 14 AP -137.2 (8 sites)
[] motif B cycle 14 AP -989.0 (54 sites)
[] motif C cycle 14 AP -803.3 (21 sites)
[-] motif D cycle 14 AP -337.3 (7 sites)
Total Map : 1465.75 Prev: 1463.23 Diff: 2.52048 Motifs: 90
15[] motif A cycle 15 AP -134.8 (8 sites)
[] motif B cycle 15 AP -989.0 (54 sites)
[] motif C cycle 15 AP -803.3 (21 sites)
[+] motif D cycle 15 AP -336.6 (7 sites)
Total Map : 1470.32 Prev: 1465.75 Diff: 4.56864 Motifs: 90
16[] motif A cycle 16 AP -108.3 (7 sites)
[] motif B cycle 16 AP -989.0 (54 sites)
[] motif C cycle 16 AP -850.5 (22 sites)
[+] motif D cycle 16 AP -411.5 (8 sites)
Total Map : 1480.76 Prev: 1470.32 Diff: 10.4373 Motifs: 91
17
18
19
20[] motif A cycle 20 AP -128.6 (8 sites)
[] motif B cycle 20 AP -989.0 (54 sites)
[] motif C cycle 20 AP -940.1 (24 sites)
[--] motif D cycle 20 AP -405.0 (8 sites)
Total Map : 1500.43 Prev: 1480.76 Diff: 19.6736 Motifs: 94
21[] motif A cycle 21 AP -108.3 (7 sites)
[] motif B cycle 21 AP -989.0 (54 sites)
[] motif C cycle 21 AP -940.1 (24 sites)
[--] motif D cycle 21 AP -405.0 (8 sites)
Total Map : 1501.82 Prev: 1500.43 Diff: 1.38679 Motifs: 93
22[] motif A cycle 22 AP -108.3 (7 sites)
[] motif B cycle 22 AP -989.0 (54 sites)
[] motif C cycle 22 AP -986.8 (25 sites)
[--] motif D cycle 22 AP -405.0 (8 sites)
Total Map : 1503.53 Prev: 1501.82 Diff: 1.70712 Motifs: 94
23
24
25
26
27[] motif A cycle 27 AP -128.6 (8 sites)
[] motif B cycle 27 AP -989.0 (54 sites)
[] motif C cycle 27 AP -939.0 (24 sites)
[] motif D cycle 27 AP -404.6 (8 sites)
Total Map : 1504 Prev: 1503.53 Diff: 0.475394 Motifs: 94
28[] motif A cycle 28 AP -108.3 (7 sites)
[] motif B cycle 28 AP -989.0 (54 sites)
[] motif C cycle 28 AP -939.0 (24 sites)
[] motif D cycle 28 AP -404.6 (8 sites)
Total Map : 1505.38 Prev: 1504 Diff: 1.37798 Motifs: 93
29
30
31
32
33
34
35[] motif A cycle 35 AP -142.7 (9 sites)
[] motif B cycle 35 AP -989.0 (54 sites)
[] motif C cycle 35 AP -889.8 (23 sites)
[] motif D cycle 35 AP -471.7 (9 sites)
Total Map : 1508.79 Prev: 1505.38 Diff: 3.40696 Motifs: 95
36
37[] motif A cycle 37 AP -159.8 (10 sites)
[] motif B cycle 37 AP -989.0 (54 sites)
[] motif C cycle 37 AP -939.0 (24 sites)
[] motif D cycle 37 AP -404.6 (8 sites)
Total Map : 1514.12 Prev: 1508.79 Diff: 5.3377 Motifs: 96
38[] motif A cycle 38 AP -159.8 (10 sites)
[] motif B cycle 38 AP -989.0 (54 sites)
[] motif C cycle 38 AP -986.4 (25 sites)
[] motif D cycle 38 AP -404.6 (8 sites)
Total Map : 1514.79 Prev: 1514.12 Diff: 0.670946 Motifs: 97
39
40[] motif A cycle 40 AP -175.3 (11 sites)
[] motif B cycle 40 AP -989.0 (54 sites)
[] motif C cycle 40 AP -939.0 (24 sites)
[] motif D cycle 40 AP -404.6 (8 sites)
Total Map : 1518.92 Prev: 1514.79 Diff: 4.12608 Motifs: 97
41[] motif A cycle 41 AP -151.0 (10 sites)
[] motif B cycle 41 AP -989.0 (54 sites)
[] motif C cycle 41 AP -937.3 (24 sites)
[] motif D cycle 41 AP -404.6 (8 sites)
Total Map : 1522.39 Prev: 1518.92 Diff: 3.46783 Motifs: 96
42[] motif A cycle 42 AP -132.3 (9 sites)
[] motif B cycle 42 AP -989.0 (54 sites)
[] motif C cycle 42 AP -986.4 (25 sites)
[] motif D cycle 42 AP -404.6 (8 sites)
Total Map : 1523.36 Prev: 1522.39 Diff: 0.973725 Motifs: 96
43
44
45
46
47
48
49
50[] motif A cycle 50 AP -151.0 (10 sites)
[] motif B cycle 50 AP -989.0 (54 sites)
[] motif C cycle 50 AP -986.4 (25 sites)
[] motif D cycle 50 AP -404.6 (8 sites)
Total Map : 1524.12 Prev: 1523.36 Diff: 0.756895 Motifs: 97
51
52
53
54[] motif A cycle 54 AP -169.9 (11 sites)
[] motif B cycle 54 AP -989.0 (54 sites)
[] motif C cycle 54 AP -939.0 (24 sites)
[] motif D cycle 54 AP -404.6 (8 sites)
Total Map : 1524.49 Prev: 1524.12 Diff: 0.371963 Motifs: 97
55
56
57
58
59
60
61
62
63
64
65[] motif A cycle 65 AP -151.0 (10 sites)
[] motif B cycle 65 AP -989.0 (54 sites)
[] motif C cycle 65 AP -986.8 (25 sites)
[] motif D cycle 65 AP -402.9 (8 sites)
Total Map : 1529.11 Prev: 1524.49 Diff: 4.61554 Motifs: 97
66[] motif A cycle 66 AP -169.9 (11 sites)
[] motif B cycle 66 AP -989.0 (54 sites)
[] motif C cycle 66 AP -986.8 (25 sites)
[] motif D cycle 66 AP -402.9 (8 sites)
Total Map : 1530.16 Prev: 1529.11 Diff: 1.05073 Motifs: 98
67
68
69
70[] motif A cycle 70 AP -169.9 (11 sites)
[] motif B cycle 70 AP -989.0 (54 sites)
[] motif C cycle 70 AP -986.4 (25 sites)
[] motif D cycle 70 AP -402.9 (8 sites)
Total Map : 1532.06 Prev: 1530.16 Diff: 1.89983 Motifs: 98
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90motif A: 5 (+/- 7.88) out of 15393 a = 20; b = 61552; p = 0.000323771
motif B: 5 (+/- 7.87) out of 14888 a = 20; b = 59532; p = 0.000334158
motif C: 5 (+/- 7.86) out of 14383 a = 20; b = 57512; p = 0.000345232
motif D: 5 (+/- 7.85) out of 13878 a = 20; b = 55492; p = 0.000357066
** 7 **
1
2
3
4[] motif A cycle 4 AP -201.0 (12 sites)
[] motif B cycle 4 AP -113.6 (3 sites)
[] motif C cycle 4 AP -930.1 (23 sites)
[] motif D cycle 4 AP -2959.1 (54 sites)
Total Map : 903.055 Prev: -1.79769e+308 Diff: 1.79769e+308 Motifs: 92
5[] motif A cycle 5 AP -150.4 (11 sites)
[] motif B cycle 5 AP -117.6 (4 sites)
[] motif C cycle 5 AP -871.9 (23 sites)
[] motif D cycle 5 AP -2452.5 (52 sites)
Total Map : 1437.59 Prev: 903.055 Diff: 534.536 Motifs: 90
6[] motif A cycle 6 AP -185.8 (13 sites)
[] motif B cycle 6 AP -63.1 (2 sites)
[] motif C cycle 6 AP -817.6 (22 sites)
[] motif D cycle 6 AP -2556.7 (54 sites)
Total Map : 1469.43 Prev: 1437.59 Diff: 31.8425 Motifs: 91
7[] motif A cycle 7 AP -185.8 (13 sites)
[] motif B cycle 7 AP -63.1 (2 sites)
[] motif C cycle 7 AP -817.6 (22 sites)
[] motif D cycle 7 AP -2469.2 (53 sites)
Total Map : 1490.24 Prev: 1469.43 Diff: 20.8077 Motifs: 90
8
9
10[] motif A cycle 10 AP -185.8 (13 sites)
[] motif B cycle 10 AP -60.9 (2 sites)
[] motif C cycle 10 AP -923.4 (24 sites)
[--] motif D cycle 10 AP -2454.7 (53 sites)
Total Map : 1505.14 Prev: 1490.24 Diff: 14.9023 Motifs: 92
11
12
13[] motif A cycle 13 AP -185.8 (13 sites)
[] motif B cycle 13 AP -60.9 (2 sites)
[] motif C cycle 13 AP -817.6 (22 sites)
[--] motif D cycle 13 AP -2454.7 (53 sites)
Total Map : 1505.52 Prev: 1505.14 Diff: 0.372181 Motifs: 90
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33motif A: 5 (+/- 7.88) out of 15393 a = 20; b = 61552; p = 0.000323771
motif B: 5 (+/- 7.87) out of 14888 a = 20; b = 59532; p = 0.000334158
motif C: 5 (+/- 7.86) out of 14383 a = 20; b = 57512; p = 0.000345232
motif D: 5 (+/- 7.85) out of 13878 a = 20; b = 55492; p = 0.000357066
** 8 **
1
2
3
4[] motif A cycle 4 AP -56.8 (3 sites)
[] motif B cycle 4 AP -594.9 (23 sites)
[] motif C cycle 4 AP -194.1 (4 sites)
[] motif D cycle 4 AP -367.4 (6 sites)
Total Map : 271.959 Prev: -1.79769e+308 Diff: 1.79769e+308 Motifs: 36
5[] motif A cycle 5 AP -46.0 (3 sites)
[] motif B cycle 5 AP -486.2 (21 sites)
[] motif C cycle 5 AP -979.1 (29 sites)
[-----] motif D cycle 5 AP -276.6 (6 sites)
Total Map : 840.305 Prev: 271.959 Diff: 568.345 Motifs: 59
6[] motif A cycle 6 AP -46.0 (3 sites)
[] motif B cycle 6 AP -481.1 (20 sites)
[] motif C cycle 6 AP -1396.9 (39 sites)
[-----] motif D cycle 6 AP -486.7 (10 sites)
Total Map : 950.671 Prev: 840.305 Diff: 110.367 Motifs: 72
7
8[] motif A cycle 8 AP -46.0 (3 sites)
[] motif B cycle 8 AP -316.3 (10 sites)
[] motif C cycle 8 AP -3004.0 (74 sites)
[-----] motif D cycle 8 AP -552.2 (11 sites)
Total Map : 954.552 Prev: 950.671 Diff: 3.88022 Motifs: 98
9
10[] motif A cycle 10 AP -46.5 (3 sites)
[] motif B cycle 10 AP -243.9 (8 sites)
[] motif C cycle 10 AP -2992.1 (74 sites)
[-] motif D cycle 10 AP -530.1 (11 sites)
Total Map : 1001.93 Prev: 954.552 Diff: 47.3832 Motifs: 96
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30motif A: 5 (+/- 7.88) out of 15393 a = 20; b = 61552; p = 0.000323771
motif B: 5 (+/- 7.87) out of 14888 a = 20; b = 59532; p = 0.000334158
motif C: 5 (+/- 7.86) out of 14383 a = 20; b = 57512; p = 0.000345232
motif D: 5 (+/- 7.85) out of 13878 a = 20; b = 55492; p = 0.000357066
** 9 **
1
2
3
4[] motif A cycle 4 AP -86.2 (4 sites)
[] motif B cycle 4 AP -122.1 (3 sites)
[] motif C cycle 4 AP -2149.3 (51 sites)
[] motif D cycle 4 AP -234.1 (4 sites)
Total Map : 509.201 Prev: -1.79769e+308 Diff: 1.79769e+308 Motifs: 62
5[] motif A cycle 5 AP -66.9 (4 sites)
[] motif B cycle 5 AP -75.7 (3 sites)
[] motif C cycle 5 AP -1697.1 (50 sites)
[] motif D cycle 5 AP -461.9 (9 sites)
Total Map : 1092.03 Prev: 509.201 Diff: 582.825 Motifs: 66
6[] motif A cycle 6 AP -311.5 (21 sites)
[] motif B cycle 6 AP -96.6 (3 sites)
[] motif C cycle 6 AP -1790.1 (52 sites)
[] motif D cycle 6 AP -742.9 (14 sites)
Total Map : 1213.73 Prev: 1092.03 Diff: 121.707 Motifs: 90
7[] motif A cycle 7 AP -368.8 (24 sites)
[] motif B cycle 7 AP -112.7 (4 sites)
[] motif C cycle 7 AP -1737.2 (51 sites)
[] motif D cycle 7 AP -1041.8 (19 sites)
Total Map : 1253.72 Prev: 1213.73 Diff: 39.9908 Motifs: 98
8
9
10[] motif A cycle 10 AP -481.8 (31 sites)
[] motif B cycle 10 AP -58.0 (2 sites)
[] motif C cycle 10 AP -1790.1 (52 sites)
[] motif D cycle 10 AP -1237.8 (23 sites)
Total Map : 1285.2 Prev: 1253.72 Diff: 31.4769 Motifs: 108
11[] motif A cycle 11 AP -489.8 (32 sites)
[] motif B cycle 11 AP -99.2 (3 sites)
[] motif C cycle 11 AP -1790.1 (52 sites)
[] motif D cycle 11 AP -1417.6 (26 sites)
Total Map : 1303.74 Prev: 1285.2 Diff: 18.5344 Motifs: 113
12[] motif A cycle 12 AP -492.2 (32 sites)
[] motif B cycle 12 AP -58.0 (2 sites)
[] motif C cycle 12 AP -1842.5 (53 sites)
[] motif D cycle 12 AP -1419.1 (26 sites)
Total Map : 1309.87 Prev: 1303.74 Diff: 6.13088 Motifs: 113
13
14
15
16
17[] motif A cycle 17 AP -469.5 (31 sites)
[] motif B cycle 17 AP -58.7 (2 sites)
[] motif C cycle 17 AP -1790.1 (52 sites)
[] motif D cycle 17 AP -1419.1 (26 sites)
Total Map : 1311.38 Prev: 1309.87 Diff: 1.50905 Motifs: 111
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37motif A: 5 (+/- 7.88) out of 15393 a = 20; b = 61552; p = 0.000323771
motif B: 5 (+/- 7.87) out of 14888 a = 20; b = 59532; p = 0.000334158
motif C: 5 (+/- 7.86) out of 14383 a = 20; b = 57512; p = 0.000345232
motif D: 5 (+/- 7.85) out of 13878 a = 20; b = 55492; p = 0.000357066
** 10 **
1
2
3
4[] motif A cycle 4 AP -374.5 (22 sites)
[] motif B cycle 4 AP -74.4 (2 sites)
[] motif C cycle 4 AP -1774.4 (54 sites)
[] motif D cycle 4 AP -1794.7 (36 sites)
Total Map : 1821.24 Prev: -1.79769e+308 Diff: 1.79769e+308 Motifs: 114
5[] motif A cycle 5 AP -364.1 (22 sites)
[] motif B cycle 5 AP -74.4 (2 sites)
[] motif C cycle 5 AP -1607.6 (54 sites)
[++] motif D cycle 5 AP -1738.3 (36 sites)
Total Map : 2005.44 Prev: 1821.24 Diff: 184.204 Motifs: 114
6[] motif A cycle 6 AP -355.0 (22 sites)
[] motif B cycle 6 AP -74.4 (2 sites)
[] motif C cycle 6 AP -1607.6 (54 sites)
[++] motif D cycle 6 AP -1800.3 (37 sites)
Total Map : 2026.99 Prev: 2005.44 Diff: 21.5427 Motifs: 115
7[] motif A cycle 7 AP -305.7 (20 sites)
[] motif B cycle 7 AP -74.4 (2 sites)
[] motif C cycle 7 AP -1607.6 (54 sites)
[++] motif D cycle 7 AP -1800.3 (37 sites)
Total Map : 2042.47 Prev: 2026.99 Diff: 15.4851 Motifs: 113
8[] motif A cycle 8 AP -360.2 (23 sites)
[] motif B cycle 8 AP -74.4 (2 sites)
[] motif C cycle 8 AP -1607.6 (54 sites)
[++] motif D cycle 8 AP -1734.6 (36 sites)
Total Map : 2049.89 Prev: 2042.47 Diff: 7.41789 Motifs: 115
9
10[] motif A cycle 10 AP -321.7 (22 sites)
[] motif B cycle 10 AP -74.4 (2 sites)
[] motif C cycle 10 AP -1607.6 (54 sites)
[] motif D cycle 10 AP -1800.3 (37 sites)
Total Map : 2065.41 Prev: 2049.89 Diff: 15.5161 Motifs: 115
11[] motif A cycle 11 AP -345.0 (23 sites)
[] motif B cycle 11 AP -74.4 (2 sites)
[] motif C cycle 11 AP -1607.6 (54 sites)
[] motif D cycle 11 AP -1800.3 (37 sites)
Total Map : 2068.72 Prev: 2065.41 Diff: 3.31307 Motifs: 116
12
13
14
15
16[] motif A cycle 16 AP -467.4 (29 sites)
[] motif B cycle 16 AP -74.4 (2 sites)
[] motif C cycle 16 AP -1607.6 (54 sites)
[] motif D cycle 16 AP -1800.3 (37 sites)
Total Map : 2074.61 Prev: 2068.72 Diff: 5.89359 Motifs: 122
17[] motif A cycle 17 AP -469.2 (29 sites)
[] motif B cycle 17 AP -74.4 (2 sites)
[] motif C cycle 17 AP -1607.6 (54 sites)
[] motif D cycle 17 AP -1800.3 (37 sites)
Total Map : 2075.76 Prev: 2074.61 Diff: 1.14881 Motifs: 122
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32[] motif A cycle 32 AP -377.5 (25 sites)
[] motif B cycle 32 AP -107.2 (3 sites)
[] motif C cycle 32 AP -1607.6 (54 sites)
[] motif D cycle 32 AP -1800.3 (37 sites)
Total Map : 2090.08 Prev: 2075.76 Diff: 14.3209 Motifs: 119
33
34[] motif A cycle 34 AP -398.0 (26 sites)
[] motif B cycle 34 AP -107.2 (3 sites)
[] motif C cycle 34 AP -1607.6 (54 sites)
[] motif D cycle 34 AP -1800.3 (37 sites)
Total Map : 2090.33 Prev: 2090.08 Diff: 0.249073 Motifs: 120
35[] motif A cycle 35 AP -377.0 (25 sites)
[] motif B cycle 35 AP -89.9 (3 sites)
[] motif C cycle 35 AP -1607.6 (54 sites)
[] motif D cycle 35 AP -1800.3 (37 sites)
Total Map : 2095.44 Prev: 2090.33 Diff: 5.10984 Motifs: 119
36[] motif A cycle 36 AP -377.0 (25 sites)
[] motif B cycle 36 AP -159.5 (5 sites)
[] motif C cycle 36 AP -1607.6 (54 sites)
[] motif D cycle 36 AP -1800.3 (37 sites)
Total Map : 2099.24 Prev: 2095.44 Diff: 3.79902 Motifs: 121
37[] motif A cycle 37 AP -377.0 (25 sites)
[] motif B cycle 37 AP -160.6 (5 sites)
[] motif C cycle 37 AP -1607.6 (54 sites)
[] motif D cycle 37 AP -1800.3 (37 sites)
Total Map : 2102.31 Prev: 2099.24 Diff: 3.07348 Motifs: 121
38
39
40
41[] motif A cycle 41 AP -356.4 (24 sites)
[] motif B cycle 41 AP -160.7 (5 sites)
[] motif C cycle 41 AP -1607.6 (54 sites)
[] motif D cycle 41 AP -1800.3 (37 sites)
Total Map : 2103.18 Prev: 2102.31 Diff: 0.864532 Motifs: 120
42
43[] motif A cycle 43 AP -377.0 (25 sites)
[] motif B cycle 43 AP -160.7 (5 sites)
[] motif C cycle 43 AP -1607.6 (54 sites)
[] motif D cycle 43 AP -1800.3 (37 sites)
Total Map : 2103.36 Prev: 2103.18 Diff: 0.182404 Motifs: 121
44
45[] motif A cycle 45 AP -422.3 (27 sites)
[] motif B cycle 45 AP -229.0 (7 sites)
[] motif C cycle 45 AP -1607.6 (54 sites)
[] motif D cycle 45 AP -1800.3 (37 sites)
Total Map : 2104.94 Prev: 2103.36 Diff: 1.57855 Motifs: 125
46[] motif A cycle 46 AP -422.3 (27 sites)
[] motif B cycle 46 AP -187.8 (6 sites)
[] motif C cycle 46 AP -1607.6 (54 sites)
[] motif D cycle 46 AP -1668.3 (35 sites)
Total Map : 2109.23 Prev: 2104.94 Diff: 4.29029 Motifs: 122
47[] motif A cycle 47 AP -446.7 (28 sites)
[] motif B cycle 47 AP -187.8 (6 sites)
[] motif C cycle 47 AP -1607.6 (54 sites)
[] motif D cycle 47 AP -1668.3 (35 sites)
Total Map : 2109.87 Prev: 2109.23 Diff: 0.644012 Motifs: 123
48
49[] motif A cycle 49 AP -490.2 (30 sites)
[] motif B cycle 49 AP -187.8 (6 sites)
[] motif C cycle 49 AP -1607.6 (54 sites)
[] motif D cycle 49 AP -1668.3 (35 sites)
Total Map : 2110.99 Prev: 2109.87 Diff: 1.11211 Motifs: 125
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
MAX :: 2110.985589 (Seed = 1149743202, Iteration = 49 Motif A = 30 Motif B = 6 Motif C = 54 Motif D = 35 )
Max subopt MAP found on seed 10
======================== NEAR OPTIMAL RESULTS ========================
======================================================================
MAP = 584 maybe = 588 discard = 64640
Max set 2111.157969 at 4
5
10
15
20
25
30
35
40
45
50
55
60
65
70
75
80
85
90
95
100
105
110
115
120
125
130
135
140
145
150
155
160
165
170
175
180
185
190
195
200
205
210
215
220
225
230
235
240
245
250
255
260
265
270
275
280
285
290
295
300
305
310
315
320
325
330
335
340
345
350
355
360
365
370
375
380
385
390
395
400
405
410
415
420
425
430
435
440
445
450
455
460
465
470
475
480
485
490
495
500
=============================================================
====== Results by Sequence =====
=============================================================
1, 1, 3 37 ldfdk EFRDKTVVIVAIPGAFTPTCTANHIPPF vekft 64 1.00 F 1091044
1, 2, 0 79 agvda VIVLSANDPFVQ safgk 90 1.00 F 1091044
2, 1, 3 32 irlsd YRGKKYVILFFYPANFTAISPTELMLLS drise 59 1.00 F 11467494
2, 2, 0 72 klstq ILAISVDSPFSH lqyll 83 1.00 F 11467494
2, 3, 1 161 riles IQYVKENPGYACPVNWNFG dqvfy 179 1.00 F 11467494
3, 1, 2 17 viqsd KLVVVDFYADWCMPCRYISPILEKL skeyn 41 1.00 F 11499727
4, 1, 2 22 llntt QYVVADFYADWCGPCKAIAPMYAQF aktfs 46 1.00 F 1174686
5, 1, 2 19 ifsak KNVIVDFWAAWCGPCKLTSPEFQKA adefs 43 1.00 F 12044976
6, 1, 3 26 eikei DLKSNWNVFFFYPYSYSFICPLELKNIS nkike 53 1.00 F 13186328
6, 2, 0 66 nlntk IYAISNDSHFVQ knwie 77 1.00 F 13186328
7, 1, 2 21 kenhs KPILIDFYADWCPPCRMLIPVLDSI ekkhg 45 1.00 F 13358154
8, 1, 3 28 kirls SYRGKWVVLFFYPADFTFVCPTEVEGFA edyek 55 1.00 F 13541053
8, 2, 0 68 kknte VISVSEDTVYVH kawvq 79 1.00 F 13541053
9, 1, 3 26 mrkls EFRGQNVVLAFFPGAFTSVCTKEMCTFR dsman 53 1.00 F 13541117
9, 2, 0 66 kfkak VIGISVDSPFSL aefak 77 1.00 F 13541117
10, 1, 2 17 aetse GVVLADFWAPWCGPCKMIAPVLEEL dqemg 41 1.00 F 135765
11, 1, 2 29 akesn KLIVIDFTASWCPPCRMIAPIFNDL akkfm 53 1.00 F 1388082
12, 1, 2 44 likqn DKLVIDFYATWCGPCKMMQPHLTKL iqayp 68 1.00 F 140543
13, 1, 3 25 melpd EFEGKWFILFSHPADFTPVCTTEFVAFQ evype 52 1.00 F 14286173
13, 2, 0 65 eldce LVGLSVDQVFSH ikwie 76 1.00 F 14286173
14, 1, 2 80 selrg KVVMLQFTASWCGVCRKEMPFIEKD iwlkh 104 1.00 F 14578634
15, 1, 3 25 kirls DFRGRIVVLYFYPRAMTPGCTREGVRFN ellde 52 1.00 F 14600438
15, 2, 0 65 klgav VIGVSTDSVEKN rkfae 76 1.00 F 14600438
16, 1, 2 23 lqnsd KPVLVDFYATWCGPCQLMVPILNEV setlk 47 1.00 F 15218394
17, 1, 2 157 adfrg RPLVINLWASWCPPCRREMPVLQQA qaenp 181 1.00 F 15597673
18, 1, 2 26 ensfh KPVLVDFWADWCAPCKALMPLLAQI aesyq 50 1.00 F 15599256
19, 1, 2 67 negkg KTILLNFWSETCGVCIAELKTFEQL lqsyp 91 1.00 F 15602312
20, 1, 2 61 eefkg KVLLINFWATWCPPCKEEIPMFKEI yekyr 85 1.00 F 15605725
21, 1, 0 80 megvd VTVVSMDLPFAQ krfce 91 1.00 F 15605963
22, 1, 3 26 vtlrg YRGAKNVLLVFFPLAFTGICQGELDQLR dhlpe 53 1.00 F 15609375
23, 1, 3 30 nvsla DYRGRRVIVYFYPAASTPGCTKQACDFR dnlgd 57 1.00 F 15609658
23, 2, 0 70 tagln VVGISPDKPEKL atfrd 81 1.00 F 15609658
24, 1, 3 24 tvsls DFKGKNIVLYFYPKDMTPGCTTEACDFR drved 51 1.00 F 15613511
24, 2, 0 64 glntv ILGVSPDPVERH kkfie 75 1.00 F 15613511
25, 1, 2 60 sdyrg DVVILNVWASWCEPCRKEMPALMEL qsdye 84 1.00 F 15614085
26, 1, 2 63 releg KGVFLNFWGTYCPPCEREMPHMEKL ygeyk 87 1.00 F 15614140
27, 1, 2 72 sslrg QPVILHFFATWCPVCQDEMPSLVKL dkeyr 96 1.00 F 15615431
28, 1, 3 20 tfthv DLYGKYTILFFFPKAGTSGCTREAVEFS renfe 47 1.00 F 15643152
28, 2, 0 56 fekaq VVGISRDSVEAL krfke 67 1.00 F 15643152
30, 1, 3 61 gltda LADNRAVVLFFYPFDFSPVCATELCAIQ narwf 88 1.00 F 15790738
30, 2, 0 101 tpgla VWGISPDSTYAH eafad 112 1.00 F 15790738
31, 1, 2 2 m TVTLKDFYADWCGPCKTQDPILEEL eadyd 26 1.00 F 15791337
32, 1, 0 80 idntv VLCISADLPFAQ srfcg 91 1.00 F 15801846
33, 1, 2 72 adyrg RPVVLNFWASWCGPCREEAPLFAKL aahpg 96 1.00 F 15805225
34, 1, 2 78 taaqg KPVVINFWASWCVPCRQEAPLFSKL sqeta 102 1.00 F 15805374
35, 1, 3 26 itlss YRGQSHVVLVFYPLDFSPVCSMQLPEYS gsqdd 53 1.00 F 15807234
35, 2, 0 66 eagav VLGINRDSVYAH rawaa 77 1.00 F 15807234
36, 1, 3 28 vnlae LFKGKKGVLFGVPGAFTPGCSKTHLPGF veqae 55 1.00 F 15826629
37, 1, 2 49 fitkn KIVVVDFWAEWCAPCLILAPVIEEL andyp 73 1.00 F 15899007
38, 1, 3 26 vkips DFKGKVVVLAFYPAAFTSVCTKEMCTFR dsmak 53 1.00 F 15899339
38, 2, 0 66 evnav VIGISVDPPFSN kafke 77 1.00 F 15899339
39, 1, 3 30 vttel LFKGKRVVLFAVPGAFTPTCSLNHLPGY lenrd 57 1.00 F 15964668
40, 1, 2 61 easrq QPVLVDFWAPWCGPCKQLTPVIEKV vreaa 85 1.00 F 15966937
41, 1, 2 61 sdfrg KTLLVNLWATWCVPCRKEMPALDEL qgkls 85 1.00 F 15988313
42, 1, 2 60 qdakg KKVLLNFWATWCKPCRQEMPAMEKL qkeya 84 1.00 F 16078864
43, 1, 2 53 llqdd LPMVIDFWAPWCGPCRSFAPIFAET aaera 77 1.00 F 16123427
44, 1, 3 50 fnlak ALKKGPVVLYFFPAAYTAGCTAEAREFA eatpe 77 1.00 F 16125919
46, 1, 2 21 vlkad GAILVDFWAEWCGPCKMIAPILDEI adeyq 45 1.00 F 1633495
47, 1, 3 31 fnfkq HTNGKTTVLFFWPMDFTFVCPSELIAFD kryee 58 1.00 F 16501671
47, 2, 0 71 krgve VVGVSFDSEFVH nawrn 82 1.00 F 16501671
47, 3, 1 160 lrmvd ALQFHEEHGDVCPAQWEKG kegmn 178 1.00 F 16501671
48, 1, 2 34 vlqcp KPILVYFGAPWCGLCHFVKPLLNHL hgewq 58 1.00 F 1651717
49, 1, 2 60 tlsee RPVLLYFWASWCGVCRFTTPAVAHL aaege 84 1.00 F 16759994
50, 1, 2 53 llkdd LPVVIDFWAPWCGPCRNFAPIFEDV aeers 77 1.00 F 16761507
51, 1, 3 33 slekn IEDDKWTILFFYPMDFTFVCPTEIVAIS arsde 60 1.00 F 16803644
52, 1, 2 19 iissh PKILLNFWAEWCAPCRCFWPTLEQF aemee 43 1.00 F 16804867
53, 1, 3 31 vttdd LFAGKTVAVFSLPGAFTPTCSSTHLPGY nelak 58 1.00 F 17229033
53, 2, 0 73 ngvde IVCISVNDAFVM newak 84 1.00 F 17229033
54, 1, 2 22 vlsed KVVVVDFTATWCGPCRLVSPLMDQL adeyk 46 1.00 F 17229859
55, 1, 2 18 vlegt GYVLVDYFSDGCVPCKALMPAVEEL skkye 42 1.00 F 1729944
56, 1, 2 28 rqhpe KIIILDFYATWCGPCKAIAPLYKEL atthk 52 1.00 F 17531233
57, 1, 2 27 ehlkg KIIGLYFSASWCPPCRAFTPKLKEF feeik 51 1.00 F 17537401
58, 1, 2 63 safrg QPVVINFWAPWCGPCVEEMPELSAL aqeqk 87 1.00 F 17547503
59, 1, 2 286 seykg KTIFLNFWATWCPPCRGEMPYIDEL ykeyn 310 1.00 F 18309723
60, 1, 3 28 rlsev LKRGRPVVLLFFPGAFTSVCTKELCTFR dkmal 55 1.00 F 18313548
60, 2, 0 68 kanae VLAISVDSPFAL kafkd 79 1.00 F 18313548
61, 1, 2 44 dsllg KKIGLYFSAAWCGPCQRFTPQLVEV ynels 68 1.00 F 18406743
61, 2, 2 364 sdlvg KTILMYFSAHWCPPCRAFTPKLVEV ykqik 388 1.00 F 18406743
62, 1, 3 26 eislq DYIGKYVVLAFYPLDFTFVCPTEINRFS dlkga 53 1.00 F 19173077
62, 2, 0 66 rrnav VLLISCDSVYTH kawas 77 1.00 F 19173077
63, 1, 2 15 sdfeg EVVVLNAWGQWCAPCRAEVDDLQLV qetld 39 1.00 F 19554157
64, 1, 2 39 eeykg KVVVINFWATWCGYCVEEMPGFEKV ykefg 63 1.00 F 19705357
66, 1, 2 7 agdfm KPMLLDFSATWCGPCRMQKPILEEL ekkyg 31 1.00 F 20092028
67, 1, 3 27 evtek DTEGRWSVFFFYPADFTFVCPTELGDVA dhyee 54 1.00 F 20151112
67, 2, 0 67 klgvd VYSVSTDTHFTH kawhs 78 1.00 F 20151112
67, 3, 1 154 rkika AQYVAAHPGEVCPAKWKEG eatla 172 1.00 F 20151112
68, 1, 3 29 vdtht LFTGRKVVLFAVPGAFTPTCSAKHLPGY veqfe 56 1.00 F 21112072
69, 1, 2 103 adykg KVVVLNVWGSWCPPCRAEAKNFEKV yqdvk 127 1.00 F 21222859
70, 1, 3 32 qinhk TYEGQWKVVFAWPKDFTFVCPTEIAAFG klnde 59 1.00 F 21223405
70, 2, 0 72 drdaq ILGFSGDSEFVH hawrk 83 1.00 F 21223405
71, 1, 3 28 eihly DLKGKKVLLSFHPLAWTQVCAQQMKSLE enyel 55 1.00 F 21227878
72, 1, 0 78 keegi VLTISADLPFAQ krwca 89 1.00 F 21283385
73, 1, 3 25 mvsls EFKGRKVLLIFYPGDDTPVCTAQLCDYR nnvaa 52 1.00 F 21674812
73, 2, 0 65 srgit VIGISGDSPESH kqfae 76 1.00 F 21674812
74, 1, 2 53 sdfkg ERVLINFWTTWCPPCRQEMPDMQRF yqdlq 77 1.00 F 23098307
76, 1, 2 20 kylqh QRVVVDFSAEWCGPCRAIAPVFDKL sneft 44 1.00 F 267116
77, 1, 2 81 aafkg KVSLVNVWASWCVPCHDEAPLLTEL gkdkr 105 1.00 F 27375582
78, 1, 2 34 vtsdn DVVLADFYADWCGPCQMLEPVVETL aeqtd 58 1.00 F 2822332
79, 1, 2 77 sdlkg KKVILNFWATWCGPCQQEMPDMEAF ykehk 101 1.00 F 30021713
80, 1, 2 19 tisan SNVLVYFWAPLCAPCDLFTPTYEAS srkhf 43 1.00 F 3261501
81, 1, 3 28 irfhd FLGDSWGILFSHPRDFTPVCTTELGRAA klape 55 1.00 F 3318841
81, 2, 0 68 krnvk LIALSIDSVEDH lawsk 79 1.00 F 3318841
81, 3, 1 166 lrvvi SLQLTAEKRVATPVDWKDG dsvmv 184 1.00 F 3318841
82, 1, 2 19 tietn PLVIVDFWAPWCGSCKMLGPVLEEV esevg 43 1.00 F 3323237
83, 1, 2 17 ektah QAVVVNVGASWCPDCRKIEPIMENL aktyk 41 1.00 F 4155972
84, 1, 2 79 vvnse TPVVVDFHAQWCGPCKILGPRLEKM vakqh 103 1.00 F 4200327
85, 1, 3 10 eidin EYKGKYVVLLFYPLDWTFVCPTEMIGYS evagq 37 1.00 F 4433065
85, 2, 0 50 eince VIGVSVDSVYCH qawce 61 1.00 F 4433065
86, 1, 3 32 vsvhs IAAGKKVILFGVPGAFTPTCSMSHVPGF igkae 59 1.00 F 4704732
86, 2, 0 74 kgide IICFSVNDPFVM kawgk 85 1.00 F 4704732
87, 1, 3 28 fdfyk YVGDNWAILFSHPHDFTPVCTTELAEFG kmhee 55 1.00 F 4996210
87, 2, 0 68 klnck LIGFSCNSKESH dqwie 79 1.00 F 4996210
87, 3, 1 163 lrvlk SLQLTNTHPVATPVNWKEG dkcci 181 1.00 F 4996210
88, 1, 3 41 ynask EFANKKVVLFALPGAFTPVCSANHVPEY iqklp 68 1.00 F 5326864
89, 1, 3 88 slkki TENNRVVVFFVYPRASTPGCTRQACGFR dnyqe 115 1.00 F 6322180
90, 1, 3 43 ewskl ISENKKVIITGAPAAFSPTCTVSHIPGY inyld 70 1.00 F 6323138
91, 1, 2 20 nenkg RLIVVDFFAQWCGPCRNIAPKVEAL akeip 44 1.00 F 6687568
92, 1, 0 68 klgve VLSVSVDSVFVH kmwnd 79 1.00 F 6850955
93, 1, 2 18 llttn KKVVVDFYANWCGPCKILGPIFEEV aqdkk 42 1.00 F 7109697
94, 1, 2 21 ilaed KLVVIDFYADWCGPCKIIAPKLDEL aqqys 45 1.00 F 7290567
95, 1, 3 31 evkls DYKGKYVVLFFYPLDFTFVCPTEIIAFS nraed 58 1.00 F 9955016
95, 2, 0 71 klgce VLGVSVDSQFTH lawin 82 1.00 F 9955016
95, 3, 1 160 lrlvq AFQYTDEHGEVCPAGWKPG sdtik 178 1.00 F 9955016
96, 1, 2 49 adlqg KVTLINFWFPSCPGCVSEMPKIIKT andyk 73 1.00 F 15677788
124 motifs
Column 1 : Sequence Number, Site Number
Column 2 : Motif type
Column 3 : Left End Location
Column 4 : Motif Element
Column 5 : Right End Location
Column 6 : Probability of Element
Column 7 : Forward Motif (F) or Reverse Complement (R)
Column 8 : Sequence Description from Fast A input
-------------------------------------------------------------------------
MOTIF a
Motif model (residue frequency x 100)
____________________________________________
Pos. # a v c d e f g h i w k l m n y p q r s t Info
_____________________________________________________________________________________________
1 | . 68 . . . . . . 20 . . 10 . . . . . . . . 2.4
2 | . 17 . . . . . . 34 3 . 34 . . 6 . . . . 3 1.7
3 | 13 6 10 . . . 51 . . . . 3 . . . . . . 10 3 1.9
4 | . 31 . . . 10 . . 48 . . 10 . . . . . . . . 2.1
5 | . . . . . . . . . . . . . 3 . . . . 96 . 3.8
7 | . . . 86 . . . . . . . . . 13 . . . . . . 3.2
8 | . . . 10 . . . . . . 3 10 . . . 6 3 . 58 6 2.0
9 | 3 34 . . 6 . . 6 . . 3 . . . . 37 3 . . 3 1.8
10 | . . . . 24 58 . . . . . . . . 17 . . . . . 2.9
12 | . . . . . . . 55 . . . 13 6 6 . . 17 . . . 3.4
nonsite 8 8 . 6 7 4 7 1 6 . 7 9 2 4 2 4 3 4 5 5
site 1 15 1 9 3 6 5 6 10 . . 8 . 2 2 4 2 . 16 1
Motif probability model
____________________________________________
Pos. # a v c d e f g h i w k l m n y p q r s t
____________________________________________
1 | 0.001 0.679 0.000 0.001 0.001 0.001 0.001 0.000 0.204 0.000 0.001 0.103 0.000 0.001 0.000 0.001 0.001 0.001 0.001 0.001
2 | 0.001 0.171 0.000 0.001 0.001 0.001 0.001 0.000 0.340 0.034 0.001 0.341 0.000 0.001 0.068 0.001 0.001 0.001 0.001 0.035
3 | 0.137 0.069 0.102 0.001 0.001 0.001 0.510 0.000 0.001 0.000 0.001 0.035 0.000 0.001 0.000 0.001 0.001 0.001 0.103 0.035
4 | 0.001 0.306 0.000 0.001 0.001 0.103 0.001 0.000 0.476 0.000 0.001 0.103 0.000 0.001 0.000 0.001 0.001 0.001 0.001 0.001
5 | 0.001 0.001 0.000 0.001 0.001 0.001 0.001 0.000 0.001 0.000 0.001 0.002 0.000 0.035 0.000 0.001 0.001 0.001 0.950 0.001
7 | 0.001 0.001 0.000 0.849 0.001 0.001 0.001 0.000 0.001 0.000 0.001 0.002 0.000 0.136 0.000 0.001 0.001 0.001 0.001 0.001
8 | 0.001 0.001 0.000 0.103 0.001 0.001 0.001 0.000 0.001 0.000 0.035 0.103 0.000 0.001 0.000 0.069 0.034 0.001 0.577 0.069
9 | 0.035 0.340 0.000 0.001 0.069 0.001 0.001 0.068 0.001 0.000 0.035 0.002 0.000 0.001 0.000 0.374 0.034 0.001 0.001 0.035
10 | 0.001 0.001 0.000 0.001 0.238 0.577 0.001 0.000 0.001 0.000 0.001 0.002 0.000 0.001 0.170 0.001 0.001 0.001 0.001 0.001
12 | 0.001 0.001 0.000 0.001 0.001 0.001 0.001 0.543 0.001 0.000 0.001 0.137 0.068 0.068 0.000 0.001 0.170 0.001 0.001 0.001
Background probability model
0.089 0.079 0.008 0.067 0.076 0.044 0.071 0.013 0.061 0.009 0.076 0.094 0.023 0.043 0.027 0.045 0.034 0.044 0.052 0.052
10 columns
Num Motifs: 29
1, 1 79 agvda VIVLSANDPFVQ safgk 90 1.00 F 1091044
2, 1 72 klstq ILAISVDSPFSH lqyll 83 1.00 F 11467494
6, 1 66 nlntk IYAISNDSHFVQ knwie 77 1.00 F 13186328
8, 1 68 kknte VISVSEDTVYVH kawvq 79 1.00 F 13541053
9, 1 66 kfkak VIGISVDSPFSL aefak 77 1.00 F 13541117
13, 1 65 eldce LVGLSVDQVFSH ikwie 76 1.00 F 14286173
15, 1 65 klgav VIGVSTDSVEKN rkfae 76 1.00 F 14600438
21, 1 80 megvd VTVVSMDLPFAQ krfce 91 1.00 F 15605963
23, 1 70 tagln VVGISPDKPEKL atfrd 81 1.00 F 15609658
24, 1 64 glntv ILGVSPDPVERH kkfie 75 1.00 F 15613511
28, 1 56 fekaq VVGISRDSVEAL krfke 67 1.00 F 15643152
30, 1 101 tpgla VWGISPDSTYAH eafad 112 1.00 F 15790738
32, 1 80 idntv VLCISADLPFAQ srfcg 91 1.00 F 15801846
35, 1 66 eagav VLGINRDSVYAH rawaa 77 1.00 F 15807234
38, 1 66 evnav VIGISVDPPFSN kafke 77 1.00 F 15899339
47, 1 71 krgve VVGVSFDSEFVH nawrn 82 1.00 F 16501671
53, 1 73 ngvde IVCISVNDAFVM newak 84 1.00 F 17229033
60, 1 68 kanae VLAISVDSPFAL kafkd 79 1.00 F 18313548
62, 1 66 rrnav VLLISCDSVYTH kawas 77 1.00 F 19173077
67, 1 67 klgvd VYSVSTDTHFTH kawhs 78 1.00 F 20151112
70, 1 72 drdaq ILGFSGDSEFVH hawrk 83 1.00 F 21223405
72, 1 78 keegi VLTISADLPFAQ krwca 89 1.00 F 21283385
73, 1 65 srgit VIGISGDSPESH kqfae 76 1.00 F 21674812
81, 1 68 krnvk LIALSIDSVEDH lawsk 79 1.00 F 3318841
85, 1 50 eince VIGVSVDSVYCH qawce 61 1.00 F 4433065
86, 1 74 kgide IICFSVNDPFVM kawgk 85 1.00 F 4704732
87, 1 68 klnck LIGFSCNSKESH dqwie 79 1.00 F 4996210
92, 1 68 klgve VLSVSVDSVFVH kmwnd 79 1.00 F 6850955
95, 1 71 klgce VLGVSVDSQFTH lawin 82 1.00 F 9955016
***** **** *
Column 1 : Sequence Number, Site Number
Column 2 : Left End Location
Column 4 : Motif Element
Column 5 : Right End Location
Column 6 : Probability of Element
Column 7 : Forward Motif (F) or Reverse Complement (R)
Column 8 : Sequence Description from Fast A input
Log Motif portion of MAP for motif a = -469.15170
Log Fragmentation portion of MAP for motif a = -3.80666
=============================================================
====== ELEMENTS OCCURRING GREATER THAN 50% OF THE TIME =====
====== Motif a =====
=============================================================
Listing of those elements occurring greater than 50% of the time
in near optimal sampling using 500 iterations
Motif model (residue frequency x 100)
____________________________________________
Pos. # a v c d e f g h i w k l m n y p q r s t Info
_____________________________________________________________________________________________
1 | . 74 . . . . . . 14 . . 11 . . . . . . . . 2.5
2 | . 14 . . . 3 . . 29 3 . 37 . . 7 . . . . 3 1.6
3 | 14 3 3 . . . 59 . . . . 3 . . . . . . 11 3 1.9
4 | . 33 . . . 7 . . 48 . . 11 . . . . . . . . 2.1
5 | . . . . . . . . . . . . . 3 . . . . 96 . 3.8
7 | . . . 96 . . . . . . . . . 3 . . . . . . 3.5
8 | . . . . . . . . . . 3 11 . . . 7 3 . 66 7 2.4
9 | . 40 . . 7 . . 7 . . 3 . . . . 33 3 . . 3 1.9
10 | . . . . 25 51 . . . . . . . . 18 . . . . 3 2.7
12 | . . . . . . . 59 . . . 14 . 7 . . 18 . . . 3.6
nonsite 8 8 . 6 7 4 7 1 6 . 7 9 2 4 2 4 3 4 5 5
site 1 16 . 9 3 6 5 6 9 . . 8 . 1 2 4 2 . 17 2
Motif probability model
____________________________________________
Pos. # a v c d e f g h i w k l m n y p q r s t
____________________________________________
1 | 0.002 0.729 0.000 0.001 0.001 0.001 0.001 0.000 0.147 0.000 0.001 0.111 0.000 0.001 0.000 0.001 0.001 0.001 0.001 0.001
2 | 0.002 0.147 0.000 0.001 0.001 0.037 0.001 0.000 0.292 0.037 0.001 0.365 0.000 0.001 0.073 0.001 0.001 0.001 0.001 0.037
3 | 0.147 0.038 0.037 0.001 0.001 0.001 0.583 0.000 0.001 0.000 0.001 0.038 0.000 0.001 0.000 0.001 0.001 0.001 0.110 0.037
4 | 0.002 0.329 0.000 0.001 0.001 0.074 0.001 0.000 0.474 0.000 0.001 0.111 0.000 0.001 0.000 0.001 0.001 0.001 0.001 0.001
5 | 0.002 0.001 0.000 0.001 0.001 0.001 0.001 0.000 0.001 0.000 0.001 0.002 0.000 0.037 0.000 0.001 0.001 0.001 0.946 0.001
7 | 0.002 0.001 0.000 0.947 0.001 0.001 0.001 0.000 0.001 0.000 0.001 0.002 0.000 0.037 0.000 0.001 0.001 0.001 0.001 0.001
8 | 0.002 0.001 0.000 0.001 0.001 0.001 0.001 0.000 0.001 0.000 0.038 0.111 0.000 0.001 0.000 0.074 0.037 0.001 0.655 0.074
9 | 0.002 0.401 0.000 0.001 0.074 0.001 0.001 0.073 0.001 0.000 0.038 0.002 0.000 0.001 0.000 0.328 0.037 0.001 0.001 0.037
10 | 0.002 0.001 0.000 0.001 0.256 0.510 0.001 0.000 0.001 0.000 0.001 0.002 0.000 0.001 0.182 0.001 0.001 0.001 0.001 0.037
12 | 0.002 0.001 0.000 0.001 0.001 0.001 0.001 0.582 0.001 0.000 0.001 0.147 0.000 0.073 0.000 0.001 0.182 0.001 0.001 0.001
Background probability model
0.089 0.079 0.008 0.067 0.076 0.044 0.071 0.013 0.061 0.009 0.076 0.094 0.023 0.043 0.027 0.045 0.034 0.044 0.052 0.052
10 columns
Num Motifs: 27
2, 1 72 klstq ILAISVDSPFSH lqyll 83 1.00 F 11467494
6, 1 66 nlntk IYAISNDSHFVQ knwie 77 1.00 F 13186328
8, 1 68 kknte VISVSEDTVYVH kawvq 79 1.00 F 13541053
9, 1 66 kfkak VIGISVDSPFSL aefak 77 1.00 F 13541117
13, 1 65 eldce LVGLSVDQVFSH ikwie 76 0.98 F 14286173
15, 1 65 klgav VIGVSTDSVEKN rkfae 76 1.00 F 14600438
21, 1 80 megvd VTVVSMDLPFAQ krfce 91 0.65 F 15605963
23, 1 70 tagln VVGISPDKPEKL atfrd 81 0.99 F 15609658
24, 1 64 glntv ILGVSPDPVERH kkfie 75 1.00 F 15613511
28, 1 56 fekaq VVGISRDSVEAL krfke 67 1.00 F 15643152
30, 1 101 tpgla VWGISPDSTYAH eafad 112 0.98 F 15790738
32, 1 80 idntv VLCISADLPFAQ srfcg 91 0.99 F 15801846
35, 1 66 eagav VLGINRDSVYAH rawaa 77 1.00 F 15807234
38, 1 66 evnav VIGISVDPPFSN kafke 77 1.00 F 15899339
47, 1 71 krgve VVGVSFDSEFVH nawrn 82 1.00 F 16501671
60, 1 68 kanae VLAISVDSPFAL kafkd 79 1.00 F 18313548
62, 1 66 rrnav VLLISCDSVYTH kawas 77 1.00 F 19173077
67, 1 67 klgvd VYSVSTDTHFTH kawhs 78 1.00 F 20151112
70, 1 72 drdaq ILGFSGDSEFVH hawrk 83 1.00 F 21223405
72, 1 78 keegi VLTISADLPFAQ krwca 89 0.99 F 21283385
73, 1 65 srgit VIGISGDSPESH kqfae 76 1.00 F 21674812
81, 1 68 krnvk LIALSIDSVEDH lawsk 79 1.00 F 3318841
85, 1 50 eince VIGVSVDSVYCH qawce 61 1.00 F 4433065
87, 1 68 klnck LIGFSCNSKESH dqwie 79 0.56 F 4996210
89, 1 127 kkyaa VFGLSADSVTSQ kkfqs 138 0.51 F 6322180
92, 1 68 klgve VLSVSVDSVFVH kmwnd 79 1.00 F 6850955
95, 1 71 klgce VLGVSVDSQFTH lawin 82 1.00 F 9955016
***** **** *
-------------------------------------------------------------------------
MOTIF b
Motif model (residue frequency x 100)
____________________________________________
Pos. # a v c d e f g h i w k l m n y p q r s t Info
_____________________________________________________________________________________________
1 | 50 . . . . . . . 16 . . . . . . . . . 33 . 1.9
2 | . . . . . 16 . . . . . 50 . . . . 33 . . . 2.1
3 | . . . . . . . . . . . . . . 33 . 66 . . . 3.4
4 | . 33 . . . 16 . . . . . 33 . . 16 . . . . . 1.7
6 | 33 . . 16 33 . . . . . . . . 16 . . . . . . 1.5
8 | . . . . . . . 50 . . 16 . . . . 33 . . . . 3.2
9 | . . . . . . 66 . . . . . . . . 16 . 16 . . 2.3
10 | . 33 . 16 33 . . . . . . . . . 16 . . . . . 1.7
11 | 50 50 . . . . . . . . . . . . . . . . . . 2.1
12 | . . 66 . . . . . . . . . . . . . . . . 33 4.4
13 | . . . . . . . . . . . . . . . 100 . . . . 3.8
14 | 50 50 . . . . . . . . . . . . . . . . . . 2.1
16 | . . . . . . . . . 100 . . . . . . . . . . 5.8
17 | . . . . 16 . . . . . 66 . . 16 . . . . . . 2.1
19 | . . . . . . 100 . . . . . . . . . . . . . 3.2
nonsite 8 7 . 6 7 4 7 1 6 . 7 9 2 4 2 4 3 4 5 5
site 12 11 4 2 5 2 11 3 1 6 5 5 . 2 4 10 6 1 2 2
Motif probability model
____________________________________________
Pos. # a v c d e f g h i w k l m n y p q r s t
____________________________________________
1 | 0.468 0.006 0.001 0.005 0.005 0.004 0.005 0.001 0.158 0.001 0.006 0.007 0.002 0.003 0.002 0.004 0.002 0.003 0.312 0.004
2 | 0.006 0.006 0.001 0.005 0.005 0.158 0.005 0.001 0.004 0.001 0.006 0.469 0.002 0.003 0.002 0.004 0.310 0.003 0.004 0.004
3 | 0.006 0.006 0.001 0.005 0.005 0.004 0.005 0.001 0.004 0.001 0.006 0.007 0.002 0.003 0.310 0.004 0.618 0.003 0.004 0.004
4 | 0.006 0.314 0.001 0.005 0.005 0.158 0.005 0.001 0.004 0.001 0.006 0.315 0.002 0.003 0.156 0.004 0.002 0.003 0.004 0.004
6 | 0.314 0.006 0.001 0.159 0.313 0.004 0.005 0.001 0.004 0.001 0.006 0.007 0.002 0.157 0.002 0.004 0.002 0.003 0.004 0.004
8 | 0.006 0.006 0.001 0.005 0.005 0.004 0.005 0.463 0.004 0.001 0.159 0.007 0.002 0.003 0.002 0.312 0.002 0.003 0.004 0.004
9 | 0.006 0.006 0.001 0.005 0.005 0.004 0.621 0.001 0.004 0.001 0.006 0.007 0.002 0.003 0.002 0.158 0.002 0.157 0.004 0.004
10 | 0.006 0.314 0.001 0.159 0.313 0.004 0.005 0.001 0.004 0.001 0.006 0.007 0.002 0.003 0.156 0.004 0.002 0.003 0.004 0.004
11 | 0.468 0.468 0.001 0.005 0.005 0.004 0.005 0.001 0.004 0.001 0.006 0.007 0.002 0.003 0.002 0.004 0.002 0.003 0.004 0.004
12 | 0.006 0.006 0.617 0.005 0.005 0.004 0.005 0.001 0.004 0.001 0.006 0.007 0.002 0.003 0.002 0.004 0.002 0.003 0.004 0.312
13 | 0.006 0.006 0.001 0.005 0.005 0.004 0.005 0.001 0.004 0.001 0.006 0.007 0.002 0.003 0.002 0.927 0.002 0.003 0.004 0.004
14 | 0.468 0.468 0.001 0.005 0.005 0.004 0.005 0.001 0.004 0.001 0.006 0.007 0.002 0.003 0.002 0.004 0.002 0.003 0.004 0.004
16 | 0.006 0.006 0.001 0.005 0.005 0.004 0.005 0.001 0.004 0.924 0.006 0.007 0.002 0.003 0.002 0.004 0.002 0.003 0.004 0.004
17 | 0.006 0.006 0.001 0.005 0.159 0.004 0.005 0.001 0.004 0.001 0.621 0.007 0.002 0.157 0.002 0.004 0.002 0.003 0.004 0.004
19 | 0.006 0.006 0.001 0.005 0.005 0.004 0.928 0.001 0.004 0.001 0.006 0.007 0.002 0.003 0.002 0.004 0.002 0.003 0.004 0.004
Background probability model
0.089 0.079 0.008 0.067 0.076 0.044 0.071 0.013 0.061 0.009 0.076 0.094 0.023 0.043 0.027 0.045 0.034 0.044 0.052 0.052
15 columns
Num Motifs: 6
2, 1 161 riles IQYVKENPGYACPVNWNFG dqvfy 179 1.00 F 11467494
47, 1 160 lrmvd ALQFHEEHGDVCPAQWEKG kegmn 178 1.00 F 16501671
67, 1 154 rkika AQYVAAHPGEVCPAKWKEG eatla 172 1.00 F 20151112
81, 1 166 lrvvi SLQLTAEKRVATPVDWKDG dsvmv 184 1.00 F 3318841
87, 1 163 lrvlk SLQLTNTHPVATPVNWKEG dkcci 181 1.00 F 4996210
95, 1 160 lrlvq AFQYTDEHGEVCPAGWKPG sdtik 178 1.00 F 9955016
**** * ******* ** *
Column 1 : Sequence Number, Site Number
Column 2 : Left End Location
Column 4 : Motif Element
Column 5 : Right End Location
Column 6 : Probability of Element
Column 7 : Forward Motif (F) or Reverse Complement (R)
Column 8 : Sequence Description from Fast A input
Log Motif portion of MAP for motif b = -187.76179
Log Fragmentation portion of MAP for motif b = -7.77486
=============================================================
====== ELEMENTS OCCURRING GREATER THAN 50% OF THE TIME =====
====== Motif b =====
=============================================================
Listing of those elements occurring greater than 50% of the time
in near optimal sampling using 500 iterations
Motif model (residue frequency x 100)
____________________________________________
Pos. # a v c d e f g h i w k l m n y p q r s t Info
_____________________________________________________________________________________________
1 | 50 . . . . . . . 16 . . . . . . . . . 33 . 1.9
2 | . . . . . 16 . . . . . 50 . . . . 33 . . . 2.1
3 | . . . . . . . . . . . . . . 33 . 66 . . . 3.4
4 | . 33 . . . 16 . . . . . 33 . . 16 . . . . . 1.7
6 | 33 . . 16 33 . . . . . . . . 16 . . . . . . 1.5
8 | . . . . . . . 50 . . 16 . . . . 33 . . . . 3.2
9 | . . . . . . 66 . . . . . . . . 16 . 16 . . 2.3
10 | . 33 . 16 33 . . . . . . . . . 16 . . . . . 1.7
11 | 50 50 . . . . . . . . . . . . . . . . . . 2.1
12 | . . 66 . . . . . . . . . . . . . . . . 33 4.4
13 | . . . . . . . . . . . . . . . 100 . . . . 3.8
14 | 50 50 . . . . . . . . . . . . . . . . . . 2.1
16 | . . . . . . . . . 100 . . . . . . . . . . 5.8
17 | . . . . 16 . . . . . 66 . . 16 . . . . . . 2.1
19 | . . . . . . 100 . . . . . . . . . . . . . 3.2
nonsite 8 7 . 6 7 4 7 1 6 . 7 9 2 4 2 4 3 4 5 5
site 12 11 4 2 5 2 11 3 1 6 5 5 . 2 4 10 6 1 2 2
Motif probability model
____________________________________________
Pos. # a v c d e f g h i w k l m n y p q r s t
____________________________________________
1 | 0.468 0.006 0.001 0.005 0.005 0.004 0.005 0.001 0.158 0.001 0.006 0.007 0.002 0.003 0.002 0.004 0.002 0.003 0.312 0.004
2 | 0.006 0.006 0.001 0.005 0.005 0.158 0.005 0.001 0.004 0.001 0.006 0.469 0.002 0.003 0.002 0.004 0.310 0.003 0.004 0.004
3 | 0.006 0.006 0.001 0.005 0.005 0.004 0.005 0.001 0.004 0.001 0.006 0.007 0.002 0.003 0.310 0.004 0.618 0.003 0.004 0.004
4 | 0.006 0.314 0.001 0.005 0.005 0.158 0.005 0.001 0.004 0.001 0.006 0.315 0.002 0.003 0.156 0.004 0.002 0.003 0.004 0.004
6 | 0.314 0.006 0.001 0.159 0.313 0.004 0.005 0.001 0.004 0.001 0.006 0.007 0.002 0.157 0.002 0.004 0.002 0.003 0.004 0.004
8 | 0.006 0.006 0.001 0.005 0.005 0.004 0.005 0.463 0.004 0.001 0.159 0.007 0.002 0.003 0.002 0.312 0.002 0.003 0.004 0.004
9 | 0.006 0.006 0.001 0.005 0.005 0.004 0.621 0.001 0.004 0.001 0.006 0.007 0.002 0.003 0.002 0.158 0.002 0.157 0.004 0.004
10 | 0.006 0.314 0.001 0.159 0.313 0.004 0.005 0.001 0.004 0.001 0.006 0.007 0.002 0.003 0.156 0.004 0.002 0.003 0.004 0.004
11 | 0.468 0.468 0.001 0.005 0.005 0.004 0.005 0.001 0.004 0.001 0.006 0.007 0.002 0.003 0.002 0.004 0.002 0.003 0.004 0.004
12 | 0.006 0.006 0.617 0.005 0.005 0.004 0.005 0.001 0.004 0.001 0.006 0.007 0.002 0.003 0.002 0.004 0.002 0.003 0.004 0.312
13 | 0.006 0.006 0.001 0.005 0.005 0.004 0.005 0.001 0.004 0.001 0.006 0.007 0.002 0.003 0.002 0.927 0.002 0.003 0.004 0.004
14 | 0.468 0.468 0.001 0.005 0.005 0.004 0.005 0.001 0.004 0.001 0.006 0.007 0.002 0.003 0.002 0.004 0.002 0.003 0.004 0.004
16 | 0.006 0.006 0.001 0.005 0.005 0.004 0.005 0.001 0.004 0.924 0.006 0.007 0.002 0.003 0.002 0.004 0.002 0.003 0.004 0.004
17 | 0.006 0.006 0.001 0.005 0.159 0.004 0.005 0.001 0.004 0.001 0.621 0.007 0.002 0.157 0.002 0.004 0.002 0.003 0.004 0.004
19 | 0.006 0.006 0.001 0.005 0.005 0.004 0.928 0.001 0.004 0.001 0.006 0.007 0.002 0.003 0.002 0.004 0.002 0.003 0.004 0.004
Background probability model
0.089 0.079 0.008 0.067 0.076 0.044 0.071 0.013 0.061 0.009 0.076 0.094 0.023 0.043 0.027 0.045 0.034 0.044 0.052 0.052
15 columns
Num Motifs: 6
2, 1 161 riles IQYVKENPGYACPVNWNFG dqvfy 179 1.00 F 11467494
47, 1 160 lrmvd ALQFHEEHGDVCPAQWEKG kegmn 178 1.00 F 16501671
67, 1 154 rkika AQYVAAHPGEVCPAKWKEG eatla 172 1.00 F 20151112
81, 1 166 lrvvi SLQLTAEKRVATPVDWKDG dsvmv 184 1.00 F 3318841
87, 1 163 lrvlk SLQLTNTHPVATPVNWKEG dkcci 181 1.00 F 4996210
95, 1 160 lrlvq AFQYTDEHGEVCPAGWKPG sdtik 178 1.00 F 9955016
**** * ******* ** *
-------------------------------------------------------------------------
MOTIF c
Motif model (residue frequency x 100)
____________________________________________
Pos. # a v c d e f g h i w k l m n y p q r s t Info
_____________________________________________________________________________________________
1 | . . . 5 3 . 5 . . . 53 3 . . . 3 11 7 1 3 1.6
3 | . 61 . . . . . . 22 . . 7 3 . . . . . 1 3 2.1
4 | . 38 . . . 3 3 . 11 . . 40 1 . . . . . . . 1.7
5 | 5 35 . . . . . . 24 . 1 31 1 . . . . . . . 1.7
6 | . . . 48 . . . 1 . . . . . 37 11 . 1 . . . 2.7
7 | 1 7 . . . 85 . . . . . 3 . . 1 . . . . . 3.4
8 | . . . . . 5 3 1 . 55 . . . . 18 . . . 9 5 3.5
9 | 87 . . . . 1 5 . . . . . . . . . . . 3 1 2.8
10 | 3 . . 14 9 . . 1 . . . . . 1 . 16 5 . 20 25 1.5
11 | . . . . . . 1 . . 90 . 1 . . 1 . . . 1 1 5.2
12 | . . 100 . . . . . . . . . . . . . . . . . 6.0
13 | 9 7 . . 1 . 53 . . . 1 . 1 . . 24 . . . . 2.0
14 | . 7 . 1 . . 1 . . . . 1 . . 1 83 . . 1 . 3.2
15 | . . 100 . . . . . . . . . . . . . . . . . 6.0
16 | . 5 . 1 1 . . 3 1 . 27 1 . . . . 9 46 . . 2.1
18 | . 3 . . 37 12 . . 18 . . 16 3 . . . 3 . . 3 1.4
20 | . . . 1 . . . . . . 3 . . . . 94 . . . . 3.9
22 | . 7 . . . 22 . . 9 . . 44 11 . 5 . . . . . 1.8
24 | 7 . . 3 37 . . 3 . . 27 1 . 1 . . 11 1 1 1 1.4
25 | 3 18 . 1 . 9 . . 7 . . 51 1 . . . . . 1 3 1.4
nonsite 8 7 1 6 7 4 6 1 5 1 7 9 2 4 2 4 3 4 4 4
site 5 9 10 3 4 7 3 . 4 7 5 10 1 2 2 11 2 2 2 2
Motif probability model
____________________________________________
Pos. # a v c d e f g h i w k l m n y p q r s t
____________________________________________
1 | 0.001 0.001 0.000 0.056 0.037 0.000 0.056 0.000 0.001 0.000 0.533 0.038 0.000 0.000 0.000 0.037 0.110 0.074 0.019 0.037
3 | 0.001 0.606 0.000 0.001 0.001 0.000 0.001 0.000 0.221 0.000 0.001 0.074 0.037 0.000 0.000 0.000 0.000 0.000 0.019 0.037
4 | 0.001 0.386 0.000 0.001 0.001 0.037 0.037 0.000 0.111 0.000 0.001 0.405 0.019 0.000 0.000 0.000 0.000 0.000 0.000 0.000
5 | 0.056 0.349 0.000 0.001 0.001 0.000 0.001 0.000 0.239 0.000 0.019 0.313 0.019 0.000 0.000 0.000 0.000 0.000 0.000 0.000
6 | 0.001 0.001 0.000 0.478 0.001 0.000 0.001 0.018 0.001 0.000 0.001 0.001 0.000 0.367 0.110 0.000 0.019 0.000 0.000 0.000
7 | 0.019 0.074 0.000 0.001 0.001 0.845 0.001 0.000 0.001 0.000 0.001 0.038 0.000 0.000 0.019 0.000 0.000 0.000 0.000 0.000
8 | 0.001 0.001 0.000 0.001 0.001 0.056 0.037 0.018 0.001 0.551 0.001 0.001 0.000 0.000 0.184 0.000 0.000 0.000 0.092 0.056
9 | 0.863 0.001 0.000 0.001 0.001 0.019 0.056 0.000 0.001 0.000 0.001 0.001 0.000 0.000 0.000 0.000 0.000 0.000 0.037 0.019
10 | 0.037 0.001 0.000 0.147 0.092 0.000 0.001 0.018 0.001 0.000 0.001 0.001 0.000 0.019 0.000 0.166 0.055 0.000 0.202 0.257
11 | 0.001 0.001 0.000 0.001 0.001 0.000 0.019 0.000 0.001 0.899 0.001 0.019 0.000 0.000 0.019 0.000 0.000 0.000 0.019 0.019
12 | 0.001 0.001 0.991 0.001 0.001 0.000 0.001 0.000 0.001 0.000 0.001 0.001 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
13 | 0.093 0.074 0.000 0.001 0.019 0.000 0.533 0.000 0.001 0.000 0.019 0.001 0.019 0.000 0.000 0.239 0.000 0.000 0.000 0.000
14 | 0.001 0.074 0.000 0.019 0.001 0.000 0.019 0.000 0.001 0.000 0.001 0.019 0.000 0.000 0.019 0.826 0.000 0.000 0.019 0.000
15 | 0.001 0.001 0.991 0.001 0.001 0.000 0.001 0.000 0.001 0.000 0.001 0.001 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
16 | 0.001 0.056 0.000 0.019 0.019 0.000 0.001 0.037 0.019 0.000 0.276 0.019 0.000 0.000 0.000 0.000 0.092 0.459 0.000 0.000
18 | 0.001 0.037 0.000 0.001 0.368 0.129 0.001 0.000 0.184 0.000 0.001 0.166 0.037 0.000 0.000 0.000 0.037 0.000 0.000 0.037
20 | 0.001 0.001 0.000 0.019 0.001 0.000 0.001 0.000 0.001 0.000 0.037 0.001 0.000 0.000 0.000 0.936 0.000 0.000 0.000 0.000
22 | 0.001 0.074 0.000 0.001 0.001 0.221 0.001 0.000 0.092 0.000 0.001 0.441 0.110 0.000 0.055 0.000 0.000 0.000 0.000 0.000
24 | 0.074 0.001 0.000 0.037 0.368 0.000 0.001 0.037 0.001 0.000 0.276 0.019 0.000 0.019 0.000 0.000 0.110 0.019 0.019 0.019
25 | 0.037 0.184 0.000 0.019 0.001 0.092 0.001 0.000 0.074 0.000 0.001 0.515 0.019 0.000 0.000 0.000 0.000 0.000 0.019 0.037
Background probability model
0.089 0.079 0.008 0.067 0.076 0.044 0.071 0.013 0.061 0.009 0.076 0.094 0.023 0.043 0.027 0.045 0.034 0.044 0.052 0.052
20 columns
Num Motifs: 54
3, 1 17 viqsd KLVVVDFYADWCMPCRYISPILEKL skeyn 41 1.00 F 11499727
4, 1 22 llntt QYVVADFYADWCGPCKAIAPMYAQF aktfs 46 1.00 F 1174686
5, 1 19 ifsak KNVIVDFWAAWCGPCKLTSPEFQKA adefs 43 1.00 F 12044976
7, 1 21 kenhs KPILIDFYADWCPPCRMLIPVLDSI ekkhg 45 1.00 F 13358154
10, 1 17 aetse GVVLADFWAPWCGPCKMIAPVLEEL dqemg 41 1.00 F 135765
11, 1 29 akesn KLIVIDFTASWCPPCRMIAPIFNDL akkfm 53 1.00 F 1388082
12, 1 44 likqn DKLVIDFYATWCGPCKMMQPHLTKL iqayp 68 1.00 F 140543
14, 1 80 selrg KVVMLQFTASWCGVCRKEMPFIEKD iwlkh 104 1.00 F 14578634
16, 1 23 lqnsd KPVLVDFYATWCGPCQLMVPILNEV setlk 47 1.00 F 15218394
17, 1 157 adfrg RPLVINLWASWCPPCRREMPVLQQA qaenp 181 1.00 F 15597673
18, 1 26 ensfh KPVLVDFWADWCAPCKALMPLLAQI aesyq 50 1.00 F 15599256
19, 1 67 negkg KTILLNFWSETCGVCIAELKTFEQL lqsyp 91 1.00 F 15602312
20, 1 61 eefkg KVLLINFWATWCPPCKEEIPMFKEI yekyr 85 1.00 F 15605725
25, 1 60 sdyrg DVVILNVWASWCEPCRKEMPALMEL qsdye 84 1.00 F 15614085
26, 1 63 releg KGVFLNFWGTYCPPCEREMPHMEKL ygeyk 87 1.00 F 15614140
27, 1 72 sslrg QPVILHFFATWCPVCQDEMPSLVKL dkeyr 96 1.00 F 15615431
31, 1 2 m TVTLKDFYADWCGPCKTQDPILEEL eadyd 26 1.00 F 15791337
33, 1 72 adyrg RPVVLNFWASWCGPCREEAPLFAKL aahpg 96 1.00 F 15805225
34, 1 78 taaqg KPVVINFWASWCVPCRQEAPLFSKL sqeta 102 1.00 F 15805374
37, 1 49 fitkn KIVVVDFWAEWCAPCLILAPVIEEL andyp 73 1.00 F 15899007
40, 1 61 easrq QPVLVDFWAPWCGPCKQLTPVIEKV vreaa 85 1.00 F 15966937
41, 1 61 sdfrg KTLLVNLWATWCVPCRKEMPALDEL qgkls 85 1.00 F 15988313
42, 1 60 qdakg KKVLLNFWATWCKPCRQEMPAMEKL qkeya 84 1.00 F 16078864
43, 1 53 llqdd LPMVIDFWAPWCGPCRSFAPIFAET aaera 77 1.00 F 16123427
46, 1 21 vlkad GAILVDFWAEWCGPCKMIAPILDEI adeyq 45 1.00 F 1633495
48, 1 34 vlqcp KPILVYFGAPWCGLCHFVKPLLNHL hgewq 58 1.00 F 1651717
49, 1 60 tlsee RPVLLYFWASWCGVCRFTTPAVAHL aaege 84 1.00 F 16759994
50, 1 53 llkdd LPVVIDFWAPWCGPCRNFAPIFEDV aeers 77 1.00 F 16761507
52, 1 19 iissh PKILLNFWAEWCAPCRCFWPTLEQF aemee 43 1.00 F 16804867
54, 1 22 vlsed KVVVVDFTATWCGPCRLVSPLMDQL adeyk 46 1.00 F 17229859
55, 1 18 vlegt GYVLVDYFSDGCVPCKALMPAVEEL skkye 42 1.00 F 1729944
56, 1 28 rqhpe KIIILDFYATWCGPCKAIAPLYKEL atthk 52 1.00 F 17531233
57, 1 27 ehlkg KIIGLYFSASWCPPCRAFTPKLKEF feeik 51 1.00 F 17537401
58, 1 63 safrg QPVVINFWAPWCGPCVEEMPELSAL aqeqk 87 1.00 F 17547503
59, 1 286 seykg KTIFLNFWATWCPPCRGEMPYIDEL ykeyn 310 1.00 F 18309723
61, 1 44 dsllg KKIGLYFSAAWCGPCQRFTPQLVEV ynels 68 1.00 F 18406743
61, 2 364 sdlvg KTILMYFSAHWCPPCRAFTPKLVEV ykqik 388 1.00 F 18406743
63, 1 15 sdfeg EVVVLNAWGQWCAPCRAEVDDLQLV qetld 39 1.00 F 19554157
64, 1 39 eeykg KVVVINFWATWCGYCVEEMPGFEKV ykefg 63 1.00 F 19705357
66, 1 7 agdfm KPMLLDFSATWCGPCRMQKPILEEL ekkyg 31 1.00 F 20092028
69, 1 103 adykg KVVVLNVWGSWCPPCRAEAKNFEKV yqdvk 127 1.00 F 21222859
74, 1 53 sdfkg ERVLINFWTTWCPPCRQEMPDMQRF yqdlq 77 1.00 F 23098307
76, 1 20 kylqh QRVVVDFSAEWCGPCRAIAPVFDKL sneft 44 1.00 F 267116
77, 1 81 aafkg KVSLVNVWASWCVPCHDEAPLLTEL gkdkr 105 1.00 F 27375582
78, 1 34 vtsdn DVVLADFYADWCGPCQMLEPVVETL aeqtd 58 1.00 F 2822332
79, 1 77 sdlkg KKVILNFWATWCGPCQQEMPDMEAF ykehk 101 1.00 F 30021713
80, 1 19 tisan SNVLVYFWAPLCAPCDLFTPTYEAS srkhf 43 1.00 F 3261501
82, 1 19 tietn PLVIVDFWAPWCGSCKMLGPVLEEV esevg 43 1.00 F 3323237
83, 1 17 ektah QAVVVNVGASWCPDCRKIEPIMENL aktyk 41 1.00 F 4155972
84, 1 79 vvnse TPVVVDFHAQWCGPCKILGPRLEKM vakqh 103 1.00 F 4200327
91, 1 20 nenkg RLIVVDFFAQWCGPCRNIAPKVEAL akeip 44 1.00 F 6687568
93, 1 18 llttn KKVVVDFYANWCGPCKILGPIFEEV aqdkk 42 1.00 F 7109697
94, 1 21 ilaed KLVVIDFYADWCGPCKIIAPKLDEL aqqys 45 1.00 F 7290567
96, 1 49 adlqg KVTLINFWFPSCPGCVSEMPKIIKT andyk 73 1.00 F 15677788
* ************** * * * **
Column 1 : Sequence Number, Site Number
Column 2 : Left End Location
Column 4 : Motif Element
Column 5 : Right End Location
Column 6 : Probability of Element
Column 7 : Forward Motif (F) or Reverse Complement (R)
Column 8 : Sequence Description from Fast A input
Log Motif portion of MAP for motif c = -1607.59351
Log Fragmentation portion of MAP for motif c = -10.42374
=============================================================
====== ELEMENTS OCCURRING GREATER THAN 50% OF THE TIME =====
====== Motif c =====
=============================================================
Listing of those elements occurring greater than 50% of the time
in near optimal sampling using 500 iterations
Motif model (residue frequency x 100)
____________________________________________
Pos. # a v c d e f g h i w k l m n y p q r s t Info
_____________________________________________________________________________________________
1 | . . . 5 3 . 5 . . . 53 3 . . . 3 11 7 1 3 1.6
3 | . 61 . . . . . . 22 . . 7 3 . . . . . 1 3 2.1
4 | . 38 . . . 3 3 . 11 . . 40 1 . . . . . . . 1.7
5 | 5 35 . . . . . . 24 . 1 31 1 . . . . . . . 1.7
6 | . . . 48 . . . 1 . . . . . 37 11 . 1 . . . 2.7
7 | 1 7 . . . 85 . . . . . 3 . . 1 . . . . . 3.4
8 | . . . . . 5 3 1 . 55 . . . . 18 . . . 9 5 3.5
9 | 87 . . . . 1 5 . . . . . . . . . . . 3 1 2.8
10 | 3 . . 14 9 . . 1 . . . . . 1 . 16 5 . 20 25 1.5
11 | . . . . . . 1 . . 90 . 1 . . 1 . . . 1 1 5.2
12 | . . 100 . . . . . . . . . . . . . . . . . 6.0
13 | 9 7 . . 1 . 53 . . . 1 . 1 . . 24 . . . . 2.0
14 | . 7 . 1 . . 1 . . . . 1 . . 1 83 . . 1 . 3.2
15 | . . 100 . . . . . . . . . . . . . . . . . 6.0
16 | . 5 . 1 1 . . 3 1 . 27 1 . . . . 9 46 . . 2.1
18 | . 3 . . 37 12 . . 18 . . 16 3 . . . 3 . . 3 1.4
20 | . . . 1 . . . . . . 3 . . . . 94 . . . . 3.9
22 | . 7 . . . 22 . . 9 . . 44 11 . 5 . . . . . 1.8
24 | 7 . . 3 37 . . 3 . . 27 1 . 1 . . 11 1 1 1 1.4
25 | 3 18 . 1 . 9 . . 7 . . 51 1 . . . . . 1 3 1.4
nonsite 8 7 1 6 7 4 6 1 5 1 7 9 2 4 2 4 3 4 4 4
site 5 9 10 3 4 7 3 . 4 7 5 10 1 2 2 11 2 2 2 2
Motif probability model
____________________________________________
Pos. # a v c d e f g h i w k l m n y p q r s t
____________________________________________
1 | 0.001 0.001 0.000 0.056 0.037 0.000 0.056 0.000 0.001 0.000 0.533 0.038 0.000 0.000 0.000 0.037 0.110 0.074 0.019 0.037
3 | 0.001 0.606 0.000 0.001 0.001 0.000 0.001 0.000 0.221 0.000 0.001 0.074 0.037 0.000 0.000 0.000 0.000 0.000 0.019 0.037
4 | 0.001 0.386 0.000 0.001 0.001 0.037 0.037 0.000 0.111 0.000 0.001 0.405 0.019 0.000 0.000 0.000 0.000 0.000 0.000 0.000
5 | 0.056 0.349 0.000 0.001 0.001 0.000 0.001 0.000 0.239 0.000 0.019 0.313 0.019 0.000 0.000 0.000 0.000 0.000 0.000 0.000
6 | 0.001 0.001 0.000 0.478 0.001 0.000 0.001 0.018 0.001 0.000 0.001 0.001 0.000 0.367 0.110 0.000 0.019 0.000 0.000 0.000
7 | 0.019 0.074 0.000 0.001 0.001 0.845 0.001 0.000 0.001 0.000 0.001 0.038 0.000 0.000 0.019 0.000 0.000 0.000 0.000 0.000
8 | 0.001 0.001 0.000 0.001 0.001 0.056 0.037 0.018 0.001 0.551 0.001 0.001 0.000 0.000 0.184 0.000 0.000 0.000 0.092 0.056
9 | 0.863 0.001 0.000 0.001 0.001 0.019 0.056 0.000 0.001 0.000 0.001 0.001 0.000 0.000 0.000 0.000 0.000 0.000 0.037 0.019
10 | 0.037 0.001 0.000 0.147 0.092 0.000 0.001 0.018 0.001 0.000 0.001 0.001 0.000 0.019 0.000 0.166 0.055 0.000 0.202 0.257
11 | 0.001 0.001 0.000 0.001 0.001 0.000 0.019 0.000 0.001 0.899 0.001 0.019 0.000 0.000 0.019 0.000 0.000 0.000 0.019 0.019
12 | 0.001 0.001 0.991 0.001 0.001 0.000 0.001 0.000 0.001 0.000 0.001 0.001 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
13 | 0.093 0.074 0.000 0.001 0.019 0.000 0.533 0.000 0.001 0.000 0.019 0.001 0.019 0.000 0.000 0.239 0.000 0.000 0.000 0.000
14 | 0.001 0.074 0.000 0.019 0.001 0.000 0.019 0.000 0.001 0.000 0.001 0.019 0.000 0.000 0.019 0.826 0.000 0.000 0.019 0.000
15 | 0.001 0.001 0.991 0.001 0.001 0.000 0.001 0.000 0.001 0.000 0.001 0.001 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
16 | 0.001 0.056 0.000 0.019 0.019 0.000 0.001 0.037 0.019 0.000 0.276 0.019 0.000 0.000 0.000 0.000 0.092 0.459 0.000 0.000
18 | 0.001 0.037 0.000 0.001 0.368 0.129 0.001 0.000 0.184 0.000 0.001 0.166 0.037 0.000 0.000 0.000 0.037 0.000 0.000 0.037
20 | 0.001 0.001 0.000 0.019 0.001 0.000 0.001 0.000 0.001 0.000 0.037 0.001 0.000 0.000 0.000 0.936 0.000 0.000 0.000 0.000
22 | 0.001 0.074 0.000 0.001 0.001 0.221 0.001 0.000 0.092 0.000 0.001 0.441 0.110 0.000 0.055 0.000 0.000 0.000 0.000 0.000
24 | 0.074 0.001 0.000 0.037 0.368 0.000 0.001 0.037 0.001 0.000 0.276 0.019 0.000 0.019 0.000 0.000 0.110 0.019 0.019 0.019
25 | 0.037 0.184 0.000 0.019 0.001 0.092 0.001 0.000 0.074 0.000 0.001 0.515 0.019 0.000 0.000 0.000 0.000 0.000 0.019 0.037
Background probability model
0.089 0.079 0.008 0.067 0.076 0.044 0.071 0.013 0.061 0.009 0.076 0.094 0.023 0.043 0.027 0.045 0.034 0.044 0.052 0.052
20 columns
Num Motifs: 54
3, 1 17 viqsd KLVVVDFYADWCMPCRYISPILEKL skeyn 41 1.00 F 11499727
4, 1 22 llntt QYVVADFYADWCGPCKAIAPMYAQF aktfs 46 1.00 F 1174686
5, 1 19 ifsak KNVIVDFWAAWCGPCKLTSPEFQKA adefs 43 1.00 F 12044976
7, 1 21 kenhs KPILIDFYADWCPPCRMLIPVLDSI ekkhg 45 1.00 F 13358154
10, 1 17 aetse GVVLADFWAPWCGPCKMIAPVLEEL dqemg 41 1.00 F 135765
11, 1 29 akesn KLIVIDFTASWCPPCRMIAPIFNDL akkfm 53 1.00 F 1388082
12, 1 44 likqn DKLVIDFYATWCGPCKMMQPHLTKL iqayp 68 1.00 F 140543
14, 1 80 selrg KVVMLQFTASWCGVCRKEMPFIEKD iwlkh 104 1.00 F 14578634
16, 1 23 lqnsd KPVLVDFYATWCGPCQLMVPILNEV setlk 47 1.00 F 15218394
17, 1 157 adfrg RPLVINLWASWCPPCRREMPVLQQA qaenp 181 1.00 F 15597673
18, 1 26 ensfh KPVLVDFWADWCAPCKALMPLLAQI aesyq 50 1.00 F 15599256
19, 1 67 negkg KTILLNFWSETCGVCIAELKTFEQL lqsyp 91 1.00 F 15602312
20, 1 61 eefkg KVLLINFWATWCPPCKEEIPMFKEI yekyr 85 1.00 F 15605725
25, 1 60 sdyrg DVVILNVWASWCEPCRKEMPALMEL qsdye 84 1.00 F 15614085
26, 1 63 releg KGVFLNFWGTYCPPCEREMPHMEKL ygeyk 87 1.00 F 15614140
27, 1 72 sslrg QPVILHFFATWCPVCQDEMPSLVKL dkeyr 96 1.00 F 15615431
31, 1 2 m TVTLKDFYADWCGPCKTQDPILEEL eadyd 26 1.00 F 15791337
33, 1 72 adyrg RPVVLNFWASWCGPCREEAPLFAKL aahpg 96 1.00 F 15805225
34, 1 78 taaqg KPVVINFWASWCVPCRQEAPLFSKL sqeta 102 1.00 F 15805374
37, 1 49 fitkn KIVVVDFWAEWCAPCLILAPVIEEL andyp 73 1.00 F 15899007
40, 1 61 easrq QPVLVDFWAPWCGPCKQLTPVIEKV vreaa 85 1.00 F 15966937
41, 1 61 sdfrg KTLLVNLWATWCVPCRKEMPALDEL qgkls 85 1.00 F 15988313
42, 1 60 qdakg KKVLLNFWATWCKPCRQEMPAMEKL qkeya 84 1.00 F 16078864
43, 1 53 llqdd LPMVIDFWAPWCGPCRSFAPIFAET aaera 77 1.00 F 16123427
46, 1 21 vlkad GAILVDFWAEWCGPCKMIAPILDEI adeyq 45 1.00 F 1633495
48, 1 34 vlqcp KPILVYFGAPWCGLCHFVKPLLNHL hgewq 58 1.00 F 1651717
49, 1 60 tlsee RPVLLYFWASWCGVCRFTTPAVAHL aaege 84 1.00 F 16759994
50, 1 53 llkdd LPVVIDFWAPWCGPCRNFAPIFEDV aeers 77 1.00 F 16761507
52, 1 19 iissh PKILLNFWAEWCAPCRCFWPTLEQF aemee 43 1.00 F 16804867
54, 1 22 vlsed KVVVVDFTATWCGPCRLVSPLMDQL adeyk 46 1.00 F 17229859
55, 1 18 vlegt GYVLVDYFSDGCVPCKALMPAVEEL skkye 42 1.00 F 1729944
56, 1 28 rqhpe KIIILDFYATWCGPCKAIAPLYKEL atthk 52 1.00 F 17531233
57, 1 27 ehlkg KIIGLYFSASWCPPCRAFTPKLKEF feeik 51 1.00 F 17537401
58, 1 63 safrg QPVVINFWAPWCGPCVEEMPELSAL aqeqk 87 1.00 F 17547503
59, 1 286 seykg KTIFLNFWATWCPPCRGEMPYIDEL ykeyn 310 1.00 F 18309723
61, 1 44 dsllg KKIGLYFSAAWCGPCQRFTPQLVEV ynels 68 1.00 F 18406743
61, 2 364 sdlvg KTILMYFSAHWCPPCRAFTPKLVEV ykqik 388 1.00 F 18406743
63, 1 15 sdfeg EVVVLNAWGQWCAPCRAEVDDLQLV qetld 39 1.00 F 19554157
64, 1 39 eeykg KVVVINFWATWCGYCVEEMPGFEKV ykefg 63 1.00 F 19705357
66, 1 7 agdfm KPMLLDFSATWCGPCRMQKPILEEL ekkyg 31 1.00 F 20092028
69, 1 103 adykg KVVVLNVWGSWCPPCRAEAKNFEKV yqdvk 127 1.00 F 21222859
74, 1 53 sdfkg ERVLINFWTTWCPPCRQEMPDMQRF yqdlq 77 1.00 F 23098307
76, 1 20 kylqh QRVVVDFSAEWCGPCRAIAPVFDKL sneft 44 1.00 F 267116
77, 1 81 aafkg KVSLVNVWASWCVPCHDEAPLLTEL gkdkr 105 1.00 F 27375582
78, 1 34 vtsdn DVVLADFYADWCGPCQMLEPVVETL aeqtd 58 1.00 F 2822332
79, 1 77 sdlkg KKVILNFWATWCGPCQQEMPDMEAF ykehk 101 1.00 F 30021713
80, 1 19 tisan SNVLVYFWAPLCAPCDLFTPTYEAS srkhf 43 1.00 F 3261501
82, 1 19 tietn PLVIVDFWAPWCGSCKMLGPVLEEV esevg 43 1.00 F 3323237
83, 1 17 ektah QAVVVNVGASWCPDCRKIEPIMENL aktyk 41 1.00 F 4155972
84, 1 79 vvnse TPVVVDFHAQWCGPCKILGPRLEKM vakqh 103 1.00 F 4200327
91, 1 20 nenkg RLIVVDFFAQWCGPCRNIAPKVEAL akeip 44 1.00 F 6687568
93, 1 18 llttn KKVVVDFYANWCGPCKILGPIFEEV aqdkk 42 1.00 F 7109697
94, 1 21 ilaed KLVVIDFYADWCGPCKIIAPKLDEL aqqys 45 1.00 F 7290567
96, 1 49 adlqg KVTLINFWFPSCPGCVSEMPKIIKT andyk 73 1.00 F 15677788
* ************** * * * **
-------------------------------------------------------------------------
MOTIF d
Motif model (residue frequency x 100)
____________________________________________
Pos. # a v c d e f g h i w k l m n y p q r s t Info
_____________________________________________________________________________________________
1 | 2 . . 28 17 2 . 2 8 . . 17 . . 11 . . . 2 5 1.1
2 | 5 2 . . 5 34 . . . . 2 14 . . 17 . . 8 2 5 1.4
3 | 8 . . 5 11 . 14 . 2 . 28 . . 5 2 . . 17 . 2 1.0
4 | 2 . . 11 . . 62 . . . 5 . . 11 . . 2 . 2 . 2.1
5 | . . . . . . 2 . . . 57 . . 5 . . 5 22 5 . 2.2
7 | 2 68 . . . 2 5 . 2 . 2 . . 2 . . . . 2 8 1.9
8 | 2 62 . . . . . . 25 . . 8 . . . . . . . . 2.3
9 | . 8 . . . 8 . . 5 . . 77 . . . . . . . . 2.3
10 | 8 8 . . . 57 . . 2 . . 5 . . 11 . . . 2 2 2.1
11 | 14 2 . . . 62 8 . . . . . . . . . . . 11 . 2.4
12 | 2 11 . . . 14 . 11 2 5 . 5 . . 45 . . . . . 2.4
13 | . . . . . . . . . . . . . . . 100 . . . . 4.3
14 | 22 . . . . 2 28 2 . . 8 17 5 . 2 . . 8 . . 1.2
15 | 51 . . 42 . . . . . . . . . 2 . . . . 2 . 2.3
16 | . . . 2 . 71 2 . . 5 . . 5 . 5 . . . 5 . 2.9
17 | . . . . . . . . . . . . . . . . . . 11 88 3.6
18 | 5 . . . . 25 2 . . . . . . . . 51 2 . 11 . 2.4
19 | . 54 . . . . 20 . 8 . . . . . . . . . . 17 2.0
20 | . . 97 . . . . . . . . . . . . . . . 2 . 6.2
21 | 5 . . . . . . . . . . . . . . 28 2 . 20 42 2.3
22 | 14 2 . . . . 2 . . . 14 5 5 . . . 2 8 5 37 1.3
23 | . . . . 62 . . . . . 2 . . 8 . . 14 . 5 5 2.2
24 | 14 2 . . . 2 2 22 11 . . 31 11 . . . . . . . 1.8
27 | 2 2 . . 2 45 17 . 8 . . 8 . . 8 2 . . . . 1.6
28 | 11 . . 2 2 8 5 . . . . . . 2 14 . 5 22 22 . 1.4
nonsite 8 7 . 6 7 4 7 1 5 . 7 9 2 4 2 4 3 4 5 5
site 7 9 3 3 4 13 7 1 3 . 4 7 1 1 4 7 1 3 4 8
Motif probability model
____________________________________________
Pos. # a v c d e f g h i w k l m n y p q r s t
____________________________________________
1 | 0.029 0.001 0.000 0.283 0.170 0.029 0.001 0.028 0.085 0.000 0.001 0.170 0.000 0.001 0.113 0.001 0.000 0.001 0.029 0.057
2 | 0.058 0.029 0.000 0.001 0.057 0.339 0.001 0.000 0.001 0.000 0.029 0.142 0.000 0.001 0.169 0.001 0.000 0.085 0.029 0.057
3 | 0.086 0.001 0.000 0.057 0.114 0.001 0.142 0.000 0.029 0.000 0.283 0.001 0.000 0.057 0.029 0.001 0.000 0.170 0.001 0.029
4 | 0.029 0.001 0.000 0.114 0.001 0.001 0.621 0.000 0.001 0.000 0.057 0.001 0.000 0.113 0.000 0.001 0.029 0.001 0.029 0.001
5 | 0.001 0.001 0.000 0.001 0.001 0.001 0.029 0.000 0.001 0.000 0.564 0.001 0.000 0.057 0.000 0.001 0.057 0.226 0.057 0.001
7 | 0.029 0.677 0.000 0.001 0.001 0.029 0.057 0.000 0.029 0.000 0.029 0.001 0.000 0.029 0.000 0.001 0.000 0.001 0.029 0.085
8 | 0.029 0.621 0.000 0.001 0.001 0.001 0.001 0.000 0.254 0.000 0.001 0.086 0.000 0.001 0.000 0.001 0.000 0.001 0.001 0.001
9 | 0.001 0.086 0.000 0.001 0.001 0.085 0.001 0.000 0.057 0.000 0.001 0.762 0.000 0.001 0.000 0.001 0.000 0.001 0.001 0.001
10 | 0.086 0.086 0.000 0.001 0.001 0.564 0.001 0.000 0.029 0.000 0.001 0.058 0.000 0.001 0.113 0.001 0.000 0.001 0.029 0.029
11 | 0.142 0.029 0.000 0.001 0.001 0.620 0.085 0.000 0.001 0.000 0.001 0.001 0.000 0.001 0.000 0.001 0.000 0.001 0.113 0.001
12 | 0.029 0.114 0.000 0.001 0.001 0.142 0.001 0.113 0.029 0.057 0.001 0.058 0.000 0.001 0.451 0.001 0.000 0.001 0.001 0.001
13 | 0.001 0.001 0.000 0.001 0.001 0.001 0.001 0.000 0.001 0.000 0.001 0.001 0.000 0.001 0.000 0.987 0.000 0.001 0.001 0.001
14 | 0.227 0.001 0.000 0.001 0.001 0.029 0.283 0.028 0.001 0.000 0.086 0.170 0.057 0.001 0.029 0.001 0.000 0.085 0.001 0.001
15 | 0.508 0.001 0.000 0.423 0.001 0.001 0.001 0.000 0.001 0.000 0.001 0.001 0.000 0.029 0.000 0.001 0.000 0.001 0.029 0.001
16 | 0.001 0.001 0.000 0.029 0.001 0.705 0.029 0.000 0.001 0.057 0.001 0.001 0.057 0.001 0.057 0.001 0.000 0.001 0.057 0.001
17 | 0.001 0.001 0.000 0.001 0.001 0.001 0.001 0.000 0.001 0.000 0.001 0.001 0.000 0.001 0.000 0.001 0.000 0.001 0.113 0.874
18 | 0.058 0.001 0.000 0.001 0.001 0.254 0.029 0.000 0.001 0.000 0.001 0.001 0.000 0.001 0.000 0.508 0.029 0.001 0.113 0.001
19 | 0.001 0.536 0.000 0.001 0.001 0.001 0.198 0.000 0.085 0.000 0.001 0.001 0.000 0.001 0.000 0.001 0.000 0.001 0.001 0.170
20 | 0.001 0.001 0.958 0.001 0.001 0.001 0.001 0.000 0.001 0.000 0.001 0.001 0.000 0.001 0.000 0.001 0.000 0.001 0.029 0.001
21 | 0.058 0.001 0.000 0.001 0.001 0.001 0.001 0.000 0.001 0.000 0.001 0.001 0.000 0.001 0.000 0.282 0.029 0.001 0.198 0.423
22 | 0.142 0.029 0.000 0.001 0.001 0.001 0.029 0.000 0.001 0.000 0.142 0.058 0.057 0.001 0.000 0.001 0.029 0.085 0.057 0.367
23 | 0.001 0.001 0.000 0.001 0.621 0.001 0.001 0.000 0.001 0.000 0.029 0.001 0.000 0.085 0.000 0.001 0.141 0.001 0.057 0.057
24 | 0.142 0.029 0.000 0.001 0.001 0.029 0.029 0.226 0.113 0.000 0.001 0.311 0.113 0.001 0.000 0.001 0.000 0.001 0.001 0.001
27 | 0.029 0.029 0.000 0.001 0.029 0.451 0.170 0.000 0.085 0.000 0.001 0.086 0.000 0.001 0.085 0.029 0.000 0.001 0.001 0.001
28 | 0.114 0.001 0.000 0.029 0.029 0.085 0.057 0.000 0.001 0.000 0.001 0.001 0.000 0.029 0.141 0.001 0.057 0.226 0.226 0.001
Background probability model
0.089 0.079 0.008 0.067 0.076 0.044 0.071 0.013 0.061 0.009 0.076 0.094 0.023 0.043 0.027 0.045 0.034 0.044 0.052 0.052
25 columns
Num Motifs: 35
1, 1 37 ldfdk EFRDKTVVIVAIPGAFTPTCTANHIPPF vekft 64 1.00 F 1091044
2, 1 32 irlsd YRGKKYVILFFYPANFTAISPTELMLLS drise 59 1.00 F 11467494
6, 1 26 eikei DLKSNWNVFFFYPYSYSFICPLELKNIS nkike 53 1.00 F 13186328
8, 1 28 kirls SYRGKWVVLFFYPADFTFVCPTEVEGFA edyek 55 1.00 F 13541053
9, 1 26 mrkls EFRGQNVVLAFFPGAFTSVCTKEMCTFR dsman 53 1.00 F 13541117
13, 1 25 melpd EFEGKWFILFSHPADFTPVCTTEFVAFQ evype 52 1.00 F 14286173
15, 1 25 kirls DFRGRIVVLYFYPRAMTPGCTREGVRFN ellde 52 1.00 F 14600438
22, 1 26 vtlrg YRGAKNVLLVFFPLAFTGICQGELDQLR dhlpe 53 1.00 F 15609375
23, 1 30 nvsla DYRGRRVIVYFYPAASTPGCTKQACDFR dnlgd 57 1.00 F 15609658
24, 1 24 tvsls DFKGKNIVLYFYPKDMTPGCTTEACDFR drved 51 1.00 F 15613511
28, 1 20 tfthv DLYGKYTILFFFPKAGTSGCTREAVEFS renfe 47 1.00 F 15643152
30, 1 61 gltda LADNRAVVLFFYPFDFSPVCATELCAIQ narwf 88 1.00 F 15790738
35, 1 26 itlss YRGQSHVVLVFYPLDFSPVCSMQLPEYS gsqdd 53 1.00 F 15807234
36, 1 28 vnlae LFKGKKGVLFGVPGAFTPGCSKTHLPGF veqae 55 1.00 F 15826629
38, 1 26 vkips DFKGKVVVLAFYPAAFTSVCTKEMCTFR dsmak 53 1.00 F 15899339
39, 1 30 vttel LFKGKRVVLFAVPGAFTPTCSLNHLPGY lenrd 57 1.00 F 15964668
44, 1 50 fnlak ALKKGPVVLYFFPAAYTAGCTAEAREFA eatpe 77 1.00 F 16125919
47, 1 31 fnfkq HTNGKTTVLFFWPMDFTFVCPSELIAFD kryee 58 1.00 F 16501671
51, 1 33 slekn IEDDKWTILFFYPMDFTFVCPTEIVAIS arsde 60 1.00 F 16803644
53, 1 31 vttdd LFAGKTVAVFSLPGAFTPTCSSTHLPGY nelak 58 1.00 F 17229033
60, 1 28 rlsev LKRGRPVVLLFFPGAFTSVCTKELCTFR dkmal 55 1.00 F 18313548
62, 1 26 eislq DYIGKYVVLAFYPLDFTFVCPTEINRFS dlkga 53 1.00 F 19173077
67, 1 27 evtek DTEGRWSVFFFYPADFTFVCPTELGDVA dhyee 54 1.00 F 20151112
68, 1 29 vdtht LFTGRKVVLFAVPGAFTPTCSAKHLPGY veqfe 56 1.00 F 21112072
70, 1 32 qinhk TYEGQWKVVFAWPKDFTFVCPTEIAAFG klnde 59 1.00 F 21223405
71, 1 28 eihly DLKGKKVLLSFHPLAWTQVCAQQMKSLE enyel 55 1.00 F 21227878
73, 1 25 mvsls EFKGRKVLLIFYPGDDTPVCTAQLCDYR nnvaa 52 1.00 F 21674812
81, 1 28 irfhd FLGDSWGILFSHPRDFTPVCTTELGRAA klape 55 1.00 F 3318841
85, 1 10 eidin EYKGKYVVLLFYPLDWTFVCPTEMIGYS evagq 37 1.00 F 4433065
86, 1 32 vsvhs IAAGKKVILFGVPGAFTPTCSMSHVPGF igkae 59 1.00 F 4704732
87, 1 28 fdfyk YVGDNWAILFSHPHDFTPVCTTELAEFG kmhee 55 1.00 F 4996210
88, 1 41 ynask EFANKKVVLFALPGAFTPVCSANHVPEY iqklp 68 1.00 F 5326864
89, 1 88 slkki TENNRVVVFFVYPRASTPGCTRQACGFR dnyqe 115 1.00 F 6322180
90, 1 43 ewskl ISENKKVIITGAPAAFSPTCTVSHIPGY inyld 70 1.00 F 6323138
95, 1 31 evkls DYKGKYVVLFFYPLDFTFVCPTEIIAFS nraed 58 1.00 F 9955016
***** ****************** **
Column 1 : Sequence Number, Site Number
Column 2 : Left End Location
Column 4 : Motif Element
Column 5 : Right End Location
Column 6 : Probability of Element
Column 7 : Forward Motif (F) or Reverse Complement (R)
Column 8 : Sequence Description from Fast A input
Log Motif portion of MAP for motif d = -1668.31468
Log Fragmentation portion of MAP for motif d = -7.86327
=============================================================
====== ELEMENTS OCCURRING GREATER THAN 50% OF THE TIME =====
====== Motif d =====
=============================================================
Listing of those elements occurring greater than 50% of the time
in near optimal sampling using 500 iterations
Motif model (residue frequency x 100)
____________________________________________
Pos. # a v c d e f g h i w k l m n y p q r s t Info
_____________________________________________________________________________________________
1 | 2 . . 28 17 2 . 2 8 . . 17 . . 11 . . . 2 5 1.1
2 | 5 2 . . 5 34 . . . . 2 14 . . 17 . . 8 2 5 1.4
3 | 8 . . 5 11 . 14 . 2 . 28 . . 5 2 . . 17 . 2 1.0
4 | 2 . . 11 . . 62 . . . 5 . . 11 . . 2 . 2 . 2.1
5 | . . . . . . 2 . . . 57 . . 5 . . 5 22 5 . 2.2
7 | 2 68 . . . 2 5 . 2 . 2 . . 2 . . . . 2 8 1.9
8 | 2 62 . . . . . . 25 . . 8 . . . . . . . . 2.3
9 | . 8 . . . 8 . . 5 . . 77 . . . . . . . . 2.3
10 | 8 8 . . . 57 . . 2 . . 5 . . 11 . . . 2 2 2.1
11 | 14 2 . . . 62 8 . . . . . . . . . . . 11 . 2.4
12 | 2 11 . . . 14 . 11 2 5 . 5 . . 45 . . . . . 2.4
13 | . . . . . . . . . . . . . . . 100 . . . . 4.3
14 | 22 . . . . 2 28 2 . . 8 17 5 . 2 . . 8 . . 1.2
15 | 51 . . 42 . . . . . . . . . 2 . . . . 2 . 2.3
16 | . . . 2 . 71 2 . . 5 . . 5 . 5 . . . 5 . 2.9
17 | . . . . . . . . . . . . . . . . . . 11 88 3.6
18 | 5 . . . . 25 2 . . . . . . . . 51 2 . 11 . 2.4
19 | . 54 . . . . 20 . 8 . . . . . . . . . . 17 2.0
20 | . . 97 . . . . . . . . . . . . . . . 2 . 6.2
21 | 5 . . . . . . . . . . . . . . 28 2 . 20 42 2.3
22 | 14 2 . . . . 2 . . . 14 5 5 . . . 2 8 5 37 1.3
23 | . . . . 62 . . . . . 2 . . 8 . . 14 . 5 5 2.2
24 | 14 2 . . . 2 2 22 11 . . 31 11 . . . . . . . 1.8
27 | 2 2 . . 2 45 17 . 8 . . 8 . . 8 2 . . . . 1.6
28 | 11 . . 2 2 8 5 . . . . . . 2 14 . 5 22 22 . 1.4
nonsite 8 7 . 6 7 4 7 1 5 . 7 9 2 4 2 4 3 4 5 5
site 7 9 3 3 4 13 7 1 3 . 4 7 1 1 4 7 1 3 4 8
Motif probability model
____________________________________________
Pos. # a v c d e f g h i w k l m n y p q r s t
____________________________________________
1 | 0.029 0.001 0.000 0.283 0.170 0.029 0.001 0.028 0.085 0.000 0.001 0.170 0.000 0.001 0.113 0.001 0.000 0.001 0.029 0.057
2 | 0.058 0.029 0.000 0.001 0.057 0.339 0.001 0.000 0.001 0.000 0.029 0.142 0.000 0.001 0.169 0.001 0.000 0.085 0.029 0.057
3 | 0.086 0.001 0.000 0.057 0.114 0.001 0.142 0.000 0.029 0.000 0.283 0.001 0.000 0.057 0.029 0.001 0.000 0.170 0.001 0.029
4 | 0.029 0.001 0.000 0.114 0.001 0.001 0.621 0.000 0.001 0.000 0.057 0.001 0.000 0.113 0.000 0.001 0.029 0.001 0.029 0.001
5 | 0.001 0.001 0.000 0.001 0.001 0.001 0.029 0.000 0.001 0.000 0.564 0.001 0.000 0.057 0.000 0.001 0.057 0.226 0.057 0.001
7 | 0.029 0.677 0.000 0.001 0.001 0.029 0.057 0.000 0.029 0.000 0.029 0.001 0.000 0.029 0.000 0.001 0.000 0.001 0.029 0.085
8 | 0.029 0.621 0.000 0.001 0.001 0.001 0.001 0.000 0.254 0.000 0.001 0.086 0.000 0.001 0.000 0.001 0.000 0.001 0.001 0.001
9 | 0.001 0.086 0.000 0.001 0.001 0.085 0.001 0.000 0.057 0.000 0.001 0.762 0.000 0.001 0.000 0.001 0.000 0.001 0.001 0.001
10 | 0.086 0.086 0.000 0.001 0.001 0.564 0.001 0.000 0.029 0.000 0.001 0.058 0.000 0.001 0.113 0.001 0.000 0.001 0.029 0.029
11 | 0.142 0.029 0.000 0.001 0.001 0.620 0.085 0.000 0.001 0.000 0.001 0.001 0.000 0.001 0.000 0.001 0.000 0.001 0.113 0.001
12 | 0.029 0.114 0.000 0.001 0.001 0.142 0.001 0.113 0.029 0.057 0.001 0.058 0.000 0.001 0.451 0.001 0.000 0.001 0.001 0.001
13 | 0.001 0.001 0.000 0.001 0.001 0.001 0.001 0.000 0.001 0.000 0.001 0.001 0.000 0.001 0.000 0.987 0.000 0.001 0.001 0.001
14 | 0.227 0.001 0.000 0.001 0.001 0.029 0.283 0.028 0.001 0.000 0.086 0.170 0.057 0.001 0.029 0.001 0.000 0.085 0.001 0.001
15 | 0.508 0.001 0.000 0.423 0.001 0.001 0.001 0.000 0.001 0.000 0.001 0.001 0.000 0.029 0.000 0.001 0.000 0.001 0.029 0.001
16 | 0.001 0.001 0.000 0.029 0.001 0.705 0.029 0.000 0.001 0.057 0.001 0.001 0.057 0.001 0.057 0.001 0.000 0.001 0.057 0.001
17 | 0.001 0.001 0.000 0.001 0.001 0.001 0.001 0.000 0.001 0.000 0.001 0.001 0.000 0.001 0.000 0.001 0.000 0.001 0.113 0.874
18 | 0.058 0.001 0.000 0.001 0.001 0.254 0.029 0.000 0.001 0.000 0.001 0.001 0.000 0.001 0.000 0.508 0.029 0.001 0.113 0.001
19 | 0.001 0.536 0.000 0.001 0.001 0.001 0.198 0.000 0.085 0.000 0.001 0.001 0.000 0.001 0.000 0.001 0.000 0.001 0.001 0.170
20 | 0.001 0.001 0.958 0.001 0.001 0.001 0.001 0.000 0.001 0.000 0.001 0.001 0.000 0.001 0.000 0.001 0.000 0.001 0.029 0.001
21 | 0.058 0.001 0.000 0.001 0.001 0.001 0.001 0.000 0.001 0.000 0.001 0.001 0.000 0.001 0.000 0.282 0.029 0.001 0.198 0.423
22 | 0.142 0.029 0.000 0.001 0.001 0.001 0.029 0.000 0.001 0.000 0.142 0.058 0.057 0.001 0.000 0.001 0.029 0.085 0.057 0.367
23 | 0.001 0.001 0.000 0.001 0.621 0.001 0.001 0.000 0.001 0.000 0.029 0.001 0.000 0.085 0.000 0.001 0.141 0.001 0.057 0.057
24 | 0.142 0.029 0.000 0.001 0.001 0.029 0.029 0.226 0.113 0.000 0.001 0.311 0.113 0.001 0.000 0.001 0.000 0.001 0.001 0.001
27 | 0.029 0.029 0.000 0.001 0.029 0.451 0.170 0.000 0.085 0.000 0.001 0.086 0.000 0.001 0.085 0.029 0.000 0.001 0.001 0.001
28 | 0.114 0.001 0.000 0.029 0.029 0.085 0.057 0.000 0.001 0.000 0.001 0.001 0.000 0.029 0.141 0.001 0.057 0.226 0.226 0.001
Background probability model
0.089 0.079 0.008 0.067 0.076 0.044 0.071 0.013 0.061 0.009 0.076 0.094 0.023 0.043 0.027 0.045 0.034 0.044 0.052 0.052
25 columns
Num Motifs: 35
1, 1 37 ldfdk EFRDKTVVIVAIPGAFTPTCTANHIPPF vekft 64 1.00 F 1091044
2, 1 32 irlsd YRGKKYVILFFYPANFTAISPTELMLLS drise 59 1.00 F 11467494
6, 1 26 eikei DLKSNWNVFFFYPYSYSFICPLELKNIS nkike 53 0.98 F 13186328
8, 1 28 kirls SYRGKWVVLFFYPADFTFVCPTEVEGFA edyek 55 1.00 F 13541053
9, 1 26 mrkls EFRGQNVVLAFFPGAFTSVCTKEMCTFR dsman 53 1.00 F 13541117
13, 1 25 melpd EFEGKWFILFSHPADFTPVCTTEFVAFQ evype 52 1.00 F 14286173
15, 1 25 kirls DFRGRIVVLYFYPRAMTPGCTREGVRFN ellde 52 1.00 F 14600438
22, 1 26 vtlrg YRGAKNVLLVFFPLAFTGICQGELDQLR dhlpe 53 1.00 F 15609375
23, 1 30 nvsla DYRGRRVIVYFYPAASTPGCTKQACDFR dnlgd 57 1.00 F 15609658
24, 1 24 tvsls DFKGKNIVLYFYPKDMTPGCTTEACDFR drved 51 1.00 F 15613511
28, 1 20 tfthv DLYGKYTILFFFPKAGTSGCTREAVEFS renfe 47 1.00 F 15643152
30, 1 61 gltda LADNRAVVLFFYPFDFSPVCATELCAIQ narwf 88 1.00 F 15790738
35, 1 26 itlss YRGQSHVVLVFYPLDFSPVCSMQLPEYS gsqdd 53 1.00 F 15807234
36, 1 28 vnlae LFKGKKGVLFGVPGAFTPGCSKTHLPGF veqae 55 1.00 F 15826629
38, 1 26 vkips DFKGKVVVLAFYPAAFTSVCTKEMCTFR dsmak 53 1.00 F 15899339
39, 1 30 vttel LFKGKRVVLFAVPGAFTPTCSLNHLPGY lenrd 57 1.00 F 15964668
44, 1 50 fnlak ALKKGPVVLYFFPAAYTAGCTAEAREFA eatpe 77 1.00 F 16125919
47, 1 31 fnfkq HTNGKTTVLFFWPMDFTFVCPSELIAFD kryee 58 1.00 F 16501671
51, 1 33 slekn IEDDKWTILFFYPMDFTFVCPTEIVAIS arsde 60 1.00 F 16803644
53, 1 31 vttdd LFAGKTVAVFSLPGAFTPTCSSTHLPGY nelak 58 1.00 F 17229033
60, 1 28 rlsev LKRGRPVVLLFFPGAFTSVCTKELCTFR dkmal 55 1.00 F 18313548
62, 1 26 eislq DYIGKYVVLAFYPLDFTFVCPTEINRFS dlkga 53 1.00 F 19173077
67, 1 27 evtek DTEGRWSVFFFYPADFTFVCPTELGDVA dhyee 54 1.00 F 20151112
68, 1 29 vdtht LFTGRKVVLFAVPGAFTPTCSAKHLPGY veqfe 56 1.00 F 21112072
70, 1 32 qinhk TYEGQWKVVFAWPKDFTFVCPTEIAAFG klnde 59 1.00 F 21223405
71, 1 28 eihly DLKGKKVLLSFHPLAWTQVCAQQMKSLE enyel 55 1.00 F 21227878
73, 1 25 mvsls EFKGRKVLLIFYPGDDTPVCTAQLCDYR nnvaa 52 1.00 F 21674812
81, 1 28 irfhd FLGDSWGILFSHPRDFTPVCTTELGRAA klape 55 1.00 F 3318841
85, 1 10 eidin EYKGKYVVLLFYPLDWTFVCPTEMIGYS evagq 37 1.00 F 4433065
86, 1 32 vsvhs IAAGKKVILFGVPGAFTPTCSMSHVPGF igkae 59 1.00 F 4704732
87, 1 28 fdfyk YVGDNWAILFSHPHDFTPVCTTELAEFG kmhee 55 1.00 F 4996210
88, 1 41 ynask EFANKKVVLFALPGAFTPVCSANHVPEY iqklp 68 1.00 F 5326864
89, 1 88 slkki TENNRVVVFFVYPRASTPGCTRQACGFR dnyqe 115 1.00 F 6322180
90, 1 43 ewskl ISENKKVIITGAPAAFSPTCTVSHIPGY inyld 70 0.99 F 6323138
95, 1 31 evkls DYKGKYVVLFFYPLDFTFVCPTEIIAFS nraed 58 1.00 F 9955016
***** ****************** **
Log Background portion of Map = -39912.17887
Log Alignment portion of Map = -957.33606
Log Site/seq portion of Map = 0.00000
Log Null Map = -46943.36311
Log Map = 2111.15797
log MAP = sum of motif and fragmentation parts of MAP + background + alignment + sites/seq - Null
=============================================================
====== Results by Sequence =====
====== ELEMENTS OCCURRING GREATER THAN 50% OF THE TIME =====
=============================================================
1, 1, 3 37 ldfdk EFRDKTVVIVAIPGAFTPTCTANHIPPF vekft 64 1.00 F 1091044
2, 1, 3 32 irlsd YRGKKYVILFFYPANFTAISPTELMLLS drise 59 1.00 F 11467494
2, 2, 0 72 klstq ILAISVDSPFSH lqyll 83 1.00 F 11467494
2, 3, 1 161 riles IQYVKENPGYACPVNWNFG dqvfy 179 1.00 F 11467494
3, 1, 2 17 viqsd KLVVVDFYADWCMPCRYISPILEKL skeyn 41 1.00 F 11499727
4, 1, 2 22 llntt QYVVADFYADWCGPCKAIAPMYAQF aktfs 46 1.00 F 1174686
5, 1, 2 19 ifsak KNVIVDFWAAWCGPCKLTSPEFQKA adefs 43 1.00 F 12044976
6, 1, 3 26 eikei DLKSNWNVFFFYPYSYSFICPLELKNIS nkike 53 0.98 F 13186328
6, 2, 0 66 nlntk IYAISNDSHFVQ knwie 77 1.00 F 13186328
7, 1, 2 21 kenhs KPILIDFYADWCPPCRMLIPVLDSI ekkhg 45 1.00 F 13358154
8, 1, 3 28 kirls SYRGKWVVLFFYPADFTFVCPTEVEGFA edyek 55 1.00 F 13541053
8, 2, 0 68 kknte VISVSEDTVYVH kawvq 79 1.00 F 13541053
9, 1, 3 26 mrkls EFRGQNVVLAFFPGAFTSVCTKEMCTFR dsman 53 1.00 F 13541117
9, 2, 0 66 kfkak VIGISVDSPFSL aefak 77 1.00 F 13541117
10, 1, 2 17 aetse GVVLADFWAPWCGPCKMIAPVLEEL dqemg 41 1.00 F 135765
11, 1, 2 29 akesn KLIVIDFTASWCPPCRMIAPIFNDL akkfm 53 1.00 F 1388082
12, 1, 2 44 likqn DKLVIDFYATWCGPCKMMQPHLTKL iqayp 68 1.00 F 140543
13, 1, 3 25 melpd EFEGKWFILFSHPADFTPVCTTEFVAFQ evype 52 1.00 F 14286173
13, 2, 0 65 eldce LVGLSVDQVFSH ikwie 76 0.98 F 14286173
14, 1, 2 80 selrg KVVMLQFTASWCGVCRKEMPFIEKD iwlkh 104 1.00 F 14578634
15, 1, 3 25 kirls DFRGRIVVLYFYPRAMTPGCTREGVRFN ellde 52 1.00 F 14600438
15, 2, 0 65 klgav VIGVSTDSVEKN rkfae 76 1.00 F 14600438
16, 1, 2 23 lqnsd KPVLVDFYATWCGPCQLMVPILNEV setlk 47 1.00 F 15218394
17, 1, 2 157 adfrg RPLVINLWASWCPPCRREMPVLQQA qaenp 181 1.00 F 15597673
18, 1, 2 26 ensfh KPVLVDFWADWCAPCKALMPLLAQI aesyq 50 1.00 F 15599256
19, 1, 2 67 negkg KTILLNFWSETCGVCIAELKTFEQL lqsyp 91 1.00 F 15602312
20, 1, 2 61 eefkg KVLLINFWATWCPPCKEEIPMFKEI yekyr 85 1.00 F 15605725
21, 1, 0 80 megvd VTVVSMDLPFAQ krfce 91 0.65 F 15605963
22, 1, 3 26 vtlrg YRGAKNVLLVFFPLAFTGICQGELDQLR dhlpe 53 1.00 F 15609375
23, 1, 3 30 nvsla DYRGRRVIVYFYPAASTPGCTKQACDFR dnlgd 57 1.00 F 15609658
23, 2, 0 70 tagln VVGISPDKPEKL atfrd 81 0.99 F 15609658
24, 1, 3 24 tvsls DFKGKNIVLYFYPKDMTPGCTTEACDFR drved 51 1.00 F 15613511
24, 2, 0 64 glntv ILGVSPDPVERH kkfie 75 1.00 F 15613511
25, 1, 2 60 sdyrg DVVILNVWASWCEPCRKEMPALMEL qsdye 84 1.00 F 15614085
26, 1, 2 63 releg KGVFLNFWGTYCPPCEREMPHMEKL ygeyk 87 1.00 F 15614140
27, 1, 2 72 sslrg QPVILHFFATWCPVCQDEMPSLVKL dkeyr 96 1.00 F 15615431
28, 1, 3 20 tfthv DLYGKYTILFFFPKAGTSGCTREAVEFS renfe 47 1.00 F 15643152
28, 2, 0 56 fekaq VVGISRDSVEAL krfke 67 1.00 F 15643152
30, 1, 3 61 gltda LADNRAVVLFFYPFDFSPVCATELCAIQ narwf 88 1.00 F 15790738
30, 2, 0 101 tpgla VWGISPDSTYAH eafad 112 0.98 F 15790738
31, 1, 2 2 m TVTLKDFYADWCGPCKTQDPILEEL eadyd 26 1.00 F 15791337
32, 1, 0 80 idntv VLCISADLPFAQ srfcg 91 0.99 F 15801846
33, 1, 2 72 adyrg RPVVLNFWASWCGPCREEAPLFAKL aahpg 96 1.00 F 15805225
34, 1, 2 78 taaqg KPVVINFWASWCVPCRQEAPLFSKL sqeta 102 1.00 F 15805374
35, 1, 3 26 itlss YRGQSHVVLVFYPLDFSPVCSMQLPEYS gsqdd 53 1.00 F 15807234
35, 2, 0 66 eagav VLGINRDSVYAH rawaa 77 1.00 F 15807234
36, 1, 3 28 vnlae LFKGKKGVLFGVPGAFTPGCSKTHLPGF veqae 55 1.00 F 15826629
37, 1, 2 49 fitkn KIVVVDFWAEWCAPCLILAPVIEEL andyp 73 1.00 F 15899007
38, 1, 3 26 vkips DFKGKVVVLAFYPAAFTSVCTKEMCTFR dsmak 53 1.00 F 15899339
38, 2, 0 66 evnav VIGISVDPPFSN kafke 77 1.00 F 15899339
39, 1, 3 30 vttel LFKGKRVVLFAVPGAFTPTCSLNHLPGY lenrd 57 1.00 F 15964668
40, 1, 2 61 easrq QPVLVDFWAPWCGPCKQLTPVIEKV vreaa 85 1.00 F 15966937
41, 1, 2 61 sdfrg KTLLVNLWATWCVPCRKEMPALDEL qgkls 85 1.00 F 15988313
42, 1, 2 60 qdakg KKVLLNFWATWCKPCRQEMPAMEKL qkeya 84 1.00 F 16078864
43, 1, 2 53 llqdd LPMVIDFWAPWCGPCRSFAPIFAET aaera 77 1.00 F 16123427
44, 1, 3 50 fnlak ALKKGPVVLYFFPAAYTAGCTAEAREFA eatpe 77 1.00 F 16125919
46, 1, 2 21 vlkad GAILVDFWAEWCGPCKMIAPILDEI adeyq 45 1.00 F 1633495
47, 1, 3 31 fnfkq HTNGKTTVLFFWPMDFTFVCPSELIAFD kryee 58 1.00 F 16501671
47, 2, 0 71 krgve VVGVSFDSEFVH nawrn 82 1.00 F 16501671
47, 3, 1 160 lrmvd ALQFHEEHGDVCPAQWEKG kegmn 178 1.00 F 16501671
48, 1, 2 34 vlqcp KPILVYFGAPWCGLCHFVKPLLNHL hgewq 58 1.00 F 1651717
49, 1, 2 60 tlsee RPVLLYFWASWCGVCRFTTPAVAHL aaege 84 1.00 F 16759994
50, 1, 2 53 llkdd LPVVIDFWAPWCGPCRNFAPIFEDV aeers 77 1.00 F 16761507
51, 1, 3 33 slekn IEDDKWTILFFYPMDFTFVCPTEIVAIS arsde 60 1.00 F 16803644
52, 1, 2 19 iissh PKILLNFWAEWCAPCRCFWPTLEQF aemee 43 1.00 F 16804867
53, 1, 3 31 vttdd LFAGKTVAVFSLPGAFTPTCSSTHLPGY nelak 58 1.00 F 17229033
54, 1, 2 22 vlsed KVVVVDFTATWCGPCRLVSPLMDQL adeyk 46 1.00 F 17229859
55, 1, 2 18 vlegt GYVLVDYFSDGCVPCKALMPAVEEL skkye 42 1.00 F 1729944
56, 1, 2 28 rqhpe KIIILDFYATWCGPCKAIAPLYKEL atthk 52 1.00 F 17531233
57, 1, 2 27 ehlkg KIIGLYFSASWCPPCRAFTPKLKEF feeik 51 1.00 F 17537401
58, 1, 2 63 safrg QPVVINFWAPWCGPCVEEMPELSAL aqeqk 87 1.00 F 17547503
59, 1, 2 286 seykg KTIFLNFWATWCPPCRGEMPYIDEL ykeyn 310 1.00 F 18309723
60, 1, 3 28 rlsev LKRGRPVVLLFFPGAFTSVCTKELCTFR dkmal 55 1.00 F 18313548
60, 2, 0 68 kanae VLAISVDSPFAL kafkd 79 1.00 F 18313548
61, 1, 2 44 dsllg KKIGLYFSAAWCGPCQRFTPQLVEV ynels 68 1.00 F 18406743
61, 2, 2 364 sdlvg KTILMYFSAHWCPPCRAFTPKLVEV ykqik 388 1.00 F 18406743
62, 1, 3 26 eislq DYIGKYVVLAFYPLDFTFVCPTEINRFS dlkga 53 1.00 F 19173077
62, 2, 0 66 rrnav VLLISCDSVYTH kawas 77 1.00 F 19173077
63, 1, 2 15 sdfeg EVVVLNAWGQWCAPCRAEVDDLQLV qetld 39 1.00 F 19554157
64, 1, 2 39 eeykg KVVVINFWATWCGYCVEEMPGFEKV ykefg 63 1.00 F 19705357
66, 1, 2 7 agdfm KPMLLDFSATWCGPCRMQKPILEEL ekkyg 31 1.00 F 20092028
67, 1, 3 27 evtek DTEGRWSVFFFYPADFTFVCPTELGDVA dhyee 54 1.00 F 20151112
67, 2, 0 67 klgvd VYSVSTDTHFTH kawhs 78 1.00 F 20151112
67, 3, 1 154 rkika AQYVAAHPGEVCPAKWKEG eatla 172 1.00 F 20151112
68, 1, 3 29 vdtht LFTGRKVVLFAVPGAFTPTCSAKHLPGY veqfe 56 1.00 F 21112072
69, 1, 2 103 adykg KVVVLNVWGSWCPPCRAEAKNFEKV yqdvk 127 1.00 F 21222859
70, 1, 3 32 qinhk TYEGQWKVVFAWPKDFTFVCPTEIAAFG klnde 59 1.00 F 21223405
70, 2, 0 72 drdaq ILGFSGDSEFVH hawrk 83 1.00 F 21223405
71, 1, 3 28 eihly DLKGKKVLLSFHPLAWTQVCAQQMKSLE enyel 55 1.00 F 21227878
72, 1, 0 78 keegi VLTISADLPFAQ krwca 89 0.99 F 21283385
73, 1, 3 25 mvsls EFKGRKVLLIFYPGDDTPVCTAQLCDYR nnvaa 52 1.00 F 21674812
73, 2, 0 65 srgit VIGISGDSPESH kqfae 76 1.00 F 21674812
74, 1, 2 53 sdfkg ERVLINFWTTWCPPCRQEMPDMQRF yqdlq 77 1.00 F 23098307
76, 1, 2 20 kylqh QRVVVDFSAEWCGPCRAIAPVFDKL sneft 44 1.00 F 267116
77, 1, 2 81 aafkg KVSLVNVWASWCVPCHDEAPLLTEL gkdkr 105 1.00 F 27375582
78, 1, 2 34 vtsdn DVVLADFYADWCGPCQMLEPVVETL aeqtd 58 1.00 F 2822332
79, 1, 2 77 sdlkg KKVILNFWATWCGPCQQEMPDMEAF ykehk 101 1.00 F 30021713
80, 1, 2 19 tisan SNVLVYFWAPLCAPCDLFTPTYEAS srkhf 43 1.00 F 3261501
81, 1, 3 28 irfhd FLGDSWGILFSHPRDFTPVCTTELGRAA klape 55 1.00 F 3318841
81, 2, 0 68 krnvk LIALSIDSVEDH lawsk 79 1.00 F 3318841
81, 3, 1 166 lrvvi SLQLTAEKRVATPVDWKDG dsvmv 184 1.00 F 3318841
82, 1, 2 19 tietn PLVIVDFWAPWCGSCKMLGPVLEEV esevg 43 1.00 F 3323237
83, 1, 2 17 ektah QAVVVNVGASWCPDCRKIEPIMENL aktyk 41 1.00 F 4155972
84, 1, 2 79 vvnse TPVVVDFHAQWCGPCKILGPRLEKM vakqh 103 1.00 F 4200327
85, 1, 3 10 eidin EYKGKYVVLLFYPLDWTFVCPTEMIGYS evagq 37 1.00 F 4433065
85, 2, 0 50 eince VIGVSVDSVYCH qawce 61 1.00 F 4433065
86, 1, 3 32 vsvhs IAAGKKVILFGVPGAFTPTCSMSHVPGF igkae 59 1.00 F 4704732
87, 1, 3 28 fdfyk YVGDNWAILFSHPHDFTPVCTTELAEFG kmhee 55 1.00 F 4996210
87, 2, 0 68 klnck LIGFSCNSKESH dqwie 79 0.56 F 4996210
87, 3, 1 163 lrvlk SLQLTNTHPVATPVNWKEG dkcci 181 1.00 F 4996210
88, 1, 3 41 ynask EFANKKVVLFALPGAFTPVCSANHVPEY iqklp 68 1.00 F 5326864
89, 1, 3 88 slkki TENNRVVVFFVYPRASTPGCTRQACGFR dnyqe 115 1.00 F 6322180
89, 2, 0 127 kkyaa VFGLSADSVTSQ kkfqs 138 0.51 F 6322180
90, 1, 3 43 ewskl ISENKKVIITGAPAAFSPTCTVSHIPGY inyld 70 0.99 F 6323138
91, 1, 2 20 nenkg RLIVVDFFAQWCGPCRNIAPKVEAL akeip 44 1.00 F 6687568
92, 1, 0 68 klgve VLSVSVDSVFVH kmwnd 79 1.00 F 6850955
93, 1, 2 18 llttn KKVVVDFYANWCGPCKILGPIFEEV aqdkk 42 1.00 F 7109697
94, 1, 2 21 ilaed KLVVIDFYADWCGPCKIIAPKLDEL aqqys 45 1.00 F 7290567
95, 1, 3 31 evkls DYKGKYVVLFFYPLDFTFVCPTEIIAFS nraed 58 1.00 F 9955016
95, 2, 0 71 klgce VLGVSVDSQFTH lawin 82 1.00 F 9955016
95, 3, 1 160 lrlvq AFQYTDEHGEVCPAGWKPG sdtik 178 1.00 F 9955016
96, 1, 2 49 adlqg KVTLINFWFPSCPGCVSEMPKIIKT andyk 73 1.00 F 15677788
122 motifs
Column 1 : Sequence Number, Site Number
Column 2 : Motif type
Column 3 : Left End Location
Column 4 : Motif Element
Column 5 : Right End Location
Column 6 : Probability of Element
Column 7 : Forward Motif (F) or Reverse Complement (R)
Column 8 : Sequence Description from Fast A input
======================== MAP MAXIMIZATION RESULTS ====================
======================================================================
=============================================================
====== Results by Sequence =====
=============================================================
1, 1, 3 37 ldfdk EFRDKTVVIVAIPGAFTPTCTANHIPPF vekft 64 1.00 F 1091044
1, 2, 0 79 agvda VIVLSANDPFVQ safgk 90 0.48 F 1091044
2, 1, 3 32 irlsd YRGKKYVILFFYPANFTAISPTELMLLS drise 59 1.00 F 11467494
2, 2, 0 72 klstq ILAISVDSPFSH lqyll 83 1.00 F 11467494
2, 3, 1 161 riles IQYVKENPGYACPVNWNFG dqvfy 179 1.00 F 11467494
3, 1, 2 17 viqsd KLVVVDFYADWCMPCRYISPILEKL skeyn 41 1.00 F 11499727
4, 1, 2 22 llntt QYVVADFYADWCGPCKAIAPMYAQF aktfs 46 1.00 F 1174686
5, 1, 2 19 ifsak KNVIVDFWAAWCGPCKLTSPEFQKA adefs 43 1.00 F 12044976
6, 1, 3 26 eikei DLKSNWNVFFFYPYSYSFICPLELKNIS nkike 53 0.98 F 13186328
6, 2, 0 66 nlntk IYAISNDSHFVQ knwie 77 1.00 F 13186328
7, 1, 2 21 kenhs KPILIDFYADWCPPCRMLIPVLDSI ekkhg 45 1.00 F 13358154
8, 1, 3 28 kirls SYRGKWVVLFFYPADFTFVCPTEVEGFA edyek 55 1.00 F 13541053
8, 2, 0 68 kknte VISVSEDTVYVH kawvq 79 1.00 F 13541053
9, 1, 3 26 mrkls EFRGQNVVLAFFPGAFTSVCTKEMCTFR dsman 53 1.00 F 13541117
9, 2, 0 66 kfkak VIGISVDSPFSL aefak 77 1.00 F 13541117
10, 1, 2 17 aetse GVVLADFWAPWCGPCKMIAPVLEEL dqemg 41 1.00 F 135765
11, 1, 2 29 akesn KLIVIDFTASWCPPCRMIAPIFNDL akkfm 53 1.00 F 1388082
12, 1, 2 44 likqn DKLVIDFYATWCGPCKMMQPHLTKL iqayp 68 1.00 F 140543
13, 1, 3 25 melpd EFEGKWFILFSHPADFTPVCTTEFVAFQ evype 52 1.00 F 14286173
13, 2, 0 65 eldce LVGLSVDQVFSH ikwie 76 0.98 F 14286173
14, 1, 2 80 selrg KVVMLQFTASWCGVCRKEMPFIEKD iwlkh 104 1.00 F 14578634
15, 1, 3 25 kirls DFRGRIVVLYFYPRAMTPGCTREGVRFN ellde 52 1.00 F 14600438
15, 2, 0 65 klgav VIGVSTDSVEKN rkfae 76 1.00 F 14600438
16, 1, 2 23 lqnsd KPVLVDFYATWCGPCQLMVPILNEV setlk 47 1.00 F 15218394
17, 1, 2 157 adfrg RPLVINLWASWCPPCRREMPVLQQA qaenp 181 1.00 F 15597673
18, 1, 2 26 ensfh KPVLVDFWADWCAPCKALMPLLAQI aesyq 50 1.00 F 15599256
19, 1, 2 67 negkg KTILLNFWSETCGVCIAELKTFEQL lqsyp 91 1.00 F 15602312
20, 1, 2 61 eefkg KVLLINFWATWCPPCKEEIPMFKEI yekyr 85 1.00 F 15605725
21, 1, 0 80 megvd VTVVSMDLPFAQ krfce 91 0.65 F 15605963
22, 1, 3 26 vtlrg YRGAKNVLLVFFPLAFTGICQGELDQLR dhlpe 53 1.00 F 15609375
23, 1, 3 30 nvsla DYRGRRVIVYFYPAASTPGCTKQACDFR dnlgd 57 1.00 F 15609658
23, 2, 0 70 tagln VVGISPDKPEKL atfrd 81 0.99 F 15609658
24, 1, 3 24 tvsls DFKGKNIVLYFYPKDMTPGCTTEACDFR drved 51 1.00 F 15613511
24, 2, 0 64 glntv ILGVSPDPVERH kkfie 75 1.00 F 15613511
25, 1, 2 60 sdyrg DVVILNVWASWCEPCRKEMPALMEL qsdye 84 1.00 F 15614085
26, 1, 2 63 releg KGVFLNFWGTYCPPCEREMPHMEKL ygeyk 87 1.00 F 15614140
27, 1, 2 72 sslrg QPVILHFFATWCPVCQDEMPSLVKL dkeyr 96 1.00 F 15615431
28, 1, 3 20 tfthv DLYGKYTILFFFPKAGTSGCTREAVEFS renfe 47 1.00 F 15643152
28, 2, 0 56 fekaq VVGISRDSVEAL krfke 67 1.00 F 15643152
30, 1, 3 61 gltda LADNRAVVLFFYPFDFSPVCATELCAIQ narwf 88 1.00 F 15790738
30, 2, 0 101 tpgla VWGISPDSTYAH eafad 112 0.98 F 15790738
31, 1, 2 2 m TVTLKDFYADWCGPCKTQDPILEEL eadyd 26 1.00 F 15791337
32, 1, 0 80 idntv VLCISADLPFAQ srfcg 91 0.99 F 15801846
33, 1, 2 72 adyrg RPVVLNFWASWCGPCREEAPLFAKL aahpg 96 1.00 F 15805225
34, 1, 2 78 taaqg KPVVINFWASWCVPCRQEAPLFSKL sqeta 102 1.00 F 15805374
35, 1, 3 26 itlss YRGQSHVVLVFYPLDFSPVCSMQLPEYS gsqdd 53 1.00 F 15807234
35, 2, 0 66 eagav VLGINRDSVYAH rawaa 77 1.00 F 15807234
36, 1, 3 28 vnlae LFKGKKGVLFGVPGAFTPGCSKTHLPGF veqae 55 1.00 F 15826629
37, 1, 2 49 fitkn KIVVVDFWAEWCAPCLILAPVIEEL andyp 73 1.00 F 15899007
38, 1, 3 26 vkips DFKGKVVVLAFYPAAFTSVCTKEMCTFR dsmak 53 1.00 F 15899339
38, 2, 0 66 evnav VIGISVDPPFSN kafke 77 1.00 F 15899339
39, 1, 3 30 vttel LFKGKRVVLFAVPGAFTPTCSLNHLPGY lenrd 57 1.00 F 15964668
40, 1, 2 61 easrq QPVLVDFWAPWCGPCKQLTPVIEKV vreaa 85 1.00 F 15966937
41, 1, 2 61 sdfrg KTLLVNLWATWCVPCRKEMPALDEL qgkls 85 1.00 F 15988313
42, 1, 2 60 qdakg KKVLLNFWATWCKPCRQEMPAMEKL qkeya 84 1.00 F 16078864
43, 1, 2 53 llqdd LPMVIDFWAPWCGPCRSFAPIFAET aaera 77 1.00 F 16123427
44, 1, 3 50 fnlak ALKKGPVVLYFFPAAYTAGCTAEAREFA eatpe 77 1.00 F 16125919
46, 1, 2 21 vlkad GAILVDFWAEWCGPCKMIAPILDEI adeyq 45 1.00 F 1633495
47, 1, 3 31 fnfkq HTNGKTTVLFFWPMDFTFVCPSELIAFD kryee 58 1.00 F 16501671
47, 2, 0 71 krgve VVGVSFDSEFVH nawrn 82 1.00 F 16501671
47, 3, 1 160 lrmvd ALQFHEEHGDVCPAQWEKG kegmn 178 1.00 F 16501671
48, 1, 2 34 vlqcp KPILVYFGAPWCGLCHFVKPLLNHL hgewq 58 1.00 F 1651717
49, 1, 2 60 tlsee RPVLLYFWASWCGVCRFTTPAVAHL aaege 84 1.00 F 16759994
50, 1, 2 53 llkdd LPVVIDFWAPWCGPCRNFAPIFEDV aeers 77 1.00 F 16761507
51, 1, 3 33 slekn IEDDKWTILFFYPMDFTFVCPTEIVAIS arsde 60 1.00 F 16803644
52, 1, 2 19 iissh PKILLNFWAEWCAPCRCFWPTLEQF aemee 43 1.00 F 16804867
53, 1, 3 31 vttdd LFAGKTVAVFSLPGAFTPTCSSTHLPGY nelak 58 1.00 F 17229033
53, 2, 0 73 ngvde IVCISVNDAFVM newak 84 0.32 F 17229033
54, 1, 2 22 vlsed KVVVVDFTATWCGPCRLVSPLMDQL adeyk 46 1.00 F 17229859
55, 1, 2 18 vlegt GYVLVDYFSDGCVPCKALMPAVEEL skkye 42 1.00 F 1729944
56, 1, 2 28 rqhpe KIIILDFYATWCGPCKAIAPLYKEL atthk 52 1.00 F 17531233
57, 1, 2 27 ehlkg KIIGLYFSASWCPPCRAFTPKLKEF feeik 51 1.00 F 17537401
58, 1, 2 63 safrg QPVVINFWAPWCGPCVEEMPELSAL aqeqk 87 1.00 F 17547503
59, 1, 2 286 seykg KTIFLNFWATWCPPCRGEMPYIDEL ykeyn 310 1.00 F 18309723
60, 1, 3 28 rlsev LKRGRPVVLLFFPGAFTSVCTKELCTFR dkmal 55 1.00 F 18313548
60, 2, 0 68 kanae VLAISVDSPFAL kafkd 79 1.00 F 18313548
61, 1, 2 44 dsllg KKIGLYFSAAWCGPCQRFTPQLVEV ynels 68 1.00 F 18406743
61, 2, 2 364 sdlvg KTILMYFSAHWCPPCRAFTPKLVEV ykqik 388 1.00 F 18406743
62, 1, 3 26 eislq DYIGKYVVLAFYPLDFTFVCPTEINRFS dlkga 53 1.00 F 19173077
62, 2, 0 66 rrnav VLLISCDSVYTH kawas 77 1.00 F 19173077
63, 1, 2 15 sdfeg EVVVLNAWGQWCAPCRAEVDDLQLV qetld 39 1.00 F 19554157
64, 1, 2 39 eeykg KVVVINFWATWCGYCVEEMPGFEKV ykefg 63 1.00 F 19705357
66, 1, 2 7 agdfm KPMLLDFSATWCGPCRMQKPILEEL ekkyg 31 1.00 F 20092028
67, 1, 3 27 evtek DTEGRWSVFFFYPADFTFVCPTELGDVA dhyee 54 1.00 F 20151112
67, 2, 0 67 klgvd VYSVSTDTHFTH kawhs 78 1.00 F 20151112
67, 3, 1 154 rkika AQYVAAHPGEVCPAKWKEG eatla 172 1.00 F 20151112
68, 1, 3 29 vdtht LFTGRKVVLFAVPGAFTPTCSAKHLPGY veqfe 56 1.00 F 21112072
69, 1, 2 103 adykg KVVVLNVWGSWCPPCRAEAKNFEKV yqdvk 127 1.00 F 21222859
70, 1, 3 32 qinhk TYEGQWKVVFAWPKDFTFVCPTEIAAFG klnde 59 1.00 F 21223405
70, 2, 0 72 drdaq ILGFSGDSEFVH hawrk 83 1.00 F 21223405
71, 1, 3 28 eihly DLKGKKVLLSFHPLAWTQVCAQQMKSLE enyel 55 1.00 F 21227878
72, 1, 0 78 keegi VLTISADLPFAQ krwca 89 0.99 F 21283385
73, 1, 3 25 mvsls EFKGRKVLLIFYPGDDTPVCTAQLCDYR nnvaa 52 1.00 F 21674812
73, 2, 0 65 srgit VIGISGDSPESH kqfae 76 1.00 F 21674812
74, 1, 2 53 sdfkg ERVLINFWTTWCPPCRQEMPDMQRF yqdlq 77 1.00 F 23098307
76, 1, 2 20 kylqh QRVVVDFSAEWCGPCRAIAPVFDKL sneft 44 1.00 F 267116
77, 1, 2 81 aafkg KVSLVNVWASWCVPCHDEAPLLTEL gkdkr 105 1.00 F 27375582
78, 1, 2 34 vtsdn DVVLADFYADWCGPCQMLEPVVETL aeqtd 58 1.00 F 2822332
79, 1, 2 77 sdlkg KKVILNFWATWCGPCQQEMPDMEAF ykehk 101 1.00 F 30021713
80, 1, 2 19 tisan SNVLVYFWAPLCAPCDLFTPTYEAS srkhf 43 1.00 F 3261501
81, 1, 3 28 irfhd FLGDSWGILFSHPRDFTPVCTTELGRAA klape 55 1.00 F 3318841
81, 2, 0 68 krnvk LIALSIDSVEDH lawsk 79 1.00 F 3318841
81, 3, 1 166 lrvvi SLQLTAEKRVATPVDWKDG dsvmv 184 1.00 F 3318841
82, 1, 2 19 tietn PLVIVDFWAPWCGSCKMLGPVLEEV esevg 43 1.00 F 3323237
83, 1, 2 17 ektah QAVVVNVGASWCPDCRKIEPIMENL aktyk 41 1.00 F 4155972
84, 1, 2 79 vvnse TPVVVDFHAQWCGPCKILGPRLEKM vakqh 103 1.00 F 4200327
85, 1, 3 10 eidin EYKGKYVVLLFYPLDWTFVCPTEMIGYS evagq 37 1.00 F 4433065
85, 2, 0 50 eince VIGVSVDSVYCH qawce 61 1.00 F 4433065
86, 1, 3 32 vsvhs IAAGKKVILFGVPGAFTPTCSMSHVPGF igkae 59 1.00 F 4704732
86, 2, 0 74 kgide IICFSVNDPFVM kawgk 85 0.43 F 4704732
87, 1, 3 28 fdfyk YVGDNWAILFSHPHDFTPVCTTELAEFG kmhee 55 1.00 F 4996210
87, 2, 0 68 klnck LIGFSCNSKESH dqwie 79 0.56 F 4996210
87, 3, 1 163 lrvlk SLQLTNTHPVATPVNWKEG dkcci 181 1.00 F 4996210
88, 1, 3 41 ynask EFANKKVVLFALPGAFTPVCSANHVPEY iqklp 68 1.00 F 5326864
89, 1, 3 88 slkki TENNRVVVFFVYPRASTPGCTRQACGFR dnyqe 115 1.00 F 6322180
90, 1, 3 43 ewskl ISENKKVIITGAPAAFSPTCTVSHIPGY inyld 70 0.99 F 6323138
91, 1, 2 20 nenkg RLIVVDFFAQWCGPCRNIAPKVEAL akeip 44 1.00 F 6687568
92, 1, 0 68 klgve VLSVSVDSVFVH kmwnd 79 1.00 F 6850955
93, 1, 2 18 llttn KKVVVDFYANWCGPCKILGPIFEEV aqdkk 42 1.00 F 7109697
94, 1, 2 21 ilaed KLVVIDFYADWCGPCKIIAPKLDEL aqqys 45 1.00 F 7290567
95, 1, 3 31 evkls DYKGKYVVLFFYPLDFTFVCPTEIIAFS nraed 58 1.00 F 9955016
95, 2, 0 71 klgce VLGVSVDSQFTH lawin 82 1.00 F 9955016
95, 3, 1 160 lrlvq AFQYTDEHGEVCPAGWKPG sdtik 178 1.00 F 9955016
96, 1, 2 49 adlqg KVTLINFWFPSCPGCVSEMPKIIKT andyk 73 1.00 F 15677788
124 motifs
Column 1 : Sequence Number, Site Number
Column 2 : Motif type
Column 3 : Left End Location
Column 4 : Motif Element
Column 5 : Right End Location
Column 6 : Probability of Element
Column 7 : Forward Motif (F) or Reverse Complement (R)
Column 8 : Sequence Description from Fast A input
-------------------------------------------------------------------------
MOTIF a
Motif model (residue frequency x 100)
____________________________________________
Pos. # a v c d e f g h i w k l m n y p q r s t Info
_____________________________________________________________________________________________
1 | . 68 . . . . . . 20 . . 10 . . . . . . . . 2.4
2 | . 17 . . . . . . 34 3 . 34 . . 6 . . . . 3 1.7
3 | 13 6 10 . . . 51 . . . . 3 . . . . . . 10 3 1.9
4 | . 31 . . . 10 . . 48 . . 10 . . . . . . . . 2.1
5 | . . . . . . . . . . . . . 3 . . . . 96 . 3.8
7 | . . . 86 . . . . . . . . . 13 . . . . . . 3.2
8 | . . . 10 . . . . . . 3 10 . . . 6 3 . 58 6 2.0
9 | 3 34 . . 6 . . 6 . . 3 . . . . 37 3 . . 3 1.8
10 | . . . . 24 58 . . . . . . . . 17 . . . . . 2.9
12 | . . . . . . . 55 . . . 13 6 6 . . 17 . . . 3.4
nonsite 8 8 . 6 7 4 7 1 6 . 7 9 2 4 2 4 3 4 5 5
site 1 15 1 9 3 6 5 6 10 . . 8 . 2 2 4 2 . 16 1
Motif probability model
____________________________________________
Pos. # a v c d e f g h i w k l m n y p q r s t
____________________________________________
1 | 0.001 0.679 0.000 0.001 0.001 0.001 0.001 0.000 0.204 0.000 0.001 0.103 0.000 0.001 0.000 0.001 0.001 0.001 0.001 0.001
2 | 0.001 0.171 0.000 0.001 0.001 0.001 0.001 0.000 0.340 0.034 0.001 0.341 0.000 0.001 0.068 0.001 0.001 0.001 0.001 0.035
3 | 0.137 0.069 0.102 0.001 0.001 0.001 0.510 0.000 0.001 0.000 0.001 0.035 0.000 0.001 0.000 0.001 0.001 0.001 0.103 0.035
4 | 0.001 0.306 0.000 0.001 0.001 0.103 0.001 0.000 0.476 0.000 0.001 0.103 0.000 0.001 0.000 0.001 0.001 0.001 0.001 0.001
5 | 0.001 0.001 0.000 0.001 0.001 0.001 0.001 0.000 0.001 0.000 0.001 0.002 0.000 0.035 0.000 0.001 0.001 0.001 0.950 0.001
7 | 0.001 0.001 0.000 0.849 0.001 0.001 0.001 0.000 0.001 0.000 0.001 0.002 0.000 0.136 0.000 0.001 0.001 0.001 0.001 0.001
8 | 0.001 0.001 0.000 0.103 0.001 0.001 0.001 0.000 0.001 0.000 0.035 0.103 0.000 0.001 0.000 0.069 0.034 0.001 0.577 0.069
9 | 0.035 0.340 0.000 0.001 0.069 0.001 0.001 0.068 0.001 0.000 0.035 0.002 0.000 0.001 0.000 0.374 0.034 0.001 0.001 0.035
10 | 0.001 0.001 0.000 0.001 0.238 0.577 0.001 0.000 0.001 0.000 0.001 0.002 0.000 0.001 0.170 0.001 0.001 0.001 0.001 0.001
12 | 0.001 0.001 0.000 0.001 0.001 0.001 0.001 0.543 0.001 0.000 0.001 0.137 0.068 0.068 0.000 0.001 0.170 0.001 0.001 0.001
Background probability model
0.089 0.079 0.008 0.067 0.076 0.044 0.071 0.013 0.061 0.009 0.076 0.094 0.023 0.043 0.027 0.045 0.034 0.044 0.052 0.052
10 columns
Num Motifs: 29
1, 1 79 agvda VIVLSANDPFVQ safgk 90 0.48 F 1091044
2, 1 72 klstq ILAISVDSPFSH lqyll 83 1.00 F 11467494
6, 1 66 nlntk IYAISNDSHFVQ knwie 77 1.00 F 13186328
8, 1 68 kknte VISVSEDTVYVH kawvq 79 1.00 F 13541053
9, 1 66 kfkak VIGISVDSPFSL aefak 77 1.00 F 13541117
13, 1 65 eldce LVGLSVDQVFSH ikwie 76 0.98 F 14286173
15, 1 65 klgav VIGVSTDSVEKN rkfae 76 1.00 F 14600438
21, 1 80 megvd VTVVSMDLPFAQ krfce 91 0.65 F 15605963
23, 1 70 tagln VVGISPDKPEKL atfrd 81 0.99 F 15609658
24, 1 64 glntv ILGVSPDPVERH kkfie 75 1.00 F 15613511
28, 1 56 fekaq VVGISRDSVEAL krfke 67 1.00 F 15643152
30, 1 101 tpgla VWGISPDSTYAH eafad 112 0.98 F 15790738
32, 1 80 idntv VLCISADLPFAQ srfcg 91 0.99 F 15801846
35, 1 66 eagav VLGINRDSVYAH rawaa 77 1.00 F 15807234
38, 1 66 evnav VIGISVDPPFSN kafke 77 1.00 F 15899339
47, 1 71 krgve VVGVSFDSEFVH nawrn 82 1.00 F 16501671
53, 1 73 ngvde IVCISVNDAFVM newak 84 0.32 F 17229033
60, 1 68 kanae VLAISVDSPFAL kafkd 79 1.00 F 18313548
62, 1 66 rrnav VLLISCDSVYTH kawas 77 1.00 F 19173077
67, 1 67 klgvd VYSVSTDTHFTH kawhs 78 1.00 F 20151112
70, 1 72 drdaq ILGFSGDSEFVH hawrk 83 1.00 F 21223405
72, 1 78 keegi VLTISADLPFAQ krwca 89 0.99 F 21283385
73, 1 65 srgit VIGISGDSPESH kqfae 76 1.00 F 21674812
81, 1 68 krnvk LIALSIDSVEDH lawsk 79 1.00 F 3318841
85, 1 50 eince VIGVSVDSVYCH qawce 61 1.00 F 4433065
86, 1 74 kgide IICFSVNDPFVM kawgk 85 0.43 F 4704732
87, 1 68 klnck LIGFSCNSKESH dqwie 79 0.56 F 4996210
92, 1 68 klgve VLSVSVDSVFVH kmwnd 79 1.00 F 6850955
95, 1 71 klgce VLGVSVDSQFTH lawin 82 1.00 F 9955016
***** **** *
Column 1 : Sequence Number, Site Number
Column 2 : Left End Location
Column 4 : Motif Element
Column 5 : Right End Location
Column 6 : Probability of Element
Column 7 : Forward Motif (F) or Reverse Complement (R)
Column 8 : Sequence Description from Fast A input
Log Motif portion of MAP for motif a = -469.15170
Log Fragmentation portion of MAP for motif a = -3.80666
-------------------------------------------------------------------------
MOTIF b
Motif model (residue frequency x 100)
____________________________________________
Pos. # a v c d e f g h i w k l m n y p q r s t Info
_____________________________________________________________________________________________
1 | 50 . . . . . . . 16 . . . . . . . . . 33 . 1.9
2 | . . . . . 16 . . . . . 50 . . . . 33 . . . 2.1
3 | . . . . . . . . . . . . . . 33 . 66 . . . 3.4
4 | . 33 . . . 16 . . . . . 33 . . 16 . . . . . 1.7
6 | 33 . . 16 33 . . . . . . . . 16 . . . . . . 1.5
8 | . . . . . . . 50 . . 16 . . . . 33 . . . . 3.2
9 | . . . . . . 66 . . . . . . . . 16 . 16 . . 2.3
10 | . 33 . 16 33 . . . . . . . . . 16 . . . . . 1.7
11 | 50 50 . . . . . . . . . . . . . . . . . . 2.1
12 | . . 66 . . . . . . . . . . . . . . . . 33 4.4
13 | . . . . . . . . . . . . . . . 100 . . . . 3.8
14 | 50 50 . . . . . . . . . . . . . . . . . . 2.1
16 | . . . . . . . . . 100 . . . . . . . . . . 5.8
17 | . . . . 16 . . . . . 66 . . 16 . . . . . . 2.1
19 | . . . . . . 100 . . . . . . . . . . . . . 3.2
nonsite 8 7 . 6 7 4 7 1 6 . 7 9 2 4 2 4 3 4 5 5
site 12 11 4 2 5 2 11 3 1 6 5 5 . 2 4 10 6 1 2 2
Motif probability model
____________________________________________
Pos. # a v c d e f g h i w k l m n y p q r s t
____________________________________________
1 | 0.468 0.006 0.001 0.005 0.005 0.004 0.005 0.001 0.158 0.001 0.006 0.007 0.002 0.003 0.002 0.004 0.002 0.003 0.312 0.004
2 | 0.006 0.006 0.001 0.005 0.005 0.158 0.005 0.001 0.004 0.001 0.006 0.469 0.002 0.003 0.002 0.004 0.310 0.003 0.004 0.004
3 | 0.006 0.006 0.001 0.005 0.005 0.004 0.005 0.001 0.004 0.001 0.006 0.007 0.002 0.003 0.310 0.004 0.618 0.003 0.004 0.004
4 | 0.006 0.314 0.001 0.005 0.005 0.158 0.005 0.001 0.004 0.001 0.006 0.315 0.002 0.003 0.156 0.004 0.002 0.003 0.004 0.004
6 | 0.314 0.006 0.001 0.159 0.313 0.004 0.005 0.001 0.004 0.001 0.006 0.007 0.002 0.157 0.002 0.004 0.002 0.003 0.004 0.004
8 | 0.006 0.006 0.001 0.005 0.005 0.004 0.005 0.463 0.004 0.001 0.159 0.007 0.002 0.003 0.002 0.312 0.002 0.003 0.004 0.004
9 | 0.006 0.006 0.001 0.005 0.005 0.004 0.621 0.001 0.004 0.001 0.006 0.007 0.002 0.003 0.002 0.158 0.002 0.157 0.004 0.004
10 | 0.006 0.314 0.001 0.159 0.313 0.004 0.005 0.001 0.004 0.001 0.006 0.007 0.002 0.003 0.156 0.004 0.002 0.003 0.004 0.004
11 | 0.468 0.468 0.001 0.005 0.005 0.004 0.005 0.001 0.004 0.001 0.006 0.007 0.002 0.003 0.002 0.004 0.002 0.003 0.004 0.004
12 | 0.006 0.006 0.617 0.005 0.005 0.004 0.005 0.001 0.004 0.001 0.006 0.007 0.002 0.003 0.002 0.004 0.002 0.003 0.004 0.312
13 | 0.006 0.006 0.001 0.005 0.005 0.004 0.005 0.001 0.004 0.001 0.006 0.007 0.002 0.003 0.002 0.927 0.002 0.003 0.004 0.004
14 | 0.468 0.468 0.001 0.005 0.005 0.004 0.005 0.001 0.004 0.001 0.006 0.007 0.002 0.003 0.002 0.004 0.002 0.003 0.004 0.004
16 | 0.006 0.006 0.001 0.005 0.005 0.004 0.005 0.001 0.004 0.924 0.006 0.007 0.002 0.003 0.002 0.004 0.002 0.003 0.004 0.004
17 | 0.006 0.006 0.001 0.005 0.159 0.004 0.005 0.001 0.004 0.001 0.621 0.007 0.002 0.157 0.002 0.004 0.002 0.003 0.004 0.004
19 | 0.006 0.006 0.001 0.005 0.005 0.004 0.928 0.001 0.004 0.001 0.006 0.007 0.002 0.003 0.002 0.004 0.002 0.003 0.004 0.004
Background probability model
0.089 0.079 0.008 0.067 0.076 0.044 0.071 0.013 0.061 0.009 0.076 0.094 0.023 0.043 0.027 0.045 0.034 0.044 0.052 0.052
15 columns
Num Motifs: 6
2, 1 161 riles IQYVKENPGYACPVNWNFG dqvfy 179 1.00 F 11467494
47, 1 160 lrmvd ALQFHEEHGDVCPAQWEKG kegmn 178 1.00 F 16501671
67, 1 154 rkika AQYVAAHPGEVCPAKWKEG eatla 172 1.00 F 20151112
81, 1 166 lrvvi SLQLTAEKRVATPVDWKDG dsvmv 184 1.00 F 3318841
87, 1 163 lrvlk SLQLTNTHPVATPVNWKEG dkcci 181 1.00 F 4996210
95, 1 160 lrlvq AFQYTDEHGEVCPAGWKPG sdtik 178 1.00 F 9955016
**** * ******* ** *
Column 1 : Sequence Number, Site Number
Column 2 : Left End Location
Column 4 : Motif Element
Column 5 : Right End Location
Column 6 : Probability of Element
Column 7 : Forward Motif (F) or Reverse Complement (R)
Column 8 : Sequence Description from Fast A input
Log Motif portion of MAP for motif b = -187.76179
Log Fragmentation portion of MAP for motif b = -7.77486
-------------------------------------------------------------------------
MOTIF c
Motif model (residue frequency x 100)
____________________________________________
Pos. # a v c d e f g h i w k l m n y p q r s t Info
_____________________________________________________________________________________________
1 | . . . 5 3 . 5 . . . 53 3 . . . 3 11 7 1 3 1.6
3 | . 61 . . . . . . 22 . . 7 3 . . . . . 1 3 2.1
4 | . 38 . . . 3 3 . 11 . . 40 1 . . . . . . . 1.7
5 | 5 35 . . . . . . 24 . 1 31 1 . . . . . . . 1.7
6 | . . . 48 . . . 1 . . . . . 37 11 . 1 . . . 2.7
7 | 1 7 . . . 85 . . . . . 3 . . 1 . . . . . 3.4
8 | . . . . . 5 3 1 . 55 . . . . 18 . . . 9 5 3.5
9 | 87 . . . . 1 5 . . . . . . . . . . . 3 1 2.8
10 | 3 . . 14 9 . . 1 . . . . . 1 . 16 5 . 20 25 1.5
11 | . . . . . . 1 . . 90 . 1 . . 1 . . . 1 1 5.2
12 | . . 100 . . . . . . . . . . . . . . . . . 6.0
13 | 9 7 . . 1 . 53 . . . 1 . 1 . . 24 . . . . 2.0
14 | . 7 . 1 . . 1 . . . . 1 . . 1 83 . . 1 . 3.2
15 | . . 100 . . . . . . . . . . . . . . . . . 6.0
16 | . 5 . 1 1 . . 3 1 . 27 1 . . . . 9 46 . . 2.1
18 | . 3 . . 37 12 . . 18 . . 16 3 . . . 3 . . 3 1.4
20 | . . . 1 . . . . . . 3 . . . . 94 . . . . 3.9
22 | . 7 . . . 22 . . 9 . . 44 11 . 5 . . . . . 1.8
24 | 7 . . 3 37 . . 3 . . 27 1 . 1 . . 11 1 1 1 1.4
25 | 3 18 . 1 . 9 . . 7 . . 51 1 . . . . . 1 3 1.4
nonsite 8 7 1 6 7 4 6 1 5 1 7 9 2 4 2 4 3 4 4 4
site 5 9 10 3 4 7 3 . 4 7 5 10 1 2 2 11 2 2 2 2
Motif probability model
____________________________________________
Pos. # a v c d e f g h i w k l m n y p q r s t
____________________________________________
1 | 0.001 0.001 0.000 0.056 0.037 0.000 0.056 0.000 0.001 0.000 0.533 0.038 0.000 0.000 0.000 0.037 0.110 0.074 0.019 0.037
3 | 0.001 0.606 0.000 0.001 0.001 0.000 0.001 0.000 0.221 0.000 0.001 0.074 0.037 0.000 0.000 0.000 0.000 0.000 0.019 0.037
4 | 0.001 0.386 0.000 0.001 0.001 0.037 0.037 0.000 0.111 0.000 0.001 0.405 0.019 0.000 0.000 0.000 0.000 0.000 0.000 0.000
5 | 0.056 0.349 0.000 0.001 0.001 0.000 0.001 0.000 0.239 0.000 0.019 0.313 0.019 0.000 0.000 0.000 0.000 0.000 0.000 0.000
6 | 0.001 0.001 0.000 0.478 0.001 0.000 0.001 0.018 0.001 0.000 0.001 0.001 0.000 0.367 0.110 0.000 0.019 0.000 0.000 0.000
7 | 0.019 0.074 0.000 0.001 0.001 0.845 0.001 0.000 0.001 0.000 0.001 0.038 0.000 0.000 0.019 0.000 0.000 0.000 0.000 0.000
8 | 0.001 0.001 0.000 0.001 0.001 0.056 0.037 0.018 0.001 0.551 0.001 0.001 0.000 0.000 0.184 0.000 0.000 0.000 0.092 0.056
9 | 0.863 0.001 0.000 0.001 0.001 0.019 0.056 0.000 0.001 0.000 0.001 0.001 0.000 0.000 0.000 0.000 0.000 0.000 0.037 0.019
10 | 0.037 0.001 0.000 0.147 0.092 0.000 0.001 0.018 0.001 0.000 0.001 0.001 0.000 0.019 0.000 0.166 0.055 0.000 0.202 0.257
11 | 0.001 0.001 0.000 0.001 0.001 0.000 0.019 0.000 0.001 0.899 0.001 0.019 0.000 0.000 0.019 0.000 0.000 0.000 0.019 0.019
12 | 0.001 0.001 0.991 0.001 0.001 0.000 0.001 0.000 0.001 0.000 0.001 0.001 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
13 | 0.093 0.074 0.000 0.001 0.019 0.000 0.533 0.000 0.001 0.000 0.019 0.001 0.019 0.000 0.000 0.239 0.000 0.000 0.000 0.000
14 | 0.001 0.074 0.000 0.019 0.001 0.000 0.019 0.000 0.001 0.000 0.001 0.019 0.000 0.000 0.019 0.826 0.000 0.000 0.019 0.000
15 | 0.001 0.001 0.991 0.001 0.001 0.000 0.001 0.000 0.001 0.000 0.001 0.001 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
16 | 0.001 0.056 0.000 0.019 0.019 0.000 0.001 0.037 0.019 0.000 0.276 0.019 0.000 0.000 0.000 0.000 0.092 0.459 0.000 0.000
18 | 0.001 0.037 0.000 0.001 0.368 0.129 0.001 0.000 0.184 0.000 0.001 0.166 0.037 0.000 0.000 0.000 0.037 0.000 0.000 0.037
20 | 0.001 0.001 0.000 0.019 0.001 0.000 0.001 0.000 0.001 0.000 0.037 0.001 0.000 0.000 0.000 0.936 0.000 0.000 0.000 0.000
22 | 0.001 0.074 0.000 0.001 0.001 0.221 0.001 0.000 0.092 0.000 0.001 0.441 0.110 0.000 0.055 0.000 0.000 0.000 0.000 0.000
24 | 0.074 0.001 0.000 0.037 0.368 0.000 0.001 0.037 0.001 0.000 0.276 0.019 0.000 0.019 0.000 0.000 0.110 0.019 0.019 0.019
25 | 0.037 0.184 0.000 0.019 0.001 0.092 0.001 0.000 0.074 0.000 0.001 0.515 0.019 0.000 0.000 0.000 0.000 0.000 0.019 0.037
Background probability model
0.089 0.079 0.008 0.067 0.076 0.044 0.071 0.013 0.061 0.009 0.076 0.094 0.023 0.043 0.027 0.045 0.034 0.044 0.052 0.052
20 columns
Num Motifs: 54
3, 1 17 viqsd KLVVVDFYADWCMPCRYISPILEKL skeyn 41 1.00 F 11499727
4, 1 22 llntt QYVVADFYADWCGPCKAIAPMYAQF aktfs 46 1.00 F 1174686
5, 1 19 ifsak KNVIVDFWAAWCGPCKLTSPEFQKA adefs 43 1.00 F 12044976
7, 1 21 kenhs KPILIDFYADWCPPCRMLIPVLDSI ekkhg 45 1.00 F 13358154
10, 1 17 aetse GVVLADFWAPWCGPCKMIAPVLEEL dqemg 41 1.00 F 135765
11, 1 29 akesn KLIVIDFTASWCPPCRMIAPIFNDL akkfm 53 1.00 F 1388082
12, 1 44 likqn DKLVIDFYATWCGPCKMMQPHLTKL iqayp 68 1.00 F 140543
14, 1 80 selrg KVVMLQFTASWCGVCRKEMPFIEKD iwlkh 104 1.00 F 14578634
16, 1 23 lqnsd KPVLVDFYATWCGPCQLMVPILNEV setlk 47 1.00 F 15218394
17, 1 157 adfrg RPLVINLWASWCPPCRREMPVLQQA qaenp 181 1.00 F 15597673
18, 1 26 ensfh KPVLVDFWADWCAPCKALMPLLAQI aesyq 50 1.00 F 15599256
19, 1 67 negkg KTILLNFWSETCGVCIAELKTFEQL lqsyp 91 1.00 F 15602312
20, 1 61 eefkg KVLLINFWATWCPPCKEEIPMFKEI yekyr 85 1.00 F 15605725
25, 1 60 sdyrg DVVILNVWASWCEPCRKEMPALMEL qsdye 84 1.00 F 15614085
26, 1 63 releg KGVFLNFWGTYCPPCEREMPHMEKL ygeyk 87 1.00 F 15614140
27, 1 72 sslrg QPVILHFFATWCPVCQDEMPSLVKL dkeyr 96 1.00 F 15615431
31, 1 2 m TVTLKDFYADWCGPCKTQDPILEEL eadyd 26 1.00 F 15791337
33, 1 72 adyrg RPVVLNFWASWCGPCREEAPLFAKL aahpg 96 1.00 F 15805225
34, 1 78 taaqg KPVVINFWASWCVPCRQEAPLFSKL sqeta 102 1.00 F 15805374
37, 1 49 fitkn KIVVVDFWAEWCAPCLILAPVIEEL andyp 73 1.00 F 15899007
40, 1 61 easrq QPVLVDFWAPWCGPCKQLTPVIEKV vreaa 85 1.00 F 15966937
41, 1 61 sdfrg KTLLVNLWATWCVPCRKEMPALDEL qgkls 85 1.00 F 15988313
42, 1 60 qdakg KKVLLNFWATWCKPCRQEMPAMEKL qkeya 84 1.00 F 16078864
43, 1 53 llqdd LPMVIDFWAPWCGPCRSFAPIFAET aaera 77 1.00 F 16123427
46, 1 21 vlkad GAILVDFWAEWCGPCKMIAPILDEI adeyq 45 1.00 F 1633495
48, 1 34 vlqcp KPILVYFGAPWCGLCHFVKPLLNHL hgewq 58 1.00 F 1651717
49, 1 60 tlsee RPVLLYFWASWCGVCRFTTPAVAHL aaege 84 1.00 F 16759994
50, 1 53 llkdd LPVVIDFWAPWCGPCRNFAPIFEDV aeers 77 1.00 F 16761507
52, 1 19 iissh PKILLNFWAEWCAPCRCFWPTLEQF aemee 43 1.00 F 16804867
54, 1 22 vlsed KVVVVDFTATWCGPCRLVSPLMDQL adeyk 46 1.00 F 17229859
55, 1 18 vlegt GYVLVDYFSDGCVPCKALMPAVEEL skkye 42 1.00 F 1729944
56, 1 28 rqhpe KIIILDFYATWCGPCKAIAPLYKEL atthk 52 1.00 F 17531233
57, 1 27 ehlkg KIIGLYFSASWCPPCRAFTPKLKEF feeik 51 1.00 F 17537401
58, 1 63 safrg QPVVINFWAPWCGPCVEEMPELSAL aqeqk 87 1.00 F 17547503
59, 1 286 seykg KTIFLNFWATWCPPCRGEMPYIDEL ykeyn 310 1.00 F 18309723
61, 1 44 dsllg KKIGLYFSAAWCGPCQRFTPQLVEV ynels 68 1.00 F 18406743
61, 2 364 sdlvg KTILMYFSAHWCPPCRAFTPKLVEV ykqik 388 1.00 F 18406743
63, 1 15 sdfeg EVVVLNAWGQWCAPCRAEVDDLQLV qetld 39 1.00 F 19554157
64, 1 39 eeykg KVVVINFWATWCGYCVEEMPGFEKV ykefg 63 1.00 F 19705357
66, 1 7 agdfm KPMLLDFSATWCGPCRMQKPILEEL ekkyg 31 1.00 F 20092028
69, 1 103 adykg KVVVLNVWGSWCPPCRAEAKNFEKV yqdvk 127 1.00 F 21222859
74, 1 53 sdfkg ERVLINFWTTWCPPCRQEMPDMQRF yqdlq 77 1.00 F 23098307
76, 1 20 kylqh QRVVVDFSAEWCGPCRAIAPVFDKL sneft 44 1.00 F 267116
77, 1 81 aafkg KVSLVNVWASWCVPCHDEAPLLTEL gkdkr 105 1.00 F 27375582
78, 1 34 vtsdn DVVLADFYADWCGPCQMLEPVVETL aeqtd 58 1.00 F 2822332
79, 1 77 sdlkg KKVILNFWATWCGPCQQEMPDMEAF ykehk 101 1.00 F 30021713
80, 1 19 tisan SNVLVYFWAPLCAPCDLFTPTYEAS srkhf 43 1.00 F 3261501
82, 1 19 tietn PLVIVDFWAPWCGSCKMLGPVLEEV esevg 43 1.00 F 3323237
83, 1 17 ektah QAVVVNVGASWCPDCRKIEPIMENL aktyk 41 1.00 F 4155972
84, 1 79 vvnse TPVVVDFHAQWCGPCKILGPRLEKM vakqh 103 1.00 F 4200327
91, 1 20 nenkg RLIVVDFFAQWCGPCRNIAPKVEAL akeip 44 1.00 F 6687568
93, 1 18 llttn KKVVVDFYANWCGPCKILGPIFEEV aqdkk 42 1.00 F 7109697
94, 1 21 ilaed KLVVIDFYADWCGPCKIIAPKLDEL aqqys 45 1.00 F 7290567
96, 1 49 adlqg KVTLINFWFPSCPGCVSEMPKIIKT andyk 73 1.00 F 15677788
* ************** * * * **
Column 1 : Sequence Number, Site Number
Column 2 : Left End Location
Column 4 : Motif Element
Column 5 : Right End Location
Column 6 : Probability of Element
Column 7 : Forward Motif (F) or Reverse Complement (R)
Column 8 : Sequence Description from Fast A input
Log Motif portion of MAP for motif c = -1607.59351
Log Fragmentation portion of MAP for motif c = -10.42374
-------------------------------------------------------------------------
MOTIF d
Motif model (residue frequency x 100)
____________________________________________
Pos. # a v c d e f g h i w k l m n y p q r s t Info
_____________________________________________________________________________________________
1 | 2 . . 28 17 2 . 2 8 . . 17 . . 11 . . . 2 5 1.1
2 | 5 2 . . 5 34 . . . . 2 14 . . 17 . . 8 2 5 1.4
3 | 8 . . 5 11 . 14 . 2 . 28 . . 5 2 . . 17 . 2 1.0
4 | 2 . . 11 . . 62 . . . 5 . . 11 . . 2 . 2 . 2.1
5 | . . . . . . 2 . . . 57 . . 5 . . 5 22 5 . 2.2
7 | 2 68 . . . 2 5 . 2 . 2 . . 2 . . . . 2 8 1.9
8 | 2 62 . . . . . . 25 . . 8 . . . . . . . . 2.3
9 | . 8 . . . 8 . . 5 . . 77 . . . . . . . . 2.3
10 | 8 8 . . . 57 . . 2 . . 5 . . 11 . . . 2 2 2.1
11 | 14 2 . . . 62 8 . . . . . . . . . . . 11 . 2.4
12 | 2 11 . . . 14 . 11 2 5 . 5 . . 45 . . . . . 2.4
13 | . . . . . . . . . . . . . . . 100 . . . . 4.3
14 | 22 . . . . 2 28 2 . . 8 17 5 . 2 . . 8 . . 1.2
15 | 51 . . 42 . . . . . . . . . 2 . . . . 2 . 2.3
16 | . . . 2 . 71 2 . . 5 . . 5 . 5 . . . 5 . 2.9
17 | . . . . . . . . . . . . . . . . . . 11 88 3.6
18 | 5 . . . . 25 2 . . . . . . . . 51 2 . 11 . 2.4
19 | . 54 . . . . 20 . 8 . . . . . . . . . . 17 2.0
20 | . . 97 . . . . . . . . . . . . . . . 2 . 6.2
21 | 5 . . . . . . . . . . . . . . 28 2 . 20 42 2.3
22 | 14 2 . . . . 2 . . . 14 5 5 . . . 2 8 5 37 1.3
23 | . . . . 62 . . . . . 2 . . 8 . . 14 . 5 5 2.2
24 | 14 2 . . . 2 2 22 11 . . 31 11 . . . . . . . 1.8
27 | 2 2 . . 2 45 17 . 8 . . 8 . . 8 2 . . . . 1.6
28 | 11 . . 2 2 8 5 . . . . . . 2 14 . 5 22 22 . 1.4
nonsite 8 7 . 6 7 4 7 1 5 . 7 9 2 4 2 4 3 4 5 5
site 7 9 3 3 4 13 7 1 3 . 4 7 1 1 4 7 1 3 4 8
Motif probability model
____________________________________________
Pos. # a v c d e f g h i w k l m n y p q r s t
____________________________________________
1 | 0.029 0.001 0.000 0.283 0.170 0.029 0.001 0.028 0.085 0.000 0.001 0.170 0.000 0.001 0.113 0.001 0.000 0.001 0.029 0.057
2 | 0.058 0.029 0.000 0.001 0.057 0.339 0.001 0.000 0.001 0.000 0.029 0.142 0.000 0.001 0.169 0.001 0.000 0.085 0.029 0.057
3 | 0.086 0.001 0.000 0.057 0.114 0.001 0.142 0.000 0.029 0.000 0.283 0.001 0.000 0.057 0.029 0.001 0.000 0.170 0.001 0.029
4 | 0.029 0.001 0.000 0.114 0.001 0.001 0.621 0.000 0.001 0.000 0.057 0.001 0.000 0.113 0.000 0.001 0.029 0.001 0.029 0.001
5 | 0.001 0.001 0.000 0.001 0.001 0.001 0.029 0.000 0.001 0.000 0.564 0.001 0.000 0.057 0.000 0.001 0.057 0.226 0.057 0.001
7 | 0.029 0.677 0.000 0.001 0.001 0.029 0.057 0.000 0.029 0.000 0.029 0.001 0.000 0.029 0.000 0.001 0.000 0.001 0.029 0.085
8 | 0.029 0.621 0.000 0.001 0.001 0.001 0.001 0.000 0.254 0.000 0.001 0.086 0.000 0.001 0.000 0.001 0.000 0.001 0.001 0.001
9 | 0.001 0.086 0.000 0.001 0.001 0.085 0.001 0.000 0.057 0.000 0.001 0.762 0.000 0.001 0.000 0.001 0.000 0.001 0.001 0.001
10 | 0.086 0.086 0.000 0.001 0.001 0.564 0.001 0.000 0.029 0.000 0.001 0.058 0.000 0.001 0.113 0.001 0.000 0.001 0.029 0.029
11 | 0.142 0.029 0.000 0.001 0.001 0.620 0.085 0.000 0.001 0.000 0.001 0.001 0.000 0.001 0.000 0.001 0.000 0.001 0.113 0.001
12 | 0.029 0.114 0.000 0.001 0.001 0.142 0.001 0.113 0.029 0.057 0.001 0.058 0.000 0.001 0.451 0.001 0.000 0.001 0.001 0.001
13 | 0.001 0.001 0.000 0.001 0.001 0.001 0.001 0.000 0.001 0.000 0.001 0.001 0.000 0.001 0.000 0.987 0.000 0.001 0.001 0.001
14 | 0.227 0.001 0.000 0.001 0.001 0.029 0.283 0.028 0.001 0.000 0.086 0.170 0.057 0.001 0.029 0.001 0.000 0.085 0.001 0.001
15 | 0.508 0.001 0.000 0.423 0.001 0.001 0.001 0.000 0.001 0.000 0.001 0.001 0.000 0.029 0.000 0.001 0.000 0.001 0.029 0.001
16 | 0.001 0.001 0.000 0.029 0.001 0.705 0.029 0.000 0.001 0.057 0.001 0.001 0.057 0.001 0.057 0.001 0.000 0.001 0.057 0.001
17 | 0.001 0.001 0.000 0.001 0.001 0.001 0.001 0.000 0.001 0.000 0.001 0.001 0.000 0.001 0.000 0.001 0.000 0.001 0.113 0.874
18 | 0.058 0.001 0.000 0.001 0.001 0.254 0.029 0.000 0.001 0.000 0.001 0.001 0.000 0.001 0.000 0.508 0.029 0.001 0.113 0.001
19 | 0.001 0.536 0.000 0.001 0.001 0.001 0.198 0.000 0.085 0.000 0.001 0.001 0.000 0.001 0.000 0.001 0.000 0.001 0.001 0.170
20 | 0.001 0.001 0.958 0.001 0.001 0.001 0.001 0.000 0.001 0.000 0.001 0.001 0.000 0.001 0.000 0.001 0.000 0.001 0.029 0.001
21 | 0.058 0.001 0.000 0.001 0.001 0.001 0.001 0.000 0.001 0.000 0.001 0.001 0.000 0.001 0.000 0.282 0.029 0.001 0.198 0.423
22 | 0.142 0.029 0.000 0.001 0.001 0.001 0.029 0.000 0.001 0.000 0.142 0.058 0.057 0.001 0.000 0.001 0.029 0.085 0.057 0.367
23 | 0.001 0.001 0.000 0.001 0.621 0.001 0.001 0.000 0.001 0.000 0.029 0.001 0.000 0.085 0.000 0.001 0.141 0.001 0.057 0.057
24 | 0.142 0.029 0.000 0.001 0.001 0.029 0.029 0.226 0.113 0.000 0.001 0.311 0.113 0.001 0.000 0.001 0.000 0.001 0.001 0.001
27 | 0.029 0.029 0.000 0.001 0.029 0.451 0.170 0.000 0.085 0.000 0.001 0.086 0.000 0.001 0.085 0.029 0.000 0.001 0.001 0.001
28 | 0.114 0.001 0.000 0.029 0.029 0.085 0.057 0.000 0.001 0.000 0.001 0.001 0.000 0.029 0.141 0.001 0.057 0.226 0.226 0.001
Background probability model
0.089 0.079 0.008 0.067 0.076 0.044 0.071 0.013 0.061 0.009 0.076 0.094 0.023 0.043 0.027 0.045 0.034 0.044 0.052 0.052
25 columns
Num Motifs: 35
1, 1 37 ldfdk EFRDKTVVIVAIPGAFTPTCTANHIPPF vekft 64 1.00 F 1091044
2, 1 32 irlsd YRGKKYVILFFYPANFTAISPTELMLLS drise 59 1.00 F 11467494
6, 1 26 eikei DLKSNWNVFFFYPYSYSFICPLELKNIS nkike 53 0.98 F 13186328
8, 1 28 kirls SYRGKWVVLFFYPADFTFVCPTEVEGFA edyek 55 1.00 F 13541053
9, 1 26 mrkls EFRGQNVVLAFFPGAFTSVCTKEMCTFR dsman 53 1.00 F 13541117
13, 1 25 melpd EFEGKWFILFSHPADFTPVCTTEFVAFQ evype 52 1.00 F 14286173
15, 1 25 kirls DFRGRIVVLYFYPRAMTPGCTREGVRFN ellde 52 1.00 F 14600438
22, 1 26 vtlrg YRGAKNVLLVFFPLAFTGICQGELDQLR dhlpe 53 1.00 F 15609375
23, 1 30 nvsla DYRGRRVIVYFYPAASTPGCTKQACDFR dnlgd 57 1.00 F 15609658
24, 1 24 tvsls DFKGKNIVLYFYPKDMTPGCTTEACDFR drved 51 1.00 F 15613511
28, 1 20 tfthv DLYGKYTILFFFPKAGTSGCTREAVEFS renfe 47 1.00 F 15643152
30, 1 61 gltda LADNRAVVLFFYPFDFSPVCATELCAIQ narwf 88 1.00 F 15790738
35, 1 26 itlss YRGQSHVVLVFYPLDFSPVCSMQLPEYS gsqdd 53 1.00 F 15807234
36, 1 28 vnlae LFKGKKGVLFGVPGAFTPGCSKTHLPGF veqae 55 1.00 F 15826629
38, 1 26 vkips DFKGKVVVLAFYPAAFTSVCTKEMCTFR dsmak 53 1.00 F 15899339
39, 1 30 vttel LFKGKRVVLFAVPGAFTPTCSLNHLPGY lenrd 57 1.00 F 15964668
44, 1 50 fnlak ALKKGPVVLYFFPAAYTAGCTAEAREFA eatpe 77 1.00 F 16125919
47, 1 31 fnfkq HTNGKTTVLFFWPMDFTFVCPSELIAFD kryee 58 1.00 F 16501671
51, 1 33 slekn IEDDKWTILFFYPMDFTFVCPTEIVAIS arsde 60 1.00 F 16803644
53, 1 31 vttdd LFAGKTVAVFSLPGAFTPTCSSTHLPGY nelak 58 1.00 F 17229033
60, 1 28 rlsev LKRGRPVVLLFFPGAFTSVCTKELCTFR dkmal 55 1.00 F 18313548
62, 1 26 eislq DYIGKYVVLAFYPLDFTFVCPTEINRFS dlkga 53 1.00 F 19173077
67, 1 27 evtek DTEGRWSVFFFYPADFTFVCPTELGDVA dhyee 54 1.00 F 20151112
68, 1 29 vdtht LFTGRKVVLFAVPGAFTPTCSAKHLPGY veqfe 56 1.00 F 21112072
70, 1 32 qinhk TYEGQWKVVFAWPKDFTFVCPTEIAAFG klnde 59 1.00 F 21223405
71, 1 28 eihly DLKGKKVLLSFHPLAWTQVCAQQMKSLE enyel 55 1.00 F 21227878
73, 1 25 mvsls EFKGRKVLLIFYPGDDTPVCTAQLCDYR nnvaa 52 1.00 F 21674812
81, 1 28 irfhd FLGDSWGILFSHPRDFTPVCTTELGRAA klape 55 1.00 F 3318841
85, 1 10 eidin EYKGKYVVLLFYPLDWTFVCPTEMIGYS evagq 37 1.00 F 4433065
86, 1 32 vsvhs IAAGKKVILFGVPGAFTPTCSMSHVPGF igkae 59 1.00 F 4704732
87, 1 28 fdfyk YVGDNWAILFSHPHDFTPVCTTELAEFG kmhee 55 1.00 F 4996210
88, 1 41 ynask EFANKKVVLFALPGAFTPVCSANHVPEY iqklp 68 1.00 F 5326864
89, 1 88 slkki TENNRVVVFFVYPRASTPGCTRQACGFR dnyqe 115 1.00 F 6322180
90, 1 43 ewskl ISENKKVIITGAPAAFSPTCTVSHIPGY inyld 70 0.99 F 6323138
95, 1 31 evkls DYKGKYVVLFFYPLDFTFVCPTEIIAFS nraed 58 1.00 F 9955016
***** ****************** **
Column 1 : Sequence Number, Site Number
Column 2 : Left End Location
Column 4 : Motif Element
Column 5 : Right End Location
Column 6 : Probability of Element
Column 7 : Forward Motif (F) or Reverse Complement (R)
Column 8 : Sequence Description from Fast A input
Log Motif portion of MAP for motif d = -1668.31468
Log Fragmentation portion of MAP for motif d = -7.86327
Log Background portion of Map = -39912.17887
Log Alignment portion of Map = -956.36102
Log Site/seq portion of Map = 0.00000
Log Null Map = -46943.36311
Log Map = 2112.13301
log MAP = sum of motif and fragmentation parts of MAP + background + alignment + sites/seq - Null
Frequency Map = 2109.909622
Nearopt Map = 2111.157969
Maximal Map = 2111.157969
Total Time 105 sec (1.750000 min)
Elapsed time: 104.960000 secs
DOF[0] = 190
DOF[1] = 285
DOF[2] = 380
DOF[3] = 475
"""
#run if called from command-line
if __name__ == "__main__":
main()
|