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
|
HTTP/1.1 200 OK
Date: Fri, 18 Feb 2005 04:03:17 GMT
Server: Apache/1.3.27 (Unix) mod_fastcgi/2.4.0
Content-Type: text/html
Via: 1.1 www.ncbi.nih.gov
X-Cache: MISS from www.ncbi.nih.gov
Connection: close
<HTML>
<HEAD>
</HEAD>
<BODY BGCOLOR="#FFFFFF" LINK="#0000FF" VLINK="#660099" ALINK="#660099">
<IMG SRC="images/head_results.gif" ALT="Header of the page" BORDER="0"NAME="BlastHeaderGif" WIDTH="600" HEIGHT="45" ALIGN="middle">
<form action="Blast.cgi" enctype="application/x-www-form-urlencoded" method="POST"><input name="RID" type="hidden" value="1108699388-15307-155416144800.BLASTQ2"><input name="_PGR" type="hidden" value="0"><input name="_PGR" type="hidden" value="0"><input name="CMD" type="hidden" value="Get"></form>
<form action="Blast.cgi" enctype="application/x-www-form-urlencoded" method="POST" TARGET=""><input name="RID" type="hidden" value="1108699388-15307-155416144800.BLASTQ2"><input name="_PGR" type="hidden" value="0"><input name="CMD" type="hidden" value="Get"><p><!--
QBlastInfoBegin
Status=READY
QBlastInfoEnd
--><p><TITLE> RID=1108699388-15307-155416144800.BLASTQ2, REC05270|O07943 </TITLE>
<b>BLASTP 2.2.10 [Oct-19-2004]</b>
<pre>
<b><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?db=PubMed&cmd=Retrieve&list_uids
=9254694&dopt=Citation">Reference</a>:</b>
Altschul, Stephen F., Thomas L. Madden, Alejandro A. Schäffer,
Jinghui Zhang, Zheng Zhang, Webb Miller, and David J. Lipman (1997),
"Gapped BLAST and PSI-BLAST: a new generation of protein database search
programs", Nucleic Acids Res. 25:3389-3402.
<p>
RID: 1108699388-15307-155416144800.BLASTQ2
<p>
<b>Query=</b> REC05270|O07943
(112 letters)
<p>
<b>Database:</b> All non-redundant GenBank CDS
translations+PDB+SwissProt+PIR+PRF excluding environmental samples
2,329,789 sequences; 790,010,076 total letters
<p> <p>If you have any problems or questions with the results of this search <br>please refer to the <b><a href=http://www.ncbi.nlm.nih.gov/blast/blast_FAQs.html>BLAST FAQs</a></b><br><p>
<a href="Blast.cgi?CMD=Get&RID=1108699388-15307-155416144800.BLASTQ2&FORMAT_OBJECT=TaxBlast" TARGET="Taxonomy BLAST Results for 1108699388-15307-155416144800.BLASTQ2">Taxonomy reports</a>
<BR>
<PRE>
Score E
Sequences producing significant alignments: (bits) Value
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=07465864&dopt=GenPept" >pir||A64976</a> galactitol utilization operon repressor - Esche... <a href = #7465864>220</a> 7e-57
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=24113466&dopt=GenPept" >ref|NP_707976.1|</a> galactitol utilization operon repressor [S... <a href = #24113466>197</a> 5e-50
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=30063529&dopt=GenPept" >ref|NP_837700.1|</a> galactitol utilization operon repressor [S... <a href = #30063529>197</a> 5e-50
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=26248463&dopt=GenPept" >ref|NP_754503.1|</a> hypothetical protein c2615 [Escherichia co... <a href = #26248463>197</a> 5e-50
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=13362362&dopt=GenPept" >dbj|BAB36316.1|</a> split galactitol utilization operon repress... <a href = #13362362>197</a> 5e-50
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=02506565&dopt=GenPept" >sp|P36930|GATR_ECOLI</a> Galactitol utilization operon repressor <a href = #2506565>197</a> 5e-50
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=29028388&dopt=GenPept" >gb|AAO64739.1|</a> GatR2 [Escherichia coli] <a href = #29028388>190</a> 1e-47
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=00508177&dopt=GenPept" >emb|CAA56232.1|</a> repressor of gat operon [Escherichia coli] <a href = #508177>132</a> 2e-30
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=01096952&dopt=GenPept" >prf||2113201G</a> carbohydrate phosphotransferase II <a href = #1096952>130</a> 1e-29
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=56415197&dopt=GenPept" >ref|YP_152272.1|</a> galactitol utilization operon repressor [S... <a href = #56415197>129</a> 2e-29
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=16421820&dopt=GenPept" >gb|AAL22134.1|</a> transcriptional regulator of sugar metabolis... <a href = #16421820>129</a> 2e-29
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=18139851&dopt=GenPept" >gb|AAL60174.1|</a> GatR [Klebsiella oxytoca] <a href = #18139851>127</a> 8e-29
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=53728549&dopt=GenPept" >ref|ZP_00132352.2|</a> COG1349: Transcriptional regulators of s... <a href = #53728549> 91</a> 6e-18
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=24114418&dopt=GenPept" >ref|NP_708928.1|</a> putative DEOR-type transcriptional regulat... <a href = #24114418> 70</a> 2e-11
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=26249713&dopt=GenPept" >ref|NP_755753.1|</a> Putative aga operon transcriptional repres... <a href = #26249713> 70</a> 2e-11
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=51891931&dopt=GenPept" >ref|YP_074622.1|</a> DeoR-family transcriptional regulator [Sym... <a href = #51891931> 68</a> 6e-11
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=14247969&dopt=GenPept" >dbj|BAB58358.1|</a> lactose phosphotransferase system repressor... <a href = #14247969> 67</a> 1e-10
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=49245428&dopt=GenPept" >emb|CAG43905.1|</a> lactose phosphotransferase system repressor... <a href = #49245428> 67</a> 1e-10
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=49484416&dopt=GenPept" >ref|YP_041640.1|</a> lactose phosphotransferase system represso... <a href = #49484416> 67</a> 1e-10
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=23097953&dopt=GenPept" >ref|NP_691419.1|</a> transcriptional regulator [Oceanobacillus ... <a href = #23097953> 66</a> 2e-10
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=29375315&dopt=GenPept" >ref|NP_814469.1|</a> transcriptional regulator, DeoR family [En... <a href = #29375315> 65</a> 6e-10
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=27468706&dopt=GenPept" >ref|NP_765343.1|</a> lactose phosphotransferase system represso... <a href = #27468706> 64</a> 8e-10
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=54301820&dopt=GenPept" >ref|YP_131813.1|</a> putative DeoR-family regulatory protein [P... <a href = #54301820> 64</a> 8e-10
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=52081860&dopt=GenPept" >ref|YP_080651.1|</a> probable transcriptional regulator YulB [B... <a href = #52081860> 64</a> 8e-10
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=33148904&dopt=GenPept" >gb|AAP96422.1|</a> glycerol-3-phosphate regulon repressor [Haem... <a href = #33148904> 64</a> 8e-10
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=21324701&dopt=GenPept" >dbj|BAB99324.1|</a> Transcriptional regulators of sugar metabol... <a href = #21324701> 63</a> 2e-09
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=23493665&dopt=GenPept" >dbj|BAC18634.1|</a> putative deoR-family transcriptional regula... <a href = #23493665> 63</a> 2e-09
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=13476015&dopt=GenPept" >ref|NP_107585.1|</a> transcriptional regulator [Mesorhizobium l... <a href = #13476015> 62</a> 3e-09
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=52009242&dopt=GenPept" >ref|ZP_00336606.1|</a> COG1349: Transcriptional regulators of s... <a href = #52009242> 62</a> 3e-09
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=51597389&dopt=GenPept" >ref|YP_071580.1|</a> DeoR-family regulatory protein [Yersinia p... <a href = #51597389> 62</a> 4e-09
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=38234012&dopt=GenPept" >ref|NP_939779.1|</a> Putative sugar related operon transcriptio... <a href = #38234012> 62</a> 4e-09
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=46143433&dopt=GenPept" >ref|ZP_00204470.1|</a> COG1349: Transcriptional regulators of s... <a href = #46143433> 62</a> 5e-09
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=16080173&dopt=GenPept" >ref|NP_390999.1|</a> hypothetical protein BSU31210 [Bacillus su... <a href = #16080173> 61</a> 7e-09
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=00322121&dopt=GenPept" >pir||B43258</a> regulatory protein lacR - Streptococcus mutans ... <a href = #322121> 61</a> 9e-09
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=19746617&dopt=GenPept" >ref|NP_607753.1|</a> putative lactose phosphotransferase system... <a href = #19746617> 61</a> 9e-09
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=28895290&dopt=GenPept" >ref|NP_801640.1|</a> putative lactose phosphotransferase system... <a href = #28895290> 61</a> 9e-09
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=24379890&dopt=GenPept" >ref|NP_721845.1|</a> lactose repressor [Streptococcus mutans UA... <a href = #24379890> 61</a> 9e-09
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=48824860&dopt=GenPept" >ref|ZP_00286189.1|</a> COG1349: Transcriptional regulators of s... <a href = #48824860> 60</a> 1e-08
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=50591941&dopt=GenPept" >ref|ZP_00333242.1|</a> COG1349: Transcriptional regulators of s... <a href = #50591941> 60</a> 1e-08
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=20808937&dopt=GenPept" >ref|NP_624108.1|</a> Transcriptional regulator of sugar metabol... <a href = #20808937> 60</a> 1e-08
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=28900158&dopt=GenPept" >ref|NP_799813.1|</a> putative regulatory protein [Vibrio paraha... <a href = #28900158> 60</a> 1e-08
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=59714189&dopt=GenPept" >ref|YP_206964.1|</a> transcriptional regulator, GlpR family [Vi... <a href = #59714189> 60</a> 1e-08
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=48824762&dopt=GenPept" >ref|ZP_00286100.1|</a> COG1349: Transcriptional regulators of s... <a href = #48824762> 60</a> 2e-08
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=29606990&dopt=GenPept" >dbj|BAC71050.1|</a> putative DeoR-family transcriptional regula... <a href = #29606990> 60</a> 2e-08
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=54310638&dopt=GenPept" >ref|YP_131658.1|</a> Putative transcriptional regulator, DeoR f... <a href = #54310638> 59</a> 3e-08
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=28855951&dopt=GenPept" >gb|AAO59009.1|</a> transcriptional regulator, DeoR family [Pseu... <a href = #28855951> 59</a> 3e-08
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=50954419&dopt=GenPept" >ref|YP_061707.1|</a> transcriptional regulator, DeoR family [Le... <a href = #50954419> 59</a> 3e-08
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=20520720&dopt=GenPept" >emb|CAD30910.1|</a> putative deoR-family transcriptional regula... <a href = #20520720> 59</a> 3e-08
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=09654914&dopt=GenPept" >gb|AAF93659.1|</a> transcriptional regulator, DeoR family [Vibr... <a href = #9654914> 59</a> 4e-08
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=15965980&dopt=GenPept" >ref|NP_386333.1|</a> PUTATIVE TRANSCRIPTION REGULATOR PROTEIN [... <a href = #15965980> 59</a> 4e-08
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=10957464&dopt=GenPept" >ref|NP_051611.1|</a> glycerol-3-phosphate regulon repressor [De... <a href = #10957464> 59</a> 4e-08
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=32030671&dopt=GenPept" >ref|ZP_00133471.1|</a> COG1349: Transcriptional regulators of s... <a href = #32030671> 59</a> 5e-08
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=37524831&dopt=GenPept" >ref|NP_928175.1|</a> Putative aga operon transcriptional repres... <a href = #37524831> 58</a> 6e-08
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=15896208&dopt=GenPept" >ref|NP_349557.1|</a> Lactose phosphotransferase system represso... <a href = #15896208> 58</a> 6e-08
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=48764928&dopt=GenPept" >ref|ZP_00269479.1|</a> COG1349: Transcriptional regulators of s... <a href = #48764928> 58</a> 8e-08
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=46205943&dopt=GenPept" >ref|ZP_00047886.2|</a> COG1349: Transcriptional regulators of s... <a href = #46205943> 58</a> 8e-08
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=26992085&dopt=GenPept" >ref|NP_747510.1|</a> transcriptional regulator, DeoR family [Ps... <a href = #26992085> 58</a> 8e-08
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=23469336&dopt=GenPept" >ref|ZP_00124670.1|</a> COG1349: Transcriptional regulators of s... <a href = #23469336> 58</a> 8e-08
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=48731314&dopt=GenPept" >ref|ZP_00265059.1|</a> COG1349: Transcriptional regulators of s... <a href = #48731314> 57</a> 1e-07
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=56965374&dopt=GenPept" >ref|YP_177106.1|</a> transcriptional regulator of sugar metabol... <a href = #56965374> 57</a> 1e-07
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=22959505&dopt=GenPept" >ref|ZP_00007156.1|</a> COG1349: Transcriptional regulators of s... <a href = #22959505> 57</a> 1e-07
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=47529135&dopt=GenPept" >ref|YP_020484.1|</a> transcriptional regulator, deor family [Ba... <a href = #47529135> 57</a> 1e-07
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=56415871&dopt=GenPept" >ref|YP_152946.1|</a> putative DeoR-family transcriptional regul... <a href = #56415871> 57</a> 1e-07
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=16799447&dopt=GenPept" >ref|NP_469715.1|</a> hypothetical protein lin0370 [Listeria inn... <a href = #16799447> 57</a> 1e-07
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=16802397&dopt=GenPept" >ref|NP_463882.1|</a> hypothetical protein lmo0352 [Listeria mon... <a href = #16802397> 57</a> 1e-07
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=25011962&dopt=GenPept" >ref|NP_736357.1|</a> hypothetical protein gbs1923 [Streptococcu... <a href = #25011962> 57</a> 1e-07
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=52141770&dopt=GenPept" >ref|YP_085060.1|</a> transcriptional regulator, DeoR family [Ba... <a href = #52141770> 57</a> 1e-07
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=46906592&dopt=GenPept" >ref|YP_012981.1|</a> transcriptional regulator, DeoR family [Li... <a href = #46906592> 57</a> 1e-07
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=05420006&dopt=GenPept" >emb|CAB46398.1|</a> putative transcriptional regulator [Strepto... <a href = #5420006> 57</a> 1e-07
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=30020891&dopt=GenPept" >ref|NP_832522.1|</a> Transcriptional regulator, DeoR family [Ba... <a href = #30020891> 57</a> 2e-07
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=27364100&dopt=GenPept" >ref|NP_759628.1|</a> Transcriptional regulator of sugar metabol... <a href = #27364100> 57</a> 2e-07
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=29143897&dopt=GenPept" >ref|NP_807239.1|</a> putative DeoR-family transcriptional regul... <a href = #29143897> 57</a> 2e-07
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=16078502&dopt=GenPept" >ref|NP_389321.1|</a> transcriptional regulator (DeoR family) [B... <a href = #16078502> 57</a> 2e-07
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=26250639&dopt=GenPept" >ref|NP_756679.1|</a> Hypothetical transcriptional regulator yih... <a href = #26250639> 57</a> 2e-07
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=17988771&dopt=GenPept" >ref|NP_541404.1|</a> TRANSCRIPTIONAL REGULATOR, DEOR FAMILY [Br... <a href = #17988771> 57</a> 2e-07
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=23464236&dopt=GenPept" >gb|AAN34041.1|</a> transcriptional regulator, DeoR family [Bruc... <a href = #23464236> 57</a> 2e-07
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=46156581&dopt=GenPept" >ref|ZP_00132400.2|</a> COG1349: Transcriptional regulators of s... <a href = #46156581> 57</a> 2e-07
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=16272561&dopt=GenPept" >ref|NP_438777.1|</a> glycerol-3-phosphate regulon repressor [Ha... <a href = #16272561> 56</a> 2e-07
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=28853607&dopt=GenPept" >gb|AAO56674.1|</a> transcriptional regulator, DeoR family [Pseu... <a href = #28853607> 56</a> 2e-07
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=37678685&dopt=GenPept" >ref|NP_933294.1|</a> transcriptional regulator of sugar metabol... <a href = #37678685> 56</a> 2e-07
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=19746842&dopt=GenPept" >ref|NP_607978.1|</a> putative lactose phosphotransferase system... <a href = #19746842> 56</a> 2e-07
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=56808038&dopt=GenPept" >ref|ZP_00365838.1|</a> COG1349: Transcriptional regulators of s... <a href = #56808038> 56</a> 2e-07
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=28896570&dopt=GenPept" >ref|NP_802920.1|</a> putative lactose phosphotransferase system... <a href = #28896570> 56</a> 2e-07
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=50914994&dopt=GenPept" >ref|YP_060966.1|</a> Lactose phosphotransferase system represso... <a href = #50914994> 56</a> 2e-07
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=09947445&dopt=GenPept" >gb|AAG04879.1|</a> probable transcriptional regulator [Pseudomo... <a href = #9947445> 56</a> 2e-07
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=23467840&dopt=GenPept" >ref|ZP_00123417.1|</a> COG1349: Transcriptional regulators of s... <a href = #23467840> 56</a> 2e-07
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=33597632&dopt=GenPept" >ref|NP_885275.1|</a> glycerol-3-phosphate regulon repressor pro... <a href = #33597632> 56</a> 3e-07
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=33593615&dopt=GenPept" >ref|NP_881259.1|</a> glycerol-3-phosphate regulon repressor pro... <a href = #33593615> 56</a> 3e-07
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=33602035&dopt=GenPept" >ref|NP_889595.1|</a> glycerol-3-phosphate regulon repressor pro... <a href = #33602035> 56</a> 3e-07
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=52424242&dopt=GenPept" >ref|YP_087379.1|</a> GlpR protein [Mannheimia succiniciproducen... <a href = #52424242> 56</a> 3e-07
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=08894815&dopt=GenPept" >emb|CAB96011.1|</a> putative transcriptional regulatory protein... <a href = #8894815> 56</a> 3e-07
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=53692589&dopt=GenPept" >ref|ZP_00123001.2|</a> COG1349: Transcriptional regulators of s... <a href = #53692589> 56</a> 3e-07
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=36958660&dopt=GenPept" >gb|AAQ87128.1|</a> Transcriptional repressor [Rhizobium sp. NGR... <a href = #36958660> 56</a> 3e-07
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=30021814&dopt=GenPept" >ref|NP_833445.1|</a> Fructose repressor [Bacillus cereus ATCC 1... <a href = #30021814> 55</a> 4e-07
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=24376214&dopt=GenPept" >ref|NP_720258.1|</a> transcriptional regulator, DeoR family [Sh... <a href = #24376214> 55</a> 4e-07
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=56480467&dopt=GenPept" >ref|NP_709684.2|</a> putative DEOR-type transcriptional regulat... <a href = #56480467> 55</a> 4e-07
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=16801493&dopt=GenPept" >ref|NP_471761.1|</a> hypothetical protein lin2431 [Listeria inn... <a href = #16801493> 55</a> 4e-07
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=42781855&dopt=GenPept" >ref|NP_979102.1|</a> transcriptional regulator, DeoR family [Ba... <a href = #42781855> 55</a> 4e-07
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=46187453&dopt=GenPept" >ref|ZP_00205356.1|</a> COG1349: Transcriptional regulators of s... <a href = #46187453> 55</a> 4e-07
<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=23494680&dopt=GenPept" >dbj|BAC19646.1|</a> putative transcription regulator [Corynebac... <a href = #23494680> 55</a> 4e-07
</PRE>
</form>
<CENTER><b><FONT color="green">Alignments</FONT></b></CENTER>
<PRE>
><a name = 7465864></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=07465864&dopt=GenPept" >pir||A64976</a> galactitol utilization operon repressor - Escherichia coli (strain
K-12)
<a name = 1736807></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=01736807&dopt=GenPept" >dbj|BAA15953.1|</a> Galactitol utilization operon repressor (fragment). [Escherichia
coli]
<a name = 1736795></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=01736795&dopt=GenPept" >dbj|BAA15942.1|</a> Galactitol utilization operon repressor (fragment). [Escherichia
coli]
Length = 112
Score = 220 bits (561), Expect = 7e-57
Identities = 112/112 (100%), Positives = 112/112 (100%)
Query: 1 MTMNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAK 60
MTMNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAK
Sbjct: 1 MTMNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAK 60
Query: 61 IMSGNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMTDPTHVIWTQA 112
IMSGNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMTDPTHVIWTQA
Sbjct: 61 IMSGNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMTDPTHVIWTQA 112
</PRE>
<PRE>
><a name = 24113466></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=24113466&dopt=GenPept" >ref|NP_707976.1|</a> galactitol utilization operon repressor [Shigella flexneri 2a str.
301]
<a name = 24052498></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=24052498&dopt=GenPept" >gb|AAN43683.1|</a> galactitol utilization operon repressor [Shigella flexneri 2a str.
301]
Length = 259
Score = 197 bits (502), Expect = 5e-50
Identities = 102/102 (100%), Positives = 102/102 (100%)
Query: 1 MTMNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAK 60
MTMNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAK
Sbjct: 1 MTMNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAK 60
Query: 61 IMSGNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT 102
IMSGNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT
Sbjct: 61 IMSGNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT 102
</PRE>
<PRE>
><a name = 30063529></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=30063529&dopt=GenPept" >ref|NP_837700.1|</a> galactitol utilization operon repressor [Shigella flexneri 2a str.
2457T]
<a name = 30041782></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=30041782&dopt=GenPept" >gb|AAP17509.1|</a> galactitol utilization operon repressor [Shigella flexneri 2a str.
2457T]
Length = 259
Score = 197 bits (502), Expect = 5e-50
Identities = 102/102 (100%), Positives = 102/102 (100%)
Query: 1 MTMNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAK 60
MTMNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAK
Sbjct: 1 MTMNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAK 60
Query: 61 IMSGNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT 102
IMSGNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT
Sbjct: 61 IMSGNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT 102
</PRE>
<PRE>
><a name = 26248463></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=26248463&dopt=GenPept" >ref|NP_754503.1|</a> hypothetical protein c2615 [Escherichia coli CFT073]
<a name = 26108868></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=26108868&dopt=GenPept" >gb|AAN81071.1|</a> Hypothetical protein [Escherichia coli CFT073]
Length = 259
Score = 197 bits (502), Expect = 5e-50
Identities = 102/102 (100%), Positives = 102/102 (100%)
Query: 1 MTMNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAK 60
MTMNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAK
Sbjct: 1 MTMNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAK 60
Query: 61 IMSGNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT 102
IMSGNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT
Sbjct: 61 IMSGNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT 102
</PRE>
<PRE>
><a name = 13362362></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=13362362&dopt=GenPept" >dbj|BAB36316.1|</a> split galactitol utilization operon repressor [Escherichia coli
O157:H7]
<a name = 25391040></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=25391040&dopt=GenPept" >pir||E90990</a> split galactitol utilization operon repressor [imported] -
Escherichia coli (strain O157:H7, substrain RIMD
0509952)
<a name = 15832147></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=15832147&dopt=GenPept" >ref|NP_310920.1|</a> split galactitol utilization operon repressor [Escherichia coli
O157:H7]
Length = 259
Score = 197 bits (502), Expect = 5e-50
Identities = 102/102 (100%), Positives = 102/102 (100%)
Query: 1 MTMNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAK 60
MTMNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAK
Sbjct: 1 MTMNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAK 60
Query: 61 IMSGNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT 102
IMSGNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT
Sbjct: 61 IMSGNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT 102
</PRE>
<PRE>
><a name = 2506565></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=02506565&dopt=GenPept" >sp|P36930|GATR_ECOLI</a> Galactitol utilization operon repressor
Length = 259
Score = 197 bits (502), Expect = 5e-50
Identities = 102/102 (100%), Positives = 102/102 (100%)
Query: 1 MTMNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAK 60
MTMNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAK
Sbjct: 1 MTMNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAK 60
Query: 61 IMSGNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT 102
IMSGNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT
Sbjct: 61 IMSGNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT 102
</PRE>
<PRE>
><a name = 29028388></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=29028388&dopt=GenPept" >gb|AAO64739.1|</a> GatR2 [Escherichia coli]
Length = 256
Score = 190 bits (482), Expect = 1e-47
Identities = 98/99 (98%), Positives = 99/99 (100%)
Query: 4 NSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMS 63
NSFERR+KIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMS
Sbjct: 1 NSFERRDKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMS 60
Query: 64 GNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT 102
GNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT
Sbjct: 61 GNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT 99
</PRE>
<PRE>
><a name = 508177></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=00508177&dopt=GenPept" >emb|CAA56232.1|</a> repressor of gat operon [Escherichia coli]
Length = 68
Score = 132 bits (333), Expect = 2e-30
Identities = 68/68 (100%), Positives = 68/68 (100%)
Query: 1 MTMNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAK 60
MTMNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAK
Sbjct: 1 MTMNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAK 60
Query: 61 IMSGNSET 68
IMSGNSET
Sbjct: 61 IMSGNSET 68
</PRE>
<PRE>
><a name = 1096952></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=01096952&dopt=GenPept" >prf||2113201G</a> carbohydrate phosphotransferase II
Length = 68
Score = 130 bits (327), Expect = 1e-29
Identities = 67/68 (98%), Positives = 67/68 (98%)
Query: 1 MTMNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAK 60
MTMNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAK
Sbjct: 1 MTMNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAK 60
Query: 61 IMSGNSET 68
IMSG SET
Sbjct: 61 IMSGKSET 68
</PRE>
<PRE>
><a name = 56415197></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=56415197&dopt=GenPept" >ref|YP_152272.1|</a> galactitol utilization operon repressor [Salmonella enterica subsp.
enterica serovar Paratypi A str. ATCC 9150]
<a name = 56129454></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=56129454&dopt=GenPept" >gb|AAV78960.1|</a> galactitol utilization operon repressor [Salmonella enterica subsp.
enterica serovar Paratypi A str. ATCC 9150]
<a name = 29143518></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=29143518&dopt=GenPept" >ref|NP_806860.1|</a> galactitol utilization operon repressor [Salmonella enterica subsp.
enterica serovar Typhi Ty2]
<a name = 16762029></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=16762029&dopt=GenPept" >ref|NP_457646.1|</a> galactitol utilization operon repressor [Salmonella enterica subsp.
enterica serovar Typhi str. CT18]
<a name = 29139152></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=29139152&dopt=GenPept" >gb|AAO70720.1|</a> galactitol utilization operon repressor [Salmonella enterica subsp.
enterica serovar Typhi Ty2]
<a name = 16504332></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=16504332&dopt=GenPept" >emb|CAD07784.1|</a> galactitol utilization operon repressor [Salmonella enterica subsp.
enterica serovar Typhi]
<a name = 25302839></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=25302839&dopt=GenPept" >pir||AB0899</a> galactitol utilization operon repressor [imported] - Salmonella
enterica subsp. enterica serovar Typhi (strain CT18)
Length = 257
Score = 129 bits (325), Expect = 2e-29
Identities = 66/100 (66%), Positives = 78/100 (78%)
Query: 3 MNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIM 62
MNSFERRNKI+ L+N QG+VLV DL+ F SE TIRADLR LE+KG+VTRFHGGAAK
Sbjct: 1 MNSFERRNKIVDLINTQGSVLVMDLSNTFGISEVTIRADLRLLEEKGLVTRFHGGAAKPG 60
Query: 63 SGNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT 102
S +E + QEV ++R+QLAS PK RIAQAA M+ EGMT
Sbjct: 61 SHLAEGDNQEVILEDRYQLASDPKKRIAQAAAAMVEEGMT 100
</PRE>
<PRE>
><a name = 16421820></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=16421820&dopt=GenPept" >gb|AAL22134.1|</a> transcriptional regulator of sugar metabolism [Salmonella
typhimurium LT2]
<a name = 16766560></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=16766560&dopt=GenPept" >ref|NP_462175.1|</a> galactitol utilization operon transcriptional repressor [Salmonella
typhimurium LT2]
Length = 257
Score = 129 bits (325), Expect = 2e-29
Identities = 66/100 (66%), Positives = 78/100 (78%)
Query: 3 MNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIM 62
MNSFERRNKI+ L+N QG+VLV DL+ F SE TIRADLR LE+KG+VTRFHGGAAK
Sbjct: 1 MNSFERRNKIVDLINTQGSVLVMDLSNTFGISEVTIRADLRLLEEKGLVTRFHGGAAKPG 60
Query: 63 SGNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT 102
S +E + QEV ++R+QLAS PK RIAQAA M+ EGMT
Sbjct: 61 SHLAEGDNQEVILEDRYQLASDPKKRIAQAAAAMVEEGMT 100
</PRE>
<PRE>
><a name = 18139851></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=18139851&dopt=GenPept" >gb|AAL60174.1|</a> GatR [Klebsiella oxytoca]
Length = 257
Score = 127 bits (319), Expect = 8e-29
Identities = 65/100 (65%), Positives = 80/100 (80%)
Query: 3 MNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIM 62
MNSFERRNKI+++VN QG+VLV DL+ +F SE TIRADLR LE+KG++TRFHGGAA+
Sbjct: 1 MNSFERRNKIVEMVNAQGSVLVLDLSNLFGISEVTIRADLRLLEEKGLLTRFHGGAARPG 60
Query: 63 SGNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT 102
S +E + EV ++R+QLAS PK RIAQAAV MI EGMT
Sbjct: 61 SNLTEGDNLEVVLEDRYQLASDPKKRIAQAAVAMISEGMT 100
</PRE>
<PRE>
><a name = 53728549></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=53728549&dopt=GenPept" >ref|ZP_00132352.2|</a> COG1349: Transcriptional regulators of sugar metabolism
[Haemophilus somnus 2336]
<a name = 23466860></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=23466860&dopt=GenPept" >ref|ZP_00122446.1|</a> COG1349: Transcriptional regulators of sugar metabolism
[Haemophilus somnus 129PT]
Length = 276
Score = 91.3 bits (225), Expect = 6e-18
Identities = 48/106 (45%), Positives = 68/106 (64%), Gaps = 6/106 (5%)
Query: 3 MNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAA--- 59
MN+FERR++II+L+ E G V V DLA F SE ++R DLR LE++G++TRFHGGAA
Sbjct: 14 MNTFERRHQIIELLKENGIVSVNDLAKRFNVSEVSVRTDLRMLEEQGILTRFHGGAAFSN 73
Query: 60 ---KIMSGNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT 102
K E++E +ER L+ PK+ IA+ A +++ EG T
Sbjct: 74 SNEKPYEKKERNESKETSLEERHGLSHDPKSHIARIAAQLVKEGDT 119
</PRE>
<PRE>
><a name = 24114418></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=24114418&dopt=GenPept" >ref|NP_708928.1|</a> putative DEOR-type transcriptional regulator of aga operon
[Shigella flexneri 2a str. 301]
<a name = 24053593></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=24053593&dopt=GenPept" >gb|AAN44635.1|</a> putative DEOR-type transcriptional regulator of aga operon
[Shigella flexneri 2a str. 301]
<a name = 30064468></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=30064468&dopt=GenPept" >ref|NP_838639.1|</a> putative DEOR-type transcriptional regulator of aga operon
[Shigella flexneri 2a str. 2457T]
<a name = 30042727></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=30042727&dopt=GenPept" >gb|AAP18450.1|</a> putative DEOR-type transcriptional regulator of aga operon
[Shigella flexneri 2a str. 2457T]
Length = 274
Score = 69.7 bits (169), Expect = 2e-11
Identities = 38/94 (40%), Positives = 60/94 (63%), Gaps = 3/94 (3%)
Query: 7 ERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMSGNS 66
ERR +IIQ + +QG+V V DL+ ++ S TIR DL FLE++G+ R +GGA + +S
Sbjct: 17 ERREQIIQRLRQQGSVQVNDLSALYGVSTVTIRNDLAFLEKQGIAVRAYGGA---LICDS 73
Query: 67 ETETQEVGFKERFQLASAPKNRIAQAAVKMIHEG 100
T + E +++ L +A K +A+AAV++I G
Sbjct: 74 TTPSVEPSVEDKSALNTAMKRSVAKAAVELIQPG 107
</PRE>
<PRE>
><a name = 26249713></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=26249713&dopt=GenPept" >ref|NP_755753.1|</a> Putative aga operon transcriptional repressor [Escherichia coli
CFT073]
<a name = 26110141></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=26110141&dopt=GenPept" >gb|AAN82327.1|</a> Putative aga operon transcriptional repressor [Escherichia coli
CFT073]
<a name = 1789519></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=01789519&dopt=GenPept" >gb|AAC76165.1|</a> putative DEOR-type transcriptional regulator of aga operon;
transcriptional repressor of N-acetyl galactosamine
metabolism (DeoR family) [Escherichia coli K12]
<a name = 606071></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=00606071&dopt=GenPept" >gb|AAA57934.1|</a> ORF_f269 [Escherichia coli]
<a name = 12517727></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=12517727&dopt=GenPept" >gb|AAG58261.1|</a> putative DEOR-type transcriptional regulator of aga operon
[Escherichia coli O157:H7 EDL933]
<a name = 7429262></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=07429262&dopt=GenPept" >pir||G65102</a> probable transcription repressor of aga operon - Escherichia coli
(strain K-12)
<a name = 13363482></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=13363482&dopt=GenPept" >dbj|BAB37432.1|</a> transcriptional repressor of aga operon [Escherichia coli O157:H7]
<a name = 15833263></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=15833263&dopt=GenPept" >ref|NP_312036.1|</a> transcriptional repressor of aga operon [Escherichia coli O157:H7]
<a name = 16131023></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=16131023&dopt=GenPept" >ref|NP_417600.1|</a> putative DEOR-type transcriptional regulator of aga operon
[Escherichia coli K12]
<a name = 25302826></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=25302826&dopt=GenPept" >pir||A85975</a> robable transcription repressor of aga operon [similarity] -
Escherichia coli (strain O157:H7, substrain EDL933)
<a name = 25302813></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=25302813&dopt=GenPept" >pir||A91130</a> transcription repressor of aga operon [imported] - Escherichia coli
(strain O157:H7, substrain RIMD 0509952)
<a name = 15803669></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=15803669&dopt=GenPept" >ref|NP_289702.1|</a> putative DEOR-type transcriptional regulator of aga operon
[Escherichia coli O157:H7 EDL933]
<a name = 1168379></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=01168379&dopt=GenPept" >sp|P42902|AGAR_ECOLI</a> Putative aga operon transcriptional repressor
<a name = 8895745></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=08895745&dopt=GenPept" >gb|AAF81081.1|</a> AgaR [Escherichia coli]
Length = 269
Score = 69.7 bits (169), Expect = 2e-11
Identities = 38/94 (40%), Positives = 60/94 (63%), Gaps = 3/94 (3%)
Query: 7 ERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMSGNS 66
ERR +IIQ + +QG+V V DL+ ++ S TIR DL FLE++G+ R +GGA + +S
Sbjct: 17 ERREQIIQRLRQQGSVQVNDLSALYGVSTVTIRNDLAFLEKQGIAVRAYGGA---LICDS 73
Query: 67 ETETQEVGFKERFQLASAPKNRIAQAAVKMIHEG 100
T + E +++ L +A K +A+AAV++I G
Sbjct: 74 TTPSVEPSVEDKSALNTAMKRSVAKAAVELIQPG 107
</PRE>
<PRE>
><a name = 51891931></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=51891931&dopt=GenPept" >ref|YP_074622.1|</a> DeoR-family transcriptional regulator [Symbiobacterium thermophilum
IAM 14863]
<a name = 51855620></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=51855620&dopt=GenPept" >dbj|BAD39778.1|</a> DeoR-family transcriptional regulator [Symbiobacterium thermophilum
IAM 14863]
Length = 260
Score = 68.2 bits (165), Expect = 6e-11
Identities = 39/94 (41%), Positives = 54/94 (57%), Gaps = 5/94 (5%)
Query: 7 ERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMSGNS 66
ER+ +II+ V V VQDLA VF SE+TIR DLR LE++G++ R HGGA +
Sbjct: 11 ERKRRIIERVRSGAAVTVQDLAQVFGVSESTIRRDLRELEREGLLERTHGGAVP-----A 65
Query: 67 ETETQEVGFKERFQLASAPKNRIAQAAVKMIHEG 100
+ E + E+ A K IA+ A M+H+G
Sbjct: 66 DPTLTEPSYAEKTDQNRAEKMAIARVAAGMVHDG 99
</PRE>
<PRE>
><a name = 14247969></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=14247969&dopt=GenPept" >dbj|BAB58358.1|</a> lactose phosphotransferase system repressor [Staphylococcus aureus
subsp. aureus Mu50]
<a name = 15927776></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=15927776&dopt=GenPept" >ref|NP_375309.1|</a> lactose phosphotransferase system repressor [Staphylococcus aureus
subsp. aureus N315]
<a name = 13701996></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=13701996&dopt=GenPept" >dbj|BAB43288.1|</a> lactose phosphotransferase system repressor [Staphylococcus aureus
subsp. aureus N315]
<a name = 54037726></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=54037726&dopt=GenPept" >sp|P67744|LACR_STAAN</a> Lactose phosphotransferase system repressor
<a name = 54041565></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=54041565&dopt=GenPept" >sp|P67743|LACR_STAAM</a> Lactose phosphotransferase system repressor
<a name = 25302824></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=25302824&dopt=GenPept" >pir||G90015</a> lactose phosphotransferase system repressor [imported] -
Staphylococcus aureus (strain N315)
<a name = 15925186></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=15925186&dopt=GenPept" >ref|NP_372720.1|</a> lactose phosphotransferase system repressor [Staphylococcus aureus
subsp. aureus Mu50]
Length = 251
Score = 67.4 bits (163), Expect = 1e-10
Identities = 37/100 (37%), Positives = 57/100 (57%), Gaps = 4/100 (4%)
Query: 3 MNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIM 62
MN ER ++I +LVN++GT+ ++ S+ T+R DL LE KG++T+ HGGA
Sbjct: 1 MNKHERLDEIAKLVNKKGTIRTNEIVEGLNVSDMTVRRDLIELENKGILTKIHGGA---- 56
Query: 63 SGNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT 102
NS + +E+ KE+ A K IA+ A +I +G T
Sbjct: 57 RSNSTFQYKEISHKEKHTRQIAEKRYIARKAASLIEDGDT 96
</PRE>
<PRE>
><a name = 49245428></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=49245428&dopt=GenPept" >emb|CAG43905.1|</a> lactose phosphotransferase system repressor [Staphylococcus aureus
subsp. aureus MSSA476]
<a name = 57650784></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=57650784&dopt=GenPept" >ref|YP_186999.1|</a> lactose phosphotransferase system repressor [Staphylococcus aureus
subsp. aureus COL]
<a name = 57284970></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=57284970&dopt=GenPept" >gb|AAW37064.1|</a> lactose phosphotransferase system repressor [Staphylococcus aureus
subsp. aureus COL]
<a name = 21205293></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=21205293&dopt=GenPept" >dbj|BAB95987.1|</a> lactose phosphotransferase system repressor [Staphylococcus aureus
subsp. aureus MW2]
<a name = 49486985></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=49486985&dopt=GenPept" >ref|YP_044206.1|</a> lactose phosphotransferase system repressor [Staphylococcus aureus
subsp. aureus MSSA476]
<a name = 21283851></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=21283851&dopt=GenPept" >ref|NP_646939.1|</a> lactose phosphotransferase system repressor [Staphylococcus aureus
subsp. aureus MW2]
<a name = 59799788></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=59799788&dopt=GenPept" >sp|P0A0Q0|LACR_STAAU</a> Lactose phosphotransferase system repressor
<a name = 59799787></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=59799787&dopt=GenPept" >sp|P0A0P9|LACR_STAAW</a> Lactose phosphotransferase system repressor
<a name = 280217></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=00280217&dopt=GenPept" >pir||A44506</a> lactose operon repressor lacR - Staphylococcus aureus
<a name = 59798267></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=59798267&dopt=GenPept" >sp|Q6G7B8|LACR_STAAS</a> Lactose phosphotransferase system repressor
<a name = 153035></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=00153035&dopt=GenPept" >gb|AAA67854.1|</a> lacR repressor
Length = 251
Score = 67.0 bits (162), Expect = 1e-10
Identities = 37/100 (37%), Positives = 57/100 (57%), Gaps = 4/100 (4%)
Query: 3 MNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIM 62
MN ER ++I +LVN++GT+ ++ S+ T+R DL LE KG++T+ HGGA
Sbjct: 1 MNKHERLDEIAKLVNKKGTIRTNEIVEGLNVSDMTVRRDLIELENKGILTKIHGGA---- 56
Query: 63 SGNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT 102
NS + +E+ KE+ A K IA+ A +I +G T
Sbjct: 57 RSNSTFQYKEISHKEKHTRQIAEKRFIAKKAASLIEDGDT 96
</PRE>
<PRE>
><a name = 49484416></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=49484416&dopt=GenPept" >ref|YP_041640.1|</a> lactose phosphotransferase system repressor [Staphylococcus aureus
subsp. aureus MRSA252]
<a name = 49242545></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=49242545&dopt=GenPept" >emb|CAG41265.1|</a> lactose phosphotransferase system repressor [Staphylococcus aureus
subsp. aureus MRSA252]
<a name = 59798273></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=59798273&dopt=GenPept" >sp|Q6GEN3|LACR_STAAR</a> Lactose phosphotransferase system repressor
Length = 251
Score = 67.0 bits (162), Expect = 1e-10
Identities = 37/100 (37%), Positives = 57/100 (57%), Gaps = 4/100 (4%)
Query: 3 MNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIM 62
MN ER ++I +LVN++GT+ ++ S+ T+R DL LE KG++T+ HGGA
Sbjct: 1 MNKHERLDEIAKLVNKKGTIRTNEIVEGLNVSDMTVRRDLIELENKGILTKIHGGA---- 56
Query: 63 SGNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT 102
NS + +E+ KE+ A K IA+ A +I +G T
Sbjct: 57 RSNSTFQYKEISHKEKHTRQIAEKRFIARKAASLIEDGDT 96
</PRE>
<PRE>
><a name = 23097953></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=23097953&dopt=GenPept" >ref|NP_691419.1|</a> transcriptional regulator [Oceanobacillus iheyensis HTE831]
<a name = 22776177></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=22776177&dopt=GenPept" >dbj|BAC12454.1|</a> transcriptional regulator (DeoR family) [Oceanobacillus iheyensis
HTE831]
Length = 257
Score = 66.2 bits (160), Expect = 2e-10
Identities = 38/109 (34%), Positives = 62/109 (56%), Gaps = 7/109 (6%)
Query: 7 ERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMSGNS 66
ER +KI++LVNE+ ++ V D++ +FA +E TIR DL LE++ + R HGGA + +S
Sbjct: 5 ERHHKIVELVNEKKSIRVSDMSKLFAVTEETIRRDLEKLEKENKLARSHGGAVSLHPNDS 64
Query: 67 ETETQEVGFKERFQLASAPKNRIAQAAVKMIHEG---MTDPTHVIWTQA 112
E+ + +R + K +IA A+K + EG + D + W A
Sbjct: 65 ----LEIPYTQREIMNVREKQKIAMEAIKHVFEGDKIILDASTTAWYMA 109
</PRE>
<PRE>
><a name = 29375315></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=29375315&dopt=GenPept" >ref|NP_814469.1|</a> transcriptional regulator, DeoR family [Enterococcus faecalis V583]
<a name = 29342775></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=29342775&dopt=GenPept" >gb|AAO80539.1|</a> transcriptional regulator, DeoR family [Enterococcus faecalis V583]
Length = 250
Score = 64.7 bits (156), Expect = 6e-10
Identities = 36/94 (38%), Positives = 54/94 (57%), Gaps = 5/94 (5%)
Query: 7 ERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMSGNS 66
ER KI+QL++++ V Q+LA +F ASE+TIR DL+ LE ++ R HGGA +I++
Sbjct: 5 ERHQKILQLLDQKSVVKSQELASLFNASESTIRRDLQELEDANLLERIHGGAKRILNLGF 64
Query: 67 ETETQEVGFKERFQLASAPKNRIAQAAVKMIHEG 100
E E K + K +IA AV + +G
Sbjct: 65 EQNMTEKSIKNTHE-----KQKIASLAVSCVQDG 93
</PRE>
<PRE>
><a name = 27468706></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=27468706&dopt=GenPept" >ref|NP_765343.1|</a> lactose phosphotransferase system repressor [Staphylococcus
epidermidis ATCC 12228]
<a name = 27316254></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=27316254&dopt=GenPept" >gb|AAO05429.1|</a> lactose phosphotransferase system repressor [Staphylococcus
epidermidis ATCC 12228]
<a name = 57867735></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=57867735&dopt=GenPept" >ref|YP_189359.1|</a> lactose phosphotransferase system repressor [Staphylococcus
epidermidis RP62A]
<a name = 57638393></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=57638393&dopt=GenPept" >gb|AAW55181.1|</a> lactose phosphotransferase system repressor [Staphylococcus
epidermidis RP62A]
Length = 251
Score = 64.3 bits (155), Expect = 8e-10
Identities = 36/100 (36%), Positives = 59/100 (59%), Gaps = 4/100 (4%)
Query: 3 MNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIM 62
MN ++R ++I +LVN++G+V ++ S+ T+R DL LE+KGV+T+ HGGA
Sbjct: 1 MNKYDRLDEITKLVNKRGSVRTNEIVEDLNVSDMTVRRDLAELEEKGVLTKIHGGA---- 56
Query: 63 SGNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT 102
NS + +E+ +E+ K IA+ AV +I +G T
Sbjct: 57 RSNSAFQYKEMSHQEKHTRFIEEKRFIAKNAVDLIEDGDT 96
</PRE>
<PRE>
><a name = 54301820></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=54301820&dopt=GenPept" >ref|YP_131813.1|</a> putative DeoR-family regulatory protein [Photobacterium profundum
SS9]
<a name = 46915240></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=46915240&dopt=GenPept" >emb|CAG22013.1|</a> putative DeoR-family regulatory protein [Photobacterium profundum]
Length = 258
Score = 64.3 bits (155), Expect = 8e-10
Identities = 42/99 (42%), Positives = 54/99 (54%), Gaps = 5/99 (5%)
Query: 4 NSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMS 63
++ ERR +I+ LVN G V+DLA F S TIR+DL FLE+ G V R HG A
Sbjct: 3 SAVERRMEIVSLVNRDGKARVEDLAAQFNVSSVTIRSDLSFLEKNGYVVRSHGAAIP--- 59
Query: 64 GNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT 102
NS + ++R Q A K+ I QAA K+I G T
Sbjct: 60 -NSGVIAELTVHEKRRQNAGI-KSLIGQAAAKLIESGDT 96
</PRE>
<PRE>
><a name = 52081860></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=52081860&dopt=GenPept" >ref|YP_080651.1|</a> probable transcriptional regulator YulB [Bacillus licheniformis
ATCC 14580]
<a name = 52005071></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=52005071&dopt=GenPept" >gb|AAU25013.1|</a> probable transcriptional regulator YulB [Bacillus licheniformis
ATCC 14580]
<a name = 52787247></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=52787247&dopt=GenPept" >ref|YP_093076.1|</a> YulB [Bacillus licheniformis ATCC 14580]
<a name = 52349749></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=52349749&dopt=GenPept" >gb|AAU42383.1|</a> YulB [Bacillus licheniformis DSM 13]
Length = 253
Score = 64.3 bits (155), Expect = 8e-10
Identities = 41/109 (37%), Positives = 60/109 (55%), Gaps = 8/109 (7%)
Query: 7 ERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMSGNS 66
ER KI++LVN + +V V +L+ +F+ +E TIR DL LE++ + R HGGA +
Sbjct: 5 ERHQKIVELVNLRSSVRVTELSELFSVTEETIRRDLEKLEKENKLKRSHGGAVSV----- 59
Query: 67 ETETQEVGFKERFQLASAPKNRIAQAAVKMIHEG---MTDPTHVIWTQA 112
+TE +EV F+ER K IA AVK + G + D + W A
Sbjct: 60 QTEEREVHFREREITNVNEKKMIAFEAVKHVKSGERIILDASTTAWYMA 108
</PRE>
<PRE>
><a name = 33148904></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=33148904&dopt=GenPept" >gb|AAP96422.1|</a> glycerol-3-phosphate regulon repressor [Haemophilus ducreyi
35000HP]
<a name = 33152680></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=33152680&dopt=GenPept" >ref|NP_874033.1|</a> glycerol-3-phosphate regulon repressor [Haemophilus ducreyi
35000HP]
Length = 253
Score = 64.3 bits (155), Expect = 8e-10
Identities = 40/93 (43%), Positives = 51/93 (54%), Gaps = 6/93 (6%)
Query: 8 RRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMSGNSE 67
R NKII+LVN+ G V ++L A S TIR DL L +K ++ R HGGA M N+E
Sbjct: 6 RHNKIIELVNQLGYVSTEELVAQLAVSSQTIRRDLNELAEKNLLRRHHGGAG--MPSNNE 63
Query: 68 TETQEVGFKERFQLASAPKNRIAQAAVKMIHEG 100
+ ER + SA KN IAQ +MI G
Sbjct: 64 NS----DYSERKKFFSAQKNIIAQQVAEMIPNG 92
</PRE>
<PRE>
><a name = 21324701></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=21324701&dopt=GenPept" >dbj|BAB99324.1|</a> Transcriptional regulators of sugar metabolism [Corynebacterium
glutamicum ATCC 13032]
<a name = 19553135></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=19553135&dopt=GenPept" >ref|NP_601137.1|</a> transcriptional regulator of sugar metabolism [Corynebacterium
glutamicum ATCC 13032]
<a name = 41326109></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=41326109&dopt=GenPept" >emb|CAF20272.1|</a> transcriptional regulators of sugar metabolism, DeoR family
[Corynebacterium glutamicum ATCC 13032]
Length = 259
Score = 62.8 bits (151), Expect = 2e-09
Identities = 38/95 (40%), Positives = 55/95 (57%), Gaps = 4/95 (4%)
Query: 3 MNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIM 62
M + ERR +I L +G V V +LAG F + TIR DL L+++G+V R HGGA
Sbjct: 1 MYAEERRRQIASLTAVEGRVNVTELAGRFDVTAETIRRDLAVLDREGIVHRVHGGAVATQ 60
Query: 63 SGNSETETQEVGFKERFQLASAPKNRIAQAAVKMI 97
S +T E+ RF+ AS+ K IA+AA++ +
Sbjct: 61 S----FQTTELSLDTRFRSASSAKYSIAKAAMQFL 91
</PRE>
<PRE>
><a name = 23493665></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=23493665&dopt=GenPept" >dbj|BAC18634.1|</a> putative deoR-family transcriptional regulator [Corynebacterium
efficiens YS-314]
<a name = 25028380></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=25028380&dopt=GenPept" >ref|NP_738434.1|</a> putative deoR-family transcriptional regulator [Corynebacterium
efficiens YS-314]
Length = 259
Score = 62.8 bits (151), Expect = 2e-09
Identities = 38/95 (40%), Positives = 55/95 (57%), Gaps = 4/95 (4%)
Query: 3 MNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIM 62
M + ERR +I L +G V V +LAG F + TIR DL L+++G+V R HGGA
Sbjct: 1 MYAEERRRQIASLTAVEGRVNVTELAGRFDVTAETIRRDLAVLDREGIVHRVHGGAVATQ 60
Query: 63 SGNSETETQEVGFKERFQLASAPKNRIAQAAVKMI 97
S +T E+ RF+ AS+ K IA+AA++ +
Sbjct: 61 S----FQTTELSLDTRFRSASSAKYSIAKAAMQFL 91
</PRE>
<PRE>
><a name = 13476015></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=13476015&dopt=GenPept" >ref|NP_107585.1|</a> transcriptional regulator [Mesorhizobium loti MAFF303099]
<a name = 14026775></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=14026775&dopt=GenPept" >dbj|BAB53371.1|</a> transcriptional regulator [Mesorhizobium loti MAFF303099]
Length = 253
Score = 62.4 bits (150), Expect = 3e-09
Identities = 35/100 (35%), Positives = 54/100 (54%), Gaps = 5/100 (5%)
Query: 3 MNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIM 62
M S +RR I+ V G V ++DL+ F SE T+R+DL L++KG++T+ GGA
Sbjct: 1 MLSEQRRQSILGEVQRSGQVRIKDLSDNFGVSEVTVRSDLEILDRKGLLTKTRGGAV--- 57
Query: 63 SGNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT 102
T++ F R Q K RIA+AAV++ + +
Sbjct: 58 --TRTTDSTTAAFARRMQTNLDAKKRIARAAVELFEDNQS 95
</PRE>
<PRE>
><a name = 52009242></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=52009242&dopt=GenPept" >ref|ZP_00336606.1|</a> COG1349: Transcriptional regulators of sugar metabolism
[Silicibacter sp. TM1040]
Length = 264
Score = 62.4 bits (150), Expect = 3e-09
Identities = 36/97 (37%), Positives = 57/97 (58%), Gaps = 6/97 (6%)
Query: 3 MNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIM 62
M++ +R+N+I+ L+ +Q V V+DLA F S T+R DLR L +G ++R HGGA +I
Sbjct: 1 MDANDRQNEILSLLTQQDRVEVEDLAQRFGVSLQTVRTDLRDLSARGQLSRVHGGAMRIS 60
Query: 63 SGNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHE 99
S ++ G+ ER L + K +A A ++I E
Sbjct: 61 SASNR------GYAERRSLNATGKRAMAALAAEVIPE 91
</PRE>
<PRE>
><a name = 51597389></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=51597389&dopt=GenPept" >ref|YP_071580.1|</a> DeoR-family regulatory protein [Yersinia pseudotuberculosis IP
32953]
<a name = 45443264></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=45443264&dopt=GenPept" >ref|NP_994803.1|</a> DeoR-family regulatory protein [Yersinia pestis biovar Medievalis
str. 91001]
<a name = 16121139></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=16121139&dopt=GenPept" >ref|NP_404452.1|</a> DeoR-family regulatory protein [Yersinia pestis CO92]
<a name = 22127092></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=22127092&dopt=GenPept" >ref|NP_670515.1|</a> putative DEOR-type transcriptional regulator of aga operon
[Yersinia pestis KIM]
<a name = 45438132></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=45438132&dopt=GenPept" >gb|AAS63680.1|</a> DeoR-family regulatory protein [Yersinia pestis biovar Medievalis
str. 91001]
<a name = 21960148></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=21960148&dopt=GenPept" >gb|AAM86766.1|</a> putative DEOR-type transcriptional regulator of aga operon
[Yersinia pestis KIM]
<a name = 15978905></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=15978905&dopt=GenPept" >emb|CAC89678.1|</a> DeoR-family regulatory protein [Yersinia pestis CO92]
<a name = 51590671></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=51590671&dopt=GenPept" >emb|CAH22313.1|</a> DeoR-family regulatory protein [Yersinia pseudotuberculosis IP
32953]
<a name = 25302827></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=25302827&dopt=GenPept" >pir||AC0102</a> DeoR-family regulatory protein YPO0831 [imported] - Yersinia pestis
(strain CO92)
Length = 258
Score = 62.0 bits (149), Expect = 4e-09
Identities = 38/98 (38%), Positives = 53/98 (54%), Gaps = 5/98 (5%)
Query: 5 SFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMSG 64
+ ERR +I +V +QG V+DLA F S TIR+DL FLE+ G + R HG A
Sbjct: 4 AIERRMEIFNIVTQQGKARVEDLAERFNVSSVTIRSDLSFLEKNGYIVRSHGSAIP---- 59
Query: 65 NSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT 102
+ E+ E+ + S K+ I QAA K+I+ G T
Sbjct: 60 -NTGVIAELTVHEKRRRNSGVKSLIGQAAAKLINSGDT 96
</PRE>
<PRE>
><a name = 38234012></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=38234012&dopt=GenPept" >ref|NP_939779.1|</a> Putative sugar related operon transcriptional regulator (PTS
system) [Corynebacterium diphtheriae NCTC 13129]
<a name = 38200274></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=38200274&dopt=GenPept" >emb|CAE49958.1|</a> Putative sugar related operon transcriptional regulator (PTS
system) [Corynebacterium diphtheriae]
Length = 258
Score = 62.0 bits (149), Expect = 4e-09
Identities = 40/97 (41%), Positives = 51/97 (52%), Gaps = 4/97 (4%)
Query: 3 MNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIM 62
M S ERR +I L +G V V +LA F + TIR DL L+++GVV R HGGA
Sbjct: 1 MYSEERRRQIASLTAVEGRVNVTELAARFDVTAETIRRDLAVLDREGVVHRVHGGAV--- 57
Query: 63 SGNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHE 99
N +T E R + AS KN IA AA+ + E
Sbjct: 58 -ANQTFQTAEFSLDTRSRSASGAKNSIAHAALSYLPE 93
</PRE>
<PRE>
><a name = 46143433></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=46143433&dopt=GenPept" >ref|ZP_00204470.1|</a> COG1349: Transcriptional regulators of sugar metabolism
[Actinobacillus pleuropneumoniae serovar 1 str. 4074]
Length = 253
Score = 61.6 bits (148), Expect = 5e-09
Identities = 39/93 (41%), Positives = 48/93 (51%), Gaps = 6/93 (6%)
Query: 8 RRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMSGNSE 67
R NKII+LVN+ G V ++L S TIR DL L +K ++ R HGGA M NSE
Sbjct: 6 RHNKIIELVNQLGYVSTEELVAQLDVSSQTIRRDLNELAEKNLIRRHHGGAG--MPSNSE 63
Query: 68 TETQEVGFKERFQLASAPKNRIAQAAVKMIHEG 100
+ ER Q S KN IA+ MI G
Sbjct: 64 NS----DYTERKQFFSEQKNEIARHVAAMIPNG 92
</PRE>
<PRE>
><a name = 16080173></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=16080173&dopt=GenPept" >ref|NP_390999.1|</a> hypothetical protein BSU31210 [Bacillus subtilis subsp. subtilis
str. 168]
<a name = 1934822></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=01934822&dopt=GenPept" >emb|CAB07948.1|</a> unknown [Bacillus subtilis]
<a name = 2635605></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=02635605&dopt=GenPept" >emb|CAB15099.1|</a> yulB [Bacillus subtilis subsp. subtilis str. 168]
<a name = 7429264></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=07429264&dopt=GenPept" >pir||D70014</a> transcription regulator DeoR family homolog yulB - Bacillus
subtilis
<a name = 3123164></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=03123164&dopt=GenPept" >sp|O05261|YULB_BACSU</a> Putative HTH-type transcriptional regulator yulB
Length = 258
Score = 61.2 bits (147), Expect = 7e-09
Identities = 37/109 (33%), Positives = 57/109 (52%), Gaps = 8/109 (7%)
Query: 7 ERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMSGNS 66
ER+ KI+++VN + ++ V +L+ +F+ +E TIR DL LE++ ++R HGGA I S
Sbjct: 5 ERQQKIVEIVNMRSSIRVSELSDIFSVTEETIRRDLEKLEKEHKLSRSHGGAVSIQQKES 64
Query: 67 ETETQEVGFKERFQLASAPKNRIAQAAVKMIHEG---MTDPTHVIWTQA 112
E+ F ER K IA A K + G + D + W A
Sbjct: 65 -----EIHFSEREITNVIEKKAIAHEAAKYVKSGDRIILDASTTAWYMA 108
</PRE>
<PRE>
><a name = 322121></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=00322121&dopt=GenPept" >pir||B43258</a> regulatory protein lacR - Streptococcus mutans
<a name = 153672></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=00153672&dopt=GenPept" >gb|AAA26903.1|</a> lactose repressor
Length = 251
Score = 60.8 bits (146), Expect = 9e-09
Identities = 35/100 (35%), Positives = 56/100 (56%), Gaps = 4/100 (4%)
Query: 3 MNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIM 62
M ER +I +L+N++GT+ V ++ S+ T+R DL LE GV+TR HGGA
Sbjct: 1 MKKEERLEEITKLINKRGTIRVTEVVERLKVSDMTVRRDLTELEGLGVLTRIHGGA---- 56
Query: 63 SGNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT 102
N+ + +E+ +E+ K+ IAQ A +++ EG T
Sbjct: 57 RSNNIFQYKEMSHEEKHSRQIEEKHYIAQKAAELVEEGDT 96
</PRE>
<PRE>
><a name = 19746617></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=19746617&dopt=GenPept" >ref|NP_607753.1|</a> putative lactose phosphotransferase system repressor protein
[Streptococcus pyogenes MGAS8232]
<a name = 50914797></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=50914797&dopt=GenPept" >ref|YP_060769.1|</a> Lactose phosphotransferase system repressor [Streptococcus pyogenes
MGAS10394]
<a name = 50903871></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=50903871&dopt=GenPept" >gb|AAT87586.1|</a> Lactose phosphotransferase system repressor [Streptococcus pyogenes
MGAS10394]
<a name = 19748835></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=19748835&dopt=GenPept" >gb|AAL98252.1|</a> putative lactose phosphotransferase system repressor protein
[Streptococcus pyogenes MGAS8232]
<a name = 13622768></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=13622768&dopt=GenPept" >gb|AAK34460.1|</a> putative lactose phosphotransferase system repressor protein
[Streptococcus pyogenes M1 GAS]
<a name = 15675565></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=15675565&dopt=GenPept" >ref|NP_269739.1|</a> putative lactose phosphotransferase system repressor protein
[Streptococcus pyogenes M1 GAS]
Length = 256
Score = 60.8 bits (146), Expect = 9e-09
Identities = 39/100 (39%), Positives = 50/100 (50%), Gaps = 4/100 (4%)
Query: 7 ERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMSGN- 65
ER KI ++VNEQG V V D+ S+ T+R DL LE+ G + R HGGA I N
Sbjct: 5 ERLLKITEIVNEQGIVTVNDIIQTLNVSDMTVRRDLDELEKAGKLIRIHGGAQSITMPNK 64
Query: 66 ---SETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT 102
S E Q V KE+++LAS + I G T
Sbjct: 65 KERSNIEKQTVQTKEKWELASYATQLVNDGETIFIGPGTT 104
</PRE>
<PRE>
><a name = 28895290></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=28895290&dopt=GenPept" >ref|NP_801640.1|</a> putative lactose phosphotransferase system repressor protein
[Streptococcus pyogenes SSI-1]
<a name = 21911025></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=21911025&dopt=GenPept" >ref|NP_665293.1|</a> putative phosphotransferase system repressor protein [Streptococcus
pyogenes MGAS315]
<a name = 21905233></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=21905233&dopt=GenPept" >gb|AAM80096.1|</a> putative phosphotransferase system repressor protein [Streptococcus
pyogenes MGAS315]
<a name = 28810536></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=28810536&dopt=GenPept" >dbj|BAC63473.1|</a> putative lactose phosphotransferase system repressor protein
[Streptococcus pyogenes SSI-1]
Length = 256
Score = 60.8 bits (146), Expect = 9e-09
Identities = 39/100 (39%), Positives = 50/100 (50%), Gaps = 4/100 (4%)
Query: 7 ERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMSGN- 65
ER KI ++VNEQG V V D+ S+ T+R DL LE+ G + R HGGA I N
Sbjct: 5 ERLLKITEIVNEQGIVTVNDIIQTLNVSDMTVRRDLDELEKAGKLIRIHGGAQSITMPNK 64
Query: 66 ---SETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT 102
S E Q V KE+++LAS + I G T
Sbjct: 65 KERSNIEKQTVQTKEKWELASYATQLVNDGETIFIGPGTT 104
</PRE>
<PRE>
><a name = 24379890></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=24379890&dopt=GenPept" >ref|NP_721845.1|</a> lactose repressor [Streptococcus mutans UA159]
<a name = 24377866></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=24377866&dopt=GenPept" >gb|AAN59151.1|</a> lactose repressor [Streptococcus mutans UA159]
<a name = 26006992></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=26006992&dopt=GenPept" >sp|P26422|LACR_STRMU</a> Lactose phosphotransferase system repressor
Length = 251
Score = 60.8 bits (146), Expect = 9e-09
Identities = 35/100 (35%), Positives = 56/100 (56%), Gaps = 4/100 (4%)
Query: 3 MNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIM 62
M ER +I +L+N++GT+ V ++ S+ T+R DL LE GV+TR HGGA
Sbjct: 1 MRKEERLEEITKLINKRGTIRVTEVVERLKVSDMTVRRDLTELEGLGVLTRIHGGA---- 56
Query: 63 SGNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT 102
N+ + +E+ +E+ K+ IAQ A +++ EG T
Sbjct: 57 RSNNIFQYKEMSHEEKHSRQIEEKHYIAQKAAELVEEGDT 96
</PRE>
<PRE>
><a name = 48824860></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=48824860&dopt=GenPept" >ref|ZP_00286189.1|</a> COG1349: Transcriptional regulators of sugar metabolism
[Enterococcus faecium]
Length = 267
Score = 60.5 bits (145), Expect = 1e-08
Identities = 37/93 (39%), Positives = 51/93 (54%), Gaps = 5/93 (5%)
Query: 7 ERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMSGNS 66
ERR KI+ L+ +Q V QDL + ASE+TIR DL+ LE G + R HGGA K N
Sbjct: 22 ERRQKILDLLEQQKIVKSQDLVNLLNASESTIRRDLQELENSGFLERVHGGAKKEQLLNF 81
Query: 67 ETETQEVGFKERFQLASAPKNRIAQAAVKMIHE 99
E E K + K +IA++A + I++
Sbjct: 82 EQNMSEKSLKNVHE-----KQQIAKSAAETIND 109
</PRE>
<PRE>
><a name = 50591941></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=50591941&dopt=GenPept" >ref|ZP_00333242.1|</a> COG1349: Transcriptional regulators of sugar metabolism
[Streptococcus suis 89/1591]
Length = 255
Score = 60.5 bits (145), Expect = 1e-08
Identities = 33/100 (33%), Positives = 55/100 (55%), Gaps = 4/100 (4%)
Query: 3 MNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIM 62
MN ER +I +LVN++GTV + ++ + ++ T+R D LE++GV+T+ HGGA
Sbjct: 1 MNKRERLEEITRLVNKKGTVRISEIVELLNVTDMTVRRDFIELEEQGVLTKIHGGA---- 56
Query: 63 SGNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT 102
N + +E E+ K IA+ A ++I +G T
Sbjct: 57 RSNKAFQYREYSHSEKHIQNKEAKQEIAERAAQLIEDGDT 96
</PRE>
<PRE>
><a name = 20808937></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=20808937&dopt=GenPept" >ref|NP_624108.1|</a> Transcriptional regulator of sugar metabolism [Thermoanaerobacter
tengcongensis MB4]
<a name = 20517599></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=20517599&dopt=GenPept" >gb|AAM25712.1|</a> Transcriptional regulator of sugar metabolism [Thermoanaerobacter
tengcongensis MB4]
Length = 268
Score = 60.5 bits (145), Expect = 1e-08
Identities = 35/96 (36%), Positives = 56/96 (58%), Gaps = 5/96 (5%)
Query: 7 ERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMSGNS 66
ERR KI +++++ ++ V +L+ +F SE+TIR DL LE+KG + R HGGA + +G
Sbjct: 5 ERRLKIAEIISKDKSISVSELSKLFNVSESTIRRDLHVLEEKGFIQRTHGGAI-LKTGTH 63
Query: 67 ETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT 102
E F E+ ++ K +I + A +I EG T
Sbjct: 64 ----YEPAFFEKEEVELEAKRKIGRIAASLIEEGDT 95
</PRE>
<PRE>
><a name = 28900158></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=28900158&dopt=GenPept" >ref|NP_799813.1|</a> putative regulatory protein [Vibrio parahaemolyticus RIMD 2210633]
<a name = 28808469></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=28808469&dopt=GenPept" >dbj|BAC61646.1|</a> putative regulatory protein [Vibrio parahaemolyticus RIMD 2210633]
Length = 246
Score = 60.5 bits (145), Expect = 1e-08
Identities = 35/93 (37%), Positives = 53/93 (56%), Gaps = 1/93 (1%)
Query: 8 RRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMSGNSE 67
R+N+I+QLVN++ V V +L+ + S TIR DL FLEQ+G + R HG A + S + +
Sbjct: 4 RQNEILQLVNDRKRVQVTELSDIIGVSGVTIRQDLNFLEQQGYLKRVHGAATALQSDDID 63
Query: 68 TETQEVGFKERFQLASAPKNRIAQAAVKMIHEG 100
T EV F + LA+ + +A +I G
Sbjct: 64 TRL-EVRFDIKQTLANKAADLVAPNETVLIEGG 95
</PRE>
<PRE>
><a name = 59714189></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=59714189&dopt=GenPept" >ref|YP_206964.1|</a> transcriptional regulator, GlpR family [Vibrio fischeri ES114]
<a name = 59482437></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=59482437&dopt=GenPept" >gb|AAW88076.1|</a> transcriptional regulator, GlpR family [Vibrio fischeri ES114]
Length = 258
Score = 60.5 bits (145), Expect = 1e-08
Identities = 39/100 (39%), Positives = 53/100 (53%), Gaps = 5/100 (5%)
Query: 3 MNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIM 62
M++ ERR +I+ +VN+ G V+DLA F S TIR+DL FLE+ G V R HG A
Sbjct: 2 MSAVERRMEIVNVVNQDGKARVEDLAARFDVSSVTIRSDLSFLEKNGYVVRSHGAAIPNT 61
Query: 63 SGNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT 102
+E E +R Q K+ I AA ++I G T
Sbjct: 62 GVIAELTVHE----KRHQNIGT-KSSIGYAAAQLIENGDT 96
</PRE>
<PRE>
><a name = 48824762></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=48824762&dopt=GenPept" >ref|ZP_00286100.1|</a> COG1349: Transcriptional regulators of sugar metabolism
[Enterococcus faecium]
Length = 261
Score = 60.1 bits (144), Expect = 2e-08
Identities = 35/96 (36%), Positives = 51/96 (53%), Gaps = 4/96 (4%)
Query: 7 ERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMSGNS 66
ER I+++VN++G + V ++ S+ T+R DL LE+ G + R HGGA + S
Sbjct: 5 ERLLTIVEMVNKKGILTVNEIINQLDVSDMTVRRDLDELEKSGKLLRVHGGAQSL----S 60
Query: 67 ETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT 102
T QE+ E+ L K IA A +IHEG T
Sbjct: 61 YTLDQELSHTEKATLQIQEKKEIAATAASLIHEGET 96
</PRE>
<PRE>
><a name = 29606990></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=29606990&dopt=GenPept" >dbj|BAC71050.1|</a> putative DeoR-family transcriptional regulator [Streptomyces
avermitilis MA-4680]
<a name = 29829881></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=29829881&dopt=GenPept" >ref|NP_824515.1|</a> putative DeoR-family transcriptional regulator [Streptomyces
avermitilis MA-4680]
Length = 308
Score = 60.1 bits (144), Expect = 2e-08
Identities = 34/86 (39%), Positives = 51/86 (59%), Gaps = 5/86 (5%)
Query: 15 LVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMSGNSETETQEVG 74
+V G V +++LA V SE T+R D+R LE +G++ R HGGA ++ G T+E G
Sbjct: 1 MVRANGAVSLRELARVVQTSEVTVRRDVRALEAEGLLDRRHGGA--VLPGGF---TRESG 55
Query: 75 FKERFQLASAPKNRIAQAAVKMIHEG 100
F ++ LA+A K IA A ++ EG
Sbjct: 56 FPQKSHLATAEKTAIADLAASLVEEG 81
</PRE>
<PRE>
><a name = 54310638></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=54310638&dopt=GenPept" >ref|YP_131658.1|</a> Putative transcriptional regulator, DeoR family [Photobacterium
profundum SS9]
<a name = 46915081></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=46915081&dopt=GenPept" >emb|CAG21856.1|</a> Putative transcriptional regulator, DeoR family [Photobacterium
profundum]
Length = 263
Score = 59.3 bits (142), Expect = 3e-08
Identities = 37/99 (37%), Positives = 52/99 (52%)
Query: 4 NSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMS 63
N+ +RR+ I+ LVNE+G V V LA FA SE TIR DL LE G++ R +GGA + S
Sbjct: 12 NTQQRRHTIVSLVNEKGEVSVDQLATFFATSEVTIRKDLTALETNGLLLRRYGGAVAMPS 71
Query: 64 GNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT 102
+ ++ + +A A RI +I G T
Sbjct: 72 EIVSVDVEDNVSVRKLAIAKAAALRIRDHNRIIIDSGST 110
</PRE>
<PRE>
><a name = 28855951></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=28855951&dopt=GenPept" >gb|AAO59009.1|</a> transcriptional regulator, DeoR family [Pseudomonas syringae pv.
tomato str. DC3000]
<a name = 28872695></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=28872695&dopt=GenPept" >ref|NP_795314.1|</a> transcriptional regulator, DeoR family [Pseudomonas syringae pv.
tomato str. DC3000]
Length = 255
Score = 59.3 bits (142), Expect = 3e-08
Identities = 41/96 (42%), Positives = 52/96 (54%), Gaps = 9/96 (9%)
Query: 4 NSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMS 63
N+ +RR+ I+ L+NEQG V V DLA F SE TIR DL LE G++ R +GGA +
Sbjct: 5 NTPQRRHNILALLNEQGEVSVDDLARRFETSEVTIRKDLAALETNGLLLRRYGGAIPL-- 62
Query: 64 GNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHE 99
E+ E Q S K IA+AAV I E
Sbjct: 63 ------PHEL-ISESSQPVSRYKKAIARAAVSRIRE 91
</PRE>
<PRE>
><a name = 50954419></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=50954419&dopt=GenPept" >ref|YP_061707.1|</a> transcriptional regulator, DeoR family [Leifsonia xyli subsp.
xyli str. CTCB07]
<a name = 50950901></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=50950901&dopt=GenPept" >gb|AAT88602.1|</a> transcriptional regulator, DeoR family [Leifsonia xyli subsp.
xyli str. CTCB07]
Length = 261
Score = 59.3 bits (142), Expect = 3e-08
Identities = 38/95 (40%), Positives = 50/95 (52%), Gaps = 4/95 (4%)
Query: 3 MNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIM 62
M ER+ I +++ E G V V DLA FA + T+R DLR LEQ G++ R HGGA
Sbjct: 1 MYPLERQGLIERVLEEGGRVAVVDLAERFAVTTETVRRDLRVLEQAGILRRVHGGAV--- 57
Query: 63 SGNSETETQEVGFKERFQLASAPKNRIAQAAVKMI 97
T EV ER L +A K IA A+ ++
Sbjct: 58 -ATERIGTAEVPVAERSGLRAATKQLIAARALDVL 91
</PRE>
<PRE>
><a name = 20520720></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=20520720&dopt=GenPept" >emb|CAD30910.1|</a> putative deoR-family transcriptional regulator [Streptomyces
coelicolor A3(2)]
<a name = 21223294></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=21223294&dopt=GenPept" >ref|NP_629073.1|</a> putative deoR-family transcriptional regulator [Streptomyces
coelicolor A3(2)]
Length = 317
Score = 59.3 bits (142), Expect = 3e-08
Identities = 34/86 (39%), Positives = 51/86 (59%), Gaps = 5/86 (5%)
Query: 15 LVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMSGNSETETQEVG 74
+V G V +++LA V SE T+R D+R LE +G++ R HGGA ++ G T+E G
Sbjct: 1 MVRANGAVSLRELARVVQTSEVTVRRDVRALEAEGLLDRRHGGA--VLPGGF---TRESG 55
Query: 75 FKERFQLASAPKNRIAQAAVKMIHEG 100
F ++ LA+A K IA A ++ EG
Sbjct: 56 FPQKSHLATAEKTAIADLAAGLVEEG 81
</PRE>
<PRE>
><a name = 9654914></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=09654914&dopt=GenPept" >gb|AAF93659.1|</a> transcriptional regulator, DeoR family [Vibrio cholerae O1 biovar
eltor str. N16961]
<a name = 15640513></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=15640513&dopt=GenPept" >ref|NP_230140.1|</a> transcriptional regulator, DeoR family [Vibrio cholerae O1 biovar
eltor str. N16961]
<a name = 11356239></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=11356239&dopt=GenPept" >pir||D82316</a> transcription regulator DeoR family VC0486 [imported] - Vibrio
cholerae (strain N16961 serogroup O1)
Length = 260
Score = 58.9 bits (141), Expect = 4e-08
Identities = 38/96 (39%), Positives = 54/96 (56%), Gaps = 8/96 (8%)
Query: 4 NSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMS 63
N+ RR+ I++LVNEQG V V+ L+ F SE TIR DL LE+ G + R +GGA +
Sbjct: 9 NTQLRRHTIVKLVNEQGEVSVEALSSQFETSEVTIRKDLASLEKNGQLLRRYGGAIAL-- 66
Query: 64 GNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHE 99
+EV E + S K +A+AA K+I +
Sbjct: 67 ------PKEVMHDELNEKVSVRKISLAKAAAKLIRD 96
</PRE>
<PRE>
><a name = 15965980></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=15965980&dopt=GenPept" >ref|NP_386333.1|</a> PUTATIVE TRANSCRIPTION REGULATOR PROTEIN [Sinorhizobium meliloti
1021]
<a name = 15075250></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=15075250&dopt=GenPept" >emb|CAC46806.1|</a> PUTATIVE TRANSCRIPTION REGULATOR PROTEIN [Sinorhizobium meliloti]
Length = 261
Score = 58.9 bits (141), Expect = 4e-08
Identities = 35/100 (35%), Positives = 56/100 (56%), Gaps = 5/100 (5%)
Query: 3 MNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIM 62
M +RR I+ ++ E GT V++LA F S+ T+ DL LEQ G++ + HGGA+
Sbjct: 1 MKPEDRRQAIMDVLMEAGTASVEELALRFGVSKMTVHRDLDDLEQAGLLRKVHGGASIQS 60
Query: 63 SGNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT 102
S E++ F+ R ++A+ K R+AQ A +I G +
Sbjct: 61 SPQFESD-----FRYREKIATGEKRRLAQHAATLIEPGQS 95
</PRE>
<PRE>
><a name = 10957464></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=10957464&dopt=GenPept" >ref|NP_051611.1|</a> glycerol-3-phosphate regulon repressor [Deinococcus radiodurans R1]
<a name = 6460893></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=06460893&dopt=GenPept" >gb|AAF12597.1|AE001826_66</a> glycerol-3-phosphate regulon repressor [Deinococcus radiodurans]
<a name = 7471966></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=07471966&dopt=GenPept" >pir||D75626</a> glycerol-3-phosphate regulon repressor - Deinococcus radiodurans
(strain R1)
Length = 272
Score = 58.9 bits (141), Expect = 4e-08
Identities = 33/96 (34%), Positives = 52/96 (54%)
Query: 7 ERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMSGNS 66
ER +I+QL+ E+GT+ L + S ATIR DL L +G++ + HGGAA
Sbjct: 8 ERLTRIVQLLAERGTLRTAALTELLGVSSATIRRDLDVLAGRGLIRKLHGGAALAAPEPE 67
Query: 67 ETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT 102
Q+ +++R Q+ K R+A A+++I G T
Sbjct: 68 APLNQDQFYRDRQQVNHLGKQRLAGRALELIAPGQT 103
</PRE>
<PRE>
><a name = 32030671></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=32030671&dopt=GenPept" >ref|ZP_00133471.1|</a> COG1349: Transcriptional regulators of sugar metabolism
[Haemophilus somnus 2336]
Length = 260
Score = 58.5 bits (140), Expect = 5e-08
Identities = 35/99 (35%), Positives = 51/99 (51%)
Query: 4 NSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMS 63
N+ +RR I+QL+ ++G + V+ L F SE TIR DL LE G + R +GGA I+
Sbjct: 9 NTEQRRQVIMQLLQDKGEISVEQLVQYFNTSEVTIRKDLSALESTGFLLRKYGGAVLILQ 68
Query: 64 GNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT 102
E +E+ + +A A RIA +I G T
Sbjct: 69 EPLEANHEELLSNRKLAIAKAAAERIADNNRIIIDSGST 107
</PRE>
<PRE>
><a name = 37524831></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=37524831&dopt=GenPept" >ref|NP_928175.1|</a> Putative aga operon transcriptional repressor [Photorhabdus
luminescens subsp. laumondii TTO1]
<a name = 36784256></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=36784256&dopt=GenPept" >emb|CAE13127.1|</a> Putative aga operon transcriptional repressor [Photorhabdus
luminescens subsp. laumondii TTO1]
Length = 257
Score = 58.2 bits (139), Expect = 6e-08
Identities = 35/100 (35%), Positives = 55/100 (55%), Gaps = 5/100 (5%)
Query: 1 MTMNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAK 60
M +++ +RR +II L+ +G+V V+ L+ F S TIR DLR+LEQKG R +GGA
Sbjct: 1 MAVDTVKRREQIIDLLCHEGSVRVEHLSTRFGVSSVTIRNDLRYLEQKGCALRSYGGAML 60
Query: 61 IMSGNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEG 100
+ Q+ G ++ K+RIA A + + +G
Sbjct: 61 NQQFAFDRPLQDKG-----RINRDVKSRIAARAAQFVQDG 95
</PRE>
<PRE>
><a name = 15896208></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=15896208&dopt=GenPept" >ref|NP_349557.1|</a> Lactose phosphotransferase system repressor lacR [Clostridium
acetobutylicum ATCC 824]
<a name = 15026008></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=15026008&dopt=GenPept" >gb|AAK80897.1|</a> Lactose phosphotransferase system repressor lacR [Clostridium
acetobutylicum ATCC 824]
<a name = 25302830></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=25302830&dopt=GenPept" >pir||F97263</a> lactose phosphotransferase system repressor lacR [imported] -
Clostridium acetobutylicum
Length = 254
Score = 58.2 bits (139), Expect = 6e-08
Identities = 29/93 (31%), Positives = 54/93 (58%), Gaps = 1/93 (1%)
Query: 7 ERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMSGNS 66
ER +I++++ + + D+ +E T+R DL+ LE KG++ R +GGA K+ + N+
Sbjct: 5 ERFQRILEMLETNNIIKITDINEKLGVTEITVRRDLKVLENKGLIERIYGGAKKV-NANN 63
Query: 67 ETETQEVGFKERFQLASAPKNRIAQAAVKMIHE 99
+ E +E+ E+ ++ K IA+ A +MI E
Sbjct: 64 KVEFKELSNNEKRKINIEQKRHIAKLASEMIEE 96
</PRE>
<PRE>
><a name = 48764928></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=48764928&dopt=GenPept" >ref|ZP_00269479.1|</a> COG1349: Transcriptional regulators of sugar metabolism
[Rhodospirillum rubrum]
Length = 285
Score = 57.8 bits (138), Expect = 8e-08
Identities = 33/92 (35%), Positives = 50/92 (54%), Gaps = 1/92 (1%)
Query: 8 RRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKI-MSGNS 66
RR + +++ E G V DLA SE TIR DL +E+ G V R HGGA + +
Sbjct: 23 RRAAVQEVLQESGYATVADLARRLEVSEMTIRRDLSVMEEDGAVVRTHGGALSVSVEREG 82
Query: 67 ETETQEVGFKERFQLASAPKNRIAQAAVKMIH 98
+ +E F++R + + K RIAQAA ++ +
Sbjct: 83 AFDREEPAFEQRRRQRADVKQRIAQAAARLAY 114
</PRE>
<PRE>
><a name = 46205943></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=46205943&dopt=GenPept" >ref|ZP_00047886.2|</a> COG1349: Transcriptional regulators of sugar metabolism
[Magnetospirillum magnetotacticum MS-1]
Length = 143
Score = 57.8 bits (138), Expect = 8e-08
Identities = 34/95 (35%), Positives = 50/95 (52%), Gaps = 6/95 (6%)
Query: 8 RRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMSGNSE 67
R +I+ + + G V V +A A S+ TIR DL+ LE++G++ R HGGA
Sbjct: 6 RHEEILSQLAQTGRVAVTGIAAALAVSDETIRRDLKMLEERGLLRRIHGGAV------LP 59
Query: 68 TETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT 102
QE ER QL S K R+A A ++ +GM+
Sbjct: 60 RLDQERPLVERSQLNSREKGRVAALAEGLVEDGMS 94
</PRE>
<PRE>
><a name = 26992085></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=26992085&dopt=GenPept" >ref|NP_747510.1|</a> transcriptional regulator, DeoR family [Pseudomonas putida
KT2440]
<a name = 24987227></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=24987227&dopt=GenPept" >gb|AAN70974.1|</a> transcriptional regulator, DeoR family [Pseudomonas putida
KT2440]
Length = 258
Score = 57.8 bits (138), Expect = 8e-08
Identities = 41/96 (42%), Positives = 54/96 (56%), Gaps = 9/96 (9%)
Query: 4 NSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMS 63
N+ +RR+ I+ L++EQG V V LA FA SE TIR DL LE G++ R +GGA +
Sbjct: 5 NTPQRRHNILALLSEQGEVSVDALAKRFATSEVTIRKDLAALETNGLLLRRYGGAVPV-- 62
Query: 64 GNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHE 99
QE+ E Q S+ K IA+AAV I E
Sbjct: 63 ------PQEL-LGEPAQPVSSYKKAIARAAVGRIRE 91
</PRE>
<PRE>
><a name = 23469336></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=23469336&dopt=GenPept" >ref|ZP_00124670.1|</a> COG1349: Transcriptional regulators of sugar metabolism
[Pseudomonas syringae pv. syringae B728a]
Length = 255
Score = 57.8 bits (138), Expect = 8e-08
Identities = 40/96 (41%), Positives = 51/96 (53%), Gaps = 9/96 (9%)
Query: 4 NSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMS 63
N+ +RR+ I+ L+NEQG V V DLA F SE TIR DL LE G++ R +GGA +
Sbjct: 5 NTPQRRHNILALLNEQGEVSVDDLARRFETSEVTIRKDLAALETNGLLLRRYGGAVPLPH 64
Query: 64 GNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHE 99
+Q V S K IA+AAV I E
Sbjct: 65 ELISDGSQPV---------SRYKQAIARAAVCRIRE 91
</PRE>
<PRE>
><a name = 48731314></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=48731314&dopt=GenPept" >ref|ZP_00265059.1|</a> COG1349: Transcriptional regulators of sugar metabolism
[Pseudomonas fluorescens PfO-1]
Length = 258
Score = 57.4 bits (137), Expect = 1e-07
Identities = 41/96 (42%), Positives = 53/96 (55%), Gaps = 9/96 (9%)
Query: 4 NSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMS 63
N+ +RR+ I+ L+NEQG V V +LA F SE TIR DL LE G++ R +GGA
Sbjct: 5 NTPQRRHNILALLNEQGEVSVDELAKRFETSEVTIRKDLAALEGHGLLLRRYGGAI---- 60
Query: 64 GNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHE 99
T QE+ + S K IA+AAVK I E
Sbjct: 61 ----TMPQELVADTSLNV-SKYKQAIARAAVKRIRE 91
</PRE>
<PRE>
><a name = 56965374></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=56965374&dopt=GenPept" >ref|YP_177106.1|</a> transcriptional regulator of sugar metabolism [Bacillus clausii
KSM-K16]
<a name = 56911618></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=56911618&dopt=GenPept" >dbj|BAD66145.1|</a> transcriptional regulator of sugar metabolism [Bacillus clausii
KSM-K16]
Length = 262
Score = 57.4 bits (137), Expect = 1e-07
Identities = 37/96 (38%), Positives = 54/96 (56%), Gaps = 5/96 (5%)
Query: 7 ERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKI--MSG 64
ERR+ I+ ++ E + V++L+ SEAT+R DL LE++G + R HGGA I M
Sbjct: 5 ERRDSILDILRESKRITVKELSERLNVSEATLRMDLNQLEKQGKLERTHGGAILIDDMPA 64
Query: 65 NSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEG 100
SE ET F R Q + K +A+ A KM+ +G
Sbjct: 65 VSEKET---SFSYRKQQNTKEKTLLAEEASKMLSDG 97
</PRE>
<PRE>
><a name = 22959505></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=22959505&dopt=GenPept" >ref|ZP_00007156.1|</a> COG1349: Transcriptional regulators of sugar metabolism
[Rhodobacter sphaeroides 2.4.1]
Length = 256
Score = 57.0 bits (136), Expect = 1e-07
Identities = 34/100 (34%), Positives = 48/100 (48%), Gaps = 4/100 (4%)
Query: 3 MNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIM 62
M S+ER K+++L+ + V LA +F S T+R DL +EQ+GV+ R HGGA +
Sbjct: 1 MQSYERHAKVLELLAVERRVFTNQLARMFDVSRETVRRDLLDMEQEGVLVRVHGGATAV- 59
Query: 63 SGNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT 102
E F ER + K I A +I G T
Sbjct: 60 ---ERDIAPEPAFSERLVAHAGKKAAIGALAATLIPRGST 96
</PRE>
<PRE>
><a name = 47529135></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=47529135&dopt=GenPept" >ref|YP_020484.1|</a> transcriptional regulator, deor family [Bacillus anthracis str.
'Ames Ancestor']
<a name = 49186566></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=49186566&dopt=GenPept" >ref|YP_029818.1|</a> transcriptional regulator, DeoR family [Bacillus anthracis str.
Sterne]
<a name = 30263722></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=30263722&dopt=GenPept" >ref|NP_846099.1|</a> transcriptional regulator, DeoR family [Bacillus anthracis str.
Ames]
<a name = 21401696></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=21401696&dopt=GenPept" >ref|NP_657681.1|</a> deoR, Bacterial regulatory proteins, deoR family [Bacillus
anthracis str. A2012]
<a name = 30258366></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=30258366&dopt=GenPept" >gb|AAP27585.1|</a> transcriptional regulator, DeoR family [Bacillus anthracis str.
Ames]
<a name = 47504283></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=47504283&dopt=GenPept" >gb|AAT32959.1|</a> transcriptional regulator, DeoR family [Bacillus anthracis str.
'Ames Ancestor']
<a name = 49180493></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=49180493&dopt=GenPept" >gb|AAT55869.1|</a> transcriptional regulator, DeoR family [Bacillus anthracis str.
Sterne]
Length = 250
Score = 57.0 bits (136), Expect = 1e-07
Identities = 35/94 (37%), Positives = 54/94 (57%), Gaps = 5/94 (5%)
Query: 7 ERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMSGNS 66
ER I+QLV EQ V +Q L A+SE+TIR DL LE++ ++ R HGGAA +++G
Sbjct: 5 ERHQMILQLVKEQKVVKLQQLVERTASSESTIRRDLAQLEKQRLLKRVHGGAA-VLTGKG 63
Query: 67 ETETQEVGFKERFQLASAPKNRIAQAAVKMIHEG 100
+ T + Q+ K +IA+ A ++ +G
Sbjct: 64 QEPTMVEKSSKNIQI----KQQIAKYAASVVEQG 93
</PRE>
<PRE>
><a name = 56415871></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=56415871&dopt=GenPept" >ref|YP_152946.1|</a> putative DeoR-family transcriptional regulator [Salmonella enterica
subsp. enterica serovar Paratypi A str. ATCC 9150]
<a name = 56130128></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=56130128&dopt=GenPept" >gb|AAV79634.1|</a> putative DeoR-family transcriptional regulator [Salmonella enterica
subsp. enterica serovar Paratypi A str. ATCC 9150]
<a name = 16422588></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=16422588&dopt=GenPept" >gb|AAL22864.1|</a> putative glycerol-3-phosphate regulon repressor [Salmonella
typhimurium LT2]
<a name = 16767290></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=16767290&dopt=GenPept" >ref|NP_462905.1|</a> putative glycerol-3-phosphate regulon repressor [Salmonella
typhimurium LT2]
Length = 267
Score = 57.0 bits (136), Expect = 1e-07
Identities = 31/96 (32%), Positives = 55/96 (57%), Gaps = 8/96 (8%)
Query: 8 RRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMS-GNS 66
R ++++ L++E+G + + +LA + S T+R D+R L ++G++TR HGGA + S N+
Sbjct: 11 RHDRLLMLIDERGYMNIDELASLLEVSTQTVRRDIRKLSEQGLITRHHGGAGRASSVVNT 70
Query: 67 ETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT 102
E +EV + + K IA+A I +G T
Sbjct: 71 AFEQREVSWTQE-------KKAIAEAVADYIPDGST 99
</PRE>
<PRE>
><a name = 16799447></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=16799447&dopt=GenPept" >ref|NP_469715.1|</a> hypothetical protein lin0370 [Listeria innocua Clip11262]
<a name = 16412799></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=16412799&dopt=GenPept" >emb|CAC95603.1|</a> lin0370 [Listeria innocua]
<a name = 25302842></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=25302842&dopt=GenPept" >pir||AC1479</a> regulatory protein (DeoR family) homolog lin0370 [imported] -
Listeria innocua (strain Clip11262)
Length = 254
Score = 57.0 bits (136), Expect = 1e-07
Identities = 33/100 (33%), Positives = 52/100 (52%), Gaps = 5/100 (5%)
Query: 3 MNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIM 62
M FER+NKII L+++ + V +L+ + S +TIR DL LE+ G++ + HGGA +
Sbjct: 1 MFPFERQNKIIHLLDQNNKITVPELSRILDVSISTIRNDLSALEESGMIKKVHGGAVLLK 60
Query: 63 SGNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT 102
S E + F +R K IA+ A ++ T
Sbjct: 61 S-----EEKFTNFNDRIIRNIEEKEAIAKEAATLVKNNQT 95
</PRE>
<PRE>
><a name = 16802397></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=16802397&dopt=GenPept" >ref|NP_463882.1|</a> hypothetical protein lmo0352 [Listeria monocytogenes EGD-e]
<a name = 47096683></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=47096683&dopt=GenPept" >ref|ZP_00234269.1|</a> transcriptional regulator, DeoR family [Listeria monocytogenes str.
1/2a F6854]
<a name = 47014937></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=47014937&dopt=GenPept" >gb|EAL05884.1|</a> transcriptional regulator, DeoR family [Listeria monocytogenes str.
1/2a F6854]
<a name = 16409730></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=16409730&dopt=GenPept" >emb|CAC98431.1|</a> lmo0352 [Listeria monocytogenes]
<a name = 25302846></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=25302846&dopt=GenPept" >pir||AI1118</a> regulatory proteins (DeoR family) homolog lmo0352 [imported] -
Listeria monocytogenes (strain EGD-e)
Length = 254
Score = 57.0 bits (136), Expect = 1e-07
Identities = 33/100 (33%), Positives = 52/100 (52%), Gaps = 5/100 (5%)
Query: 3 MNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIM 62
M FER+NKII L+++ + V +L+ + S +TIR DL LE+ G++ + HGGA +
Sbjct: 1 MFPFERQNKIIHLLDQNSKITVPELSRILDVSISTIRNDLSSLEESGMIKKVHGGAVLLK 60
Query: 63 SGNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT 102
S E + F +R K IA+ A ++ T
Sbjct: 61 S-----EEKFTNFNDRIIRNIEEKEAIAKEAATLVKNNQT 95
</PRE>
<PRE>
><a name = 25011962></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=25011962&dopt=GenPept" >ref|NP_736357.1|</a> hypothetical protein gbs1923 [Streptococcus agalactiae NEM316]
<a name = 22538074></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=22538074&dopt=GenPept" >ref|NP_688925.1|</a> lactose phosphotransferase system repressor [Streptococcus
agalactiae 2603V/R]
<a name = 22534979></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=22534979&dopt=GenPept" >gb|AAN00798.1|</a> lactose phosphotransferase system repressor [Streptococcus
agalactiae 2603V/R]
<a name = 24413504></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=24413504&dopt=GenPept" >emb|CAD47582.1|</a> Unknown [Streptococcus agalactiae NEM316]
Length = 258
Score = 57.0 bits (136), Expect = 1e-07
Identities = 33/96 (34%), Positives = 53/96 (55%), Gaps = 1/96 (1%)
Query: 7 ERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMSGNS 66
ER KII+ VN G V V ++ S+ T+R DL L++ G++ R HGGA K+ + +
Sbjct: 5 ERLQKIIEKVNINGIVTVNEIMEELDVSDMTVRRDLDELDKAGLLIRIHGGAQKV-NASP 63
Query: 67 ETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT 102
+ E E++ + + K IAQ A + I++G T
Sbjct: 64 TPQNYEKSNTEKYDIQTNEKLEIAQFAKQFINDGET 99
</PRE>
<PRE>
><a name = 52141770></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=52141770&dopt=GenPept" >ref|YP_085060.1|</a> transcriptional regulator, DeoR family [Bacillus cereus ZK]
<a name = 51975239></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=51975239&dopt=GenPept" >gb|AAU16789.1|</a> transcriptional regulator, DeoR family [Bacillus cereus ZK]
Length = 250
Score = 57.0 bits (136), Expect = 1e-07
Identities = 35/94 (37%), Positives = 54/94 (57%), Gaps = 5/94 (5%)
Query: 7 ERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMSGNS 66
ER I+QLV EQ V +Q L A+SE+TIR DL LE++ ++ R HGGAA +++G
Sbjct: 5 ERHQMILQLVKEQKVVKLQQLVERTASSESTIRRDLAQLEKQRLLKRVHGGAA-VLTGKG 63
Query: 67 ETETQEVGFKERFQLASAPKNRIAQAAVKMIHEG 100
+ T + Q+ K +IA+ A ++ +G
Sbjct: 64 QEPTMVEKSSKNIQI----KQQIAKYAASVVEQG 93
</PRE>
<PRE>
><a name = 46906592></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=46906592&dopt=GenPept" >ref|YP_012981.1|</a> transcriptional regulator, DeoR family [Listeria monocytogenes str.
4b F2365]
<a name = 47091490></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=47091490&dopt=GenPept" >ref|ZP_00229287.1|</a> transcriptional regulator, DeoR family [Listeria monocytogenes str.
4b H7858]
<a name = 47020167></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=47020167&dopt=GenPept" >gb|EAL10903.1|</a> transcriptional regulator, DeoR family [Listeria monocytogenes str.
4b H7858]
<a name = 46879857></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=46879857&dopt=GenPept" >gb|AAT03158.1|</a> transcriptional regulator, DeoR family [Listeria monocytogenes str.
4b F2365]
Length = 254
Score = 57.0 bits (136), Expect = 1e-07
Identities = 33/100 (33%), Positives = 52/100 (52%), Gaps = 5/100 (5%)
Query: 3 MNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIM 62
M FER+NKII L+++ + V +L+ + S +TIR DL LE+ G++ + HGGA +
Sbjct: 1 MFPFERQNKIIHLLDQNSKITVPELSRILDVSISTIRNDLSSLEESGMIKKVHGGAVLLK 60
Query: 63 SGNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT 102
S E + F +R K IA+ A ++ T
Sbjct: 61 S-----EEKFTNFNDRIIRNIEEKEAIAKEAATLVKNNQT 95
</PRE>
<PRE>
><a name = 5420006></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=05420006&dopt=GenPept" >emb|CAB46398.1|</a> putative transcriptional regulator [Streptomyces coelicolor A3(2)]
<a name = 7481542></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=07481542&dopt=GenPept" >pir||T36911</a> probable transcription regulator - Streptomyces coelicolor
<a name = 21220384></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=21220384&dopt=GenPept" >ref|NP_626163.1|</a> putative transcriptional regulator [Streptomyces coelicolor A3(2)]
Length = 258
Score = 57.0 bits (136), Expect = 1e-07
Identities = 36/101 (35%), Positives = 55/101 (54%), Gaps = 5/101 (4%)
Query: 2 TMNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKI 61
T + ERR++I+++ G+V V LA ++ T+R DLR LE G+V R HGGA +
Sbjct: 5 TRTTEERRHEIVRVARATGSVDVTALAAELGVAKETVRRDLRALEDHGLVRRTHGGAYPV 64
Query: 62 MSGNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT 102
S ET + F+ + K RIA AAV+++ + T
Sbjct: 65 ESAGFET---TLAFRATSHVPE--KRRIASAAVELLGDAET 100
</PRE>
<PRE>
><a name = 30020891></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=30020891&dopt=GenPept" >ref|NP_832522.1|</a> Transcriptional regulator, DeoR family [Bacillus cereus ATCC 14579]
<a name = 29896444></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=29896444&dopt=GenPept" >gb|AAP09723.1|</a> Transcriptional regulator, DeoR family [Bacillus cereus ATCC 14579]
Length = 261
Score = 56.6 bits (135), Expect = 2e-07
Identities = 34/94 (36%), Positives = 53/94 (56%), Gaps = 4/94 (4%)
Query: 7 ERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMSGNS 66
ERR KI++L+N G V+ +DLA F S +IR DL +E+ G++ R HGGA ++ +
Sbjct: 5 ERREKILELLNTDGRVVAKDLAERFDMSIDSIRRDLSIMEKDGLLKRTHGGAIEL----T 60
Query: 67 ETETQEVGFKERFQLASAPKNRIAQAAVKMIHEG 100
+R+ +S ++ IA+ AV I EG
Sbjct: 61 RVRNLAAEPAKRYSDSSIYEDTIARVAVSYIQEG 94
</PRE>
<PRE>
><a name = 27364100></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=27364100&dopt=GenPept" >ref|NP_759628.1|</a> Transcriptional regulator of sugar metabolism [Vibrio vulnificus
CMCP6]
<a name = 27360218></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=27360218&dopt=GenPept" >gb|AAO09155.1|</a> Transcriptional regulator of sugar metabolism [Vibrio vulnificus
CMCP6]
Length = 253
Score = 56.6 bits (135), Expect = 2e-07
Identities = 38/96 (39%), Positives = 54/96 (56%), Gaps = 8/96 (8%)
Query: 4 NSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMS 63
N+ RR+ I +LVNE+G V V +LA F SE TIR DL LE+ G + R +GGA I
Sbjct: 5 NTQLRRHSISKLVNEKGEVSVDELAHKFDTSEVTIRKDLASLEKNGQLLRRYGGAIAI-- 62
Query: 64 GNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHE 99
+EV +E Q S K ++A+ A ++I +
Sbjct: 63 ------PKEVIHEEMSQNVSDRKLKLAEKAAELIRD 92
</PRE>
<PRE>
><a name = 29143897></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=29143897&dopt=GenPept" >ref|NP_807239.1|</a> putative DeoR-family transcriptional regulator [Salmonella enterica
subsp. enterica serovar Typhi Ty2]
<a name = 16762409></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=16762409&dopt=GenPept" >ref|NP_458026.1|</a> putative DeoR-family transcriptional regulator [Salmonella enterica
subsp. enterica serovar Typhi str. CT18]
<a name = 29139533></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=29139533&dopt=GenPept" >gb|AAO71099.1|</a> putative DeoR-family transcriptional regulator [Salmonella enterica
subsp. enterica serovar Typhi Ty2]
<a name = 16504713></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=16504713&dopt=GenPept" >emb|CAD09601.1|</a> putative DeoR-family transcriptional regulator [Salmonella enterica
subsp. enterica serovar Typhi]
<a name = 25302834></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=25302834&dopt=GenPept" >pir||AG0947</a> probable DeoR-family transcription regulator STY3853 [imported] -
Salmonella enterica subsp. enterica serovar Typhi
(strain CT18)
Length = 267
Score = 56.6 bits (135), Expect = 2e-07
Identities = 30/96 (31%), Positives = 55/96 (57%), Gaps = 8/96 (8%)
Query: 8 RRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMS-GNS 66
R ++++ L++E+G + + +LA + S T+R D+R L ++G++TR HGGA + S N+
Sbjct: 11 RHDRLLMLIDERGYMNIDELASLLEVSTQTVRRDIRKLSEQGLITRHHGGAGRASSVVNT 70
Query: 67 ETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT 102
E +E+ + + K IA+A I +G T
Sbjct: 71 AFEQREISWTQE-------KKAIAEAVADYIPDGST 99
</PRE>
<PRE>
><a name = 16078502></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=16078502&dopt=GenPept" >ref|NP_389321.1|</a> transcriptional regulator (DeoR family) [Bacillus subtilis subsp.
subtilis str. 168]
<a name = 2633809></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=02633809&dopt=GenPept" >emb|CAB13311.1|</a> transcriptional regulator (DeoR family) [Bacillus subtilis subsp.
subtilis str. 168]
<a name = 3282123></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=03282123&dopt=GenPept" >gb|AAC24913.1|</a> FruR [Bacillus subtilis]
<a name = 7429263></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=07429263&dopt=GenPept" >pir||B69627</a> transcription repressor of fructose operon fruR - Bacillus subtilis
Length = 251
Score = 56.6 bits (135), Expect = 2e-07
Identities = 34/94 (36%), Positives = 49/94 (52%), Gaps = 5/94 (5%)
Query: 7 ERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMSGNS 66
ER II + + V +Q+L + ASE+TIR DL LE++G + R HGGAAK+
Sbjct: 5 ERHQLIIDQIEKHDVVKIQELINLTNASESTIRRDLSTLEERGFLKRVHGGAAKLSDIRL 64
Query: 67 ETETQEVGFKERFQLASAPKNRIAQAAVKMIHEG 100
E + E K K +IA+ A ++ EG
Sbjct: 65 EPDMLEKSSKNLHD-----KLKIAEKAASLLEEG 93
</PRE>
<PRE>
><a name = 26250639></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=26250639&dopt=GenPept" >ref|NP_756679.1|</a> Hypothetical transcriptional regulator yihW [Escherichia coli
CFT073]
<a name = 26111070></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=26111070&dopt=GenPept" >gb|AAN83253.1|</a> Hypothetical transcriptional regulator yihW [Escherichia coli
CFT073]
Length = 262
Score = 56.6 bits (135), Expect = 2e-07
Identities = 29/95 (30%), Positives = 53/95 (55%), Gaps = 6/95 (6%)
Query: 8 RRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMSGNSE 67
R ++++ L+ E+G + +++LA + S T+R D+R L ++G++TR HGGA ++ S
Sbjct: 11 RHDQLVHLIAERGYMNIEELAQLLDVSTQTVRRDIRKLSEQGLITRHHGGAGRVSS---- 66
Query: 68 TETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT 102
F++R +A K IA+A + E T
Sbjct: 67 --VMNTAFEQRELSLTAEKRAIAEAVADYLPERCT 99
</PRE>
<PRE>
><a name = 17988771></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=17988771&dopt=GenPept" >ref|NP_541404.1|</a> TRANSCRIPTIONAL REGULATOR, DEOR FAMILY [Brucella melitensis 16M]
<a name = 17984587></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=17984587&dopt=GenPept" >gb|AAL53668.1|</a> TRANSCRIPTIONAL REGULATOR, DEOR FAMILY [Brucella melitensis 16M]
<a name = 25301299></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=25301299&dopt=GenPept" >pir||AI3562</a> transcription regulator, deoR family BMEII0426 [imported] -
Brucella melitensis (strain 16M)
Length = 254
Score = 56.6 bits (135), Expect = 2e-07
Identities = 37/100 (37%), Positives = 56/100 (56%), Gaps = 5/100 (5%)
Query: 3 MNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIM 62
M +RR II L+ E V + DLAG FA S+ TI DL LEQ GV+ + GGA +
Sbjct: 1 MKRDDRRQAIINLLIENQAVDLDDLAGRFAVSKMTIHRDLDSLEQSGVLRKVRGGAT--I 58
Query: 63 SGNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT 102
++ E+ F+ R + K ++A+AA++++ GMT
Sbjct: 59 GAGTQFESD---FRFRERQDGEAKLKMARAALELVEPGMT 95
</PRE>
<PRE>
><a name = 23464236></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=23464236&dopt=GenPept" >gb|AAN34041.1|</a> transcriptional regulator, DeoR family [Brucella suis 1330]
<a name = 4204900></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=04204900&dopt=GenPept" >gb|AAD11523.1|</a> unknown [Brucella melitensis biovar Abortus]
<a name = 23500596></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=23500596&dopt=GenPept" >ref|NP_700036.1|</a> transcriptional regulator, DeoR family [Brucella suis 1330]
Length = 254
Score = 56.6 bits (135), Expect = 2e-07
Identities = 39/101 (38%), Positives = 55/101 (54%), Gaps = 7/101 (6%)
Query: 3 MNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIM 62
M +RR II L+ E V + DLAG FA S+ TI DL LEQ GV+ + GGA
Sbjct: 1 MKRDDRRQAIINLLIENQAVDLDDLAGRFAVSKMTIHRDLDSLEQSGVLRKVRGGA---- 56
Query: 63 SGNSETETQ-EVGFKERFQLASAPKNRIAQAAVKMIHEGMT 102
+ TQ E F+ R + K ++A+AA++++ GMT
Sbjct: 57 --TIDAGTQFESDFRFRERQDGEAKLKMARAALELVEPGMT 95
</PRE>
<PRE>
><a name = 46156581></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=46156581&dopt=GenPept" >ref|ZP_00132400.2|</a> COG1349: Transcriptional regulators of sugar metabolism
[Haemophilus somnus 2336]
Length = 252
Score = 56.6 bits (135), Expect = 2e-07
Identities = 30/93 (32%), Positives = 48/93 (51%), Gaps = 6/93 (6%)
Query: 8 RRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMSGNSE 67
R KII+L+ ++G + ++L + S TIR DL L + ++TR HGGA +
Sbjct: 6 RHKKIIELIKQKGYLSTEELVNILNVSPQTIRRDLNELAENNLITRHHGGATSL------ 59
Query: 68 TETQEVGFKERFQLASAPKNRIAQAAVKMIHEG 100
+ ++ + ER S+ K RI Q K+I G
Sbjct: 60 STSENSDYSERQHFFSSEKRRIGQEVAKIIPNG 92
</PRE>
<PRE>
><a name = 16272561></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=16272561&dopt=GenPept" >ref|NP_438777.1|</a> glycerol-3-phosphate regulon repressor [Haemophilus influenzae Rd
KW20]
<a name = 1573613></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=01573613&dopt=GenPept" >gb|AAC22278.1|</a> glycerol-3-phosphate regulon repressor (glpR) [Haemophilus
influenzae Rd KW20]
<a name = 1074159></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=01074159&dopt=GenPept" >pir||A64082</a> glycerol-3-phosphate regulon repressor homolog HI0619 - Haemophilus
influenzae (strain Rd KW20)
<a name = 1169955></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=01169955&dopt=GenPept" >sp|P44784|GLPR_HAEIN</a> Glycerol-3-phosphate regulon repressor
Length = 255
Score = 56.2 bits (134), Expect = 2e-07
Identities = 33/93 (35%), Positives = 46/93 (49%), Gaps = 6/93 (6%)
Query: 8 RRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMSGNSE 67
R KII+LV + G + ++L S TIR DL L + ++ R HGGAA S
Sbjct: 6 RHQKIIKLVEQSGYLSTEELVAALDVSPQTIRRDLNILAELDLIRRHHGGAA------SP 59
Query: 68 TETQEVGFKERFQLASAPKNRIAQAAVKMIHEG 100
+ + + +R Q S KN IAQ K+I G
Sbjct: 60 SSAENSDYVDRKQFFSLQKNNIAQEVAKLIPNG 92
</PRE>
<PRE>
><a name = 28853607></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=28853607&dopt=GenPept" >gb|AAO56674.1|</a> transcriptional regulator, DeoR family [Pseudomonas syringae pv.
tomato str. DC3000]
<a name = 28870360></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=28870360&dopt=GenPept" >ref|NP_792979.1|</a> transcriptional regulator, DeoR family [Pseudomonas syringae pv.
tomato str. DC3000]
Length = 252
Score = 56.2 bits (134), Expect = 2e-07
Identities = 36/94 (38%), Positives = 55/94 (58%), Gaps = 6/94 (6%)
Query: 8 RRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMSGNSE 67
R ++I++L+ +Q V DLA + SE TIR D + LE++G + R HGGA I+ +SE
Sbjct: 6 RLDEIMRLLAQQQRVKASDLAQLLFVSEETIRRDFKHLEEEGRLRRIHGGA--ILPRSSE 63
Query: 68 TETQEVGFKERFQLASAPKNRIAQAAVKMIHEGM 101
E+ +ER +L K IA A +++ EGM
Sbjct: 64 ----ELPLQERSRLKPRAKAGIATCAAQLVTEGM 93
</PRE>
<PRE>
><a name = 37678685></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=37678685&dopt=GenPept" >ref|NP_933294.1|</a> transcriptional regulator of sugar metabolism [Vibrio vulnificus
YJ016]
<a name = 37197425></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=37197425&dopt=GenPept" >dbj|BAC93265.1|</a> transcriptional regulator of sugar metabolism [Vibrio vulnificus
YJ016]
Length = 253
Score = 56.2 bits (134), Expect = 2e-07
Identities = 38/96 (39%), Positives = 54/96 (56%), Gaps = 8/96 (8%)
Query: 4 NSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMS 63
N+ RR+ I +LVNE+G V V +LA F SE TIR DL LE+ G + R +GGA I
Sbjct: 5 NTQLRRHSISKLVNEKGEVSVDELAHKFDTSEVTIRKDLASLEKNGQLLRRYGGAIAI-- 62
Query: 64 GNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHE 99
+EV +E Q S K ++A+ A ++I +
Sbjct: 63 ------PKEVIHEEMSQNISDRKLKLAEKAAELIRD 92
</PRE>
<PRE>
><a name = 19746842></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=19746842&dopt=GenPept" >ref|NP_607978.1|</a> putative lactose phosphotransferase system repressor protein
[Streptococcus pyogenes MGAS8232]
<a name = 19749082></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=19749082&dopt=GenPept" >gb|AAL98477.1|</a> putative lactose phosphotransferase system repressor protein
[Streptococcus pyogenes MGAS8232]
<a name = 13622952></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=13622952&dopt=GenPept" >gb|AAK34627.1|</a> putative lactose phosphotransferase system repressor protein
[Streptococcus pyogenes M1 GAS]
<a name = 15675732></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=15675732&dopt=GenPept" >ref|NP_269906.1|</a> putative lactose phosphotransferase system repressor protein
[Streptococcus pyogenes M1 GAS]
Length = 257
Score = 56.2 bits (134), Expect = 2e-07
Identities = 33/100 (33%), Positives = 51/100 (51%)
Query: 3 MNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIM 62
M ER KI+ ++ G + V+D+ S+ T R DL L KG++ R HGGA +
Sbjct: 1 MKKKERHEKILDILKVDGFIKVKDIIDEMNISDMTARRDLDTLADKGLLIRTHGGAQYLD 60
Query: 63 SGNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT 102
+++ E E E+ L + K +IAQ A +I +G T
Sbjct: 61 YSSAKDEGHEKTHTEKKVLQTTEKKQIAQRAKNIIKDGET 100
</PRE>
<PRE>
><a name = 56808038></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=56808038&dopt=GenPept" >ref|ZP_00365838.1|</a> COG1349: Transcriptional regulators of sugar metabolism
[Streptococcus pyogenes M49 591]
Length = 257
Score = 56.2 bits (134), Expect = 2e-07
Identities = 33/100 (33%), Positives = 51/100 (51%)
Query: 3 MNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIM 62
M ER KI+ ++ G + V+D+ S+ T R DL L KG++ R HGGA +
Sbjct: 1 MKKKERHEKILDILKVDGFIKVKDIIDEMNISDMTARRDLDTLADKGLLIRTHGGAQYLD 60
Query: 63 SGNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT 102
+++ E E E+ L + K +IAQ A +I +G T
Sbjct: 61 YSSAKDEGHEKTHTEKKVLQTTEKKQIAQRAKNIIKDGET 100
</PRE>
<PRE>
><a name = 28896570></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=28896570&dopt=GenPept" >ref|NP_802920.1|</a> putative lactose phosphotransferase system repressor protein
[Streptococcus pyogenes SSI-1]
<a name = 21911196></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=21911196&dopt=GenPept" >ref|NP_665464.1|</a> putative lactose phosphotransferase system repressor protein
[Streptococcus pyogenes MGAS315]
<a name = 21905408></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=21905408&dopt=GenPept" >gb|AAM80267.1|</a> putative lactose phosphotransferase system repressor protein
[Streptococcus pyogenes MGAS315]
<a name = 28811824></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=28811824&dopt=GenPept" >dbj|BAC64753.1|</a> putative lactose phosphotransferase system repressor protein
[Streptococcus pyogenes SSI-1]
Length = 257
Score = 56.2 bits (134), Expect = 2e-07
Identities = 33/100 (33%), Positives = 51/100 (51%)
Query: 3 MNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIM 62
M ER KI+ ++ G + V+D+ S+ T R DL L KG++ R HGGA +
Sbjct: 1 MKKKERHEKILDILKVDGFIKVKDIIDEMNISDMTARRDLDTLADKGLLIRTHGGAQYLD 60
Query: 63 SGNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT 102
+++ E E E+ L + K +IAQ A +I +G T
Sbjct: 61 YSSAKDEGHEKTHTEKKVLQTTEKKQIAQRAKNIIKDGET 100
</PRE>
<PRE>
><a name = 50914994></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=50914994&dopt=GenPept" >ref|YP_060966.1|</a> Lactose phosphotransferase system repressor [Streptococcus pyogenes
MGAS10394]
<a name = 50904068></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=50904068&dopt=GenPept" >gb|AAT87783.1|</a> Lactose phosphotransferase system repressor [Streptococcus pyogenes
MGAS10394]
Length = 257
Score = 56.2 bits (134), Expect = 2e-07
Identities = 33/100 (33%), Positives = 51/100 (51%)
Query: 3 MNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIM 62
M ER KI+ ++ G + V+D+ S+ T R DL L KG++ R HGGA +
Sbjct: 1 MKKKERHEKILDILKVDGFIKVKDIIDEMNISDMTARRDLDTLADKGLLIRTHGGAQYLD 60
Query: 63 SGNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT 102
+++ E E E+ L + K +IAQ A +I +G T
Sbjct: 61 YSSAKDEGHEKTHTEKKVLQTTEKKQIAQRAKNIIKDGET 100
</PRE>
<PRE>
><a name = 9947445></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=09947445&dopt=GenPept" >gb|AAG04879.1|</a> probable transcriptional regulator [Pseudomonas aeruginosa PAO1]
<a name = 32041538></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=32041538&dopt=GenPept" >ref|ZP_00139121.1|</a> COG1349: Transcriptional regulators of sugar metabolism
[Pseudomonas aeruginosa UCBPP-PA14]
<a name = 11352037></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=11352037&dopt=GenPept" >pir||D83458</a> probable transcription regulator PA1490 [imported] - Pseudomonas
aeruginosa (strain PAO1)
<a name = 15596687></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=15596687&dopt=GenPept" >ref|NP_250181.1|</a> probable transcriptional regulator [Pseudomonas aeruginosa PAO1]
Length = 258
Score = 56.2 bits (134), Expect = 2e-07
Identities = 33/98 (33%), Positives = 52/98 (53%), Gaps = 5/98 (5%)
Query: 3 MNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIM 62
M ERR I++L+ ++ + V +LA + S+ TIR DL L ++G+V++FHGGAA
Sbjct: 1 MRPEERRRHILELLRQRERISVDELARTLSTSQETIRRDLAALAEQGLVSKFHGGAALPP 60
Query: 63 SGNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEG 100
SG E F+ R + K +A+ A + G
Sbjct: 61 SGEHEN-----AFQTRMNEHAQEKRAVARYAAGLFGPG 93
</PRE>
<PRE>
><a name = 23467840></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=23467840&dopt=GenPept" >ref|ZP_00123417.1|</a> COG1349: Transcriptional regulators of sugar metabolism
[Haemophilus somnus 129PT]
Length = 252
Score = 56.2 bits (134), Expect = 2e-07
Identities = 30/93 (32%), Positives = 48/93 (51%), Gaps = 6/93 (6%)
Query: 8 RRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMSGNSE 67
R KII+L+ ++G + ++L + S TIR DL L + ++TR HGGA +
Sbjct: 6 RHKKIIELIKQKGYLSTEELVNFLSVSPQTIRRDLNELAENNLITRHHGGATSL------ 59
Query: 68 TETQEVGFKERFQLASAPKNRIAQAAVKMIHEG 100
+ ++ + ER S+ K RI Q K+I G
Sbjct: 60 STSENSDYSERQHFFSSEKRRIGQEVAKIIPNG 92
</PRE>
<PRE>
><a name = 33597632></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=33597632&dopt=GenPept" >ref|NP_885275.1|</a> glycerol-3-phosphate regulon repressor protein [Bordetella
parapertussis 12822]
<a name = 33574060></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=33574060&dopt=GenPept" >emb|CAE38383.1|</a> glycerol-3-phosphate regulon repressor protein [Bordetella
parapertussis]
Length = 269
Score = 55.8 bits (133), Expect = 3e-07
Identities = 32/100 (32%), Positives = 58/100 (58%), Gaps = 7/100 (7%)
Query: 1 MTMNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAK 60
MT+N R++ +++LV QG+ ++ LA F + T+R D+ L + G+++RFHGG +
Sbjct: 8 MTLNP--RQSALVELVRTQGSATIEALARHFDVTLQTVRRDVNLLSEAGMLSRFHGG-VR 64
Query: 61 IMSGNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEG 100
I S E + +++R L + K RIA+A + + +G
Sbjct: 65 IESSTIE----NIAYRKRQGLHAEGKRRIAEAVARAVPDG 100
</PRE>
<PRE>
><a name = 33593615></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=33593615&dopt=GenPept" >ref|NP_881259.1|</a> glycerol-3-phosphate regulon repressor protein [Bordetella
pertussis Tohama I]
<a name = 33563688></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=33563688&dopt=GenPept" >emb|CAE42919.1|</a> glycerol-3-phosphate regulon repressor protein [Bordetella
pertussis Tohama I]
Length = 262
Score = 55.8 bits (133), Expect = 3e-07
Identities = 32/100 (32%), Positives = 58/100 (58%), Gaps = 7/100 (7%)
Query: 1 MTMNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAK 60
MT+N R++ +++LV QG+ ++ LA F + T+R D+ L + G+++RFHGG +
Sbjct: 1 MTLNP--RQSALVELVRTQGSATIEALARHFDVTLQTVRRDVNLLSEAGMLSRFHGG-VR 57
Query: 61 IMSGNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEG 100
I S E + +++R L + K RIA+A + + +G
Sbjct: 58 IESSTIE----NIAYRKRQGLHAEGKRRIAEAVARAVPDG 93
</PRE>
<PRE>
><a name = 33602035></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=33602035&dopt=GenPept" >ref|NP_889595.1|</a> glycerol-3-phosphate regulon repressor protein [Bordetella
bronchiseptica RB50]
<a name = 33576473></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=33576473&dopt=GenPept" >emb|CAE33551.1|</a> glycerol-3-phosphate regulon repressor protein [Bordetella
bronchiseptica RB50]
Length = 269
Score = 55.8 bits (133), Expect = 3e-07
Identities = 32/100 (32%), Positives = 58/100 (58%), Gaps = 7/100 (7%)
Query: 1 MTMNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAK 60
MT+N R++ +++LV QG+ ++ LA F + T+R D+ L + G+++RFHGG +
Sbjct: 8 MTLNP--RQSALVELVRTQGSATIEALARHFDVTLQTVRRDVNLLSEAGMLSRFHGG-VR 64
Query: 61 IMSGNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEG 100
I S E + +++R L + K RIA+A + + +G
Sbjct: 65 IESSTIE----NIAYRKRQGLHAEGKRRIAEAVARAVPDG 100
</PRE>
<PRE>
><a name = 52424242></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=52424242&dopt=GenPept" >ref|YP_087379.1|</a> GlpR protein [Mannheimia succiniciproducens MBEL55E]
<a name = 52306294></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=52306294&dopt=GenPept" >gb|AAU36794.1|</a> GlpR protein [Mannheimia succiniciproducens MBEL55E]
Length = 258
Score = 55.8 bits (133), Expect = 3e-07
Identities = 34/99 (34%), Positives = 51/99 (51%)
Query: 4 NSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMS 63
N+ +RR+ I+QL+ ++G V V+ L +F SE TIR DL LE G + R +GGA +
Sbjct: 9 NTQQRRHGIMQLLQQKGEVSVEQLVQLFETSEVTIRKDLTALESNGFLLRRYGGAILMPQ 68
Query: 64 GNSETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT 102
+ E K++ +A A RI +I G T
Sbjct: 69 DLMDESQDENLSKQKLSIAKAAAERIRDHHRIIIDSGST 107
</PRE>
<PRE>
><a name = 8894815></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=08894815&dopt=GenPept" >emb|CAB96011.1|</a> putative transcriptional regulatory protein [Streptomyces
coelicolor A3(2)]
<a name = 21219542></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=21219542&dopt=GenPept" >ref|NP_625321.1|</a> putative transcriptional regulatory protein [Streptomyces
coelicolor A3(2)]
Length = 274
Score = 55.8 bits (133), Expect = 3e-07
Identities = 32/94 (34%), Positives = 50/94 (53%), Gaps = 4/94 (4%)
Query: 7 ERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMSGNS 66
+RR I+ V +G V V +L S+ T+R DL L ++GV+ + HGGA + +
Sbjct: 11 QRRALILDEVRRRGGVRVNELTRKLGVSDMTVRRDLDALSRQGVLEKVHGGAVPV----A 66
Query: 67 ETETQEVGFKERFQLASAPKNRIAQAAVKMIHEG 100
E T E GF+ + L K IA+AA +++ G
Sbjct: 67 EASTHEPGFEAKSGLEPTAKEDIARAAAELVAPG 100
</PRE>
<PRE>
><a name = 53692589></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=53692589&dopt=GenPept" >ref|ZP_00123001.2|</a> COG1349: Transcriptional regulators of sugar metabolism
[Haemophilus somnus 129PT]
Length = 257
Score = 55.8 bits (133), Expect = 3e-07
Identities = 35/96 (36%), Positives = 52/96 (54%), Gaps = 9/96 (9%)
Query: 8 RRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMSGNSE 67
R I+QL+N G V V DLA F S TIR DL L+++G++ R HGGA
Sbjct: 11 RETLILQLINSSGKVNVNDLAKQFDVSVETIRRDLTDLDKRGLIHRVHGGAV-------S 63
Query: 68 TETQEVG--FKERFQLASAPKNRIAQAAVKMIHEGM 101
+ ++VG F+ R + K IA +A++ + EG+
Sbjct: 64 RKAKDVGSSFQSRQRFNCDKKRAIAASAIEYMFEGI 99
</PRE>
<PRE>
><a name = 36958660></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=36958660&dopt=GenPept" >gb|AAQ87128.1|</a> Transcriptional repressor [Rhizobium sp. NGR234]
Length = 251
Score = 55.8 bits (133), Expect = 3e-07
Identities = 33/90 (36%), Positives = 53/90 (58%), Gaps = 5/90 (5%)
Query: 13 IQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMSGNSETETQE 72
+ ++ E GT V+DL+ F S+ T+ DL LEQ G++ + HGGA+ S E++
Sbjct: 1 MDVLMEAGTASVEDLSIRFGVSKMTVHRDLDDLEQAGLLRKVHGGASIQSSPQFESD--- 57
Query: 73 VGFKERFQLASAPKNRIAQAAVKMIHEGMT 102
F+ R ++A+A K RIA+ AV +I G +
Sbjct: 58 --FRYREKIATAEKRRIAEHAVTLIEPGQS 85
</PRE>
<PRE>
><a name = 30021814></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=30021814&dopt=GenPept" >ref|NP_833445.1|</a> Fructose repressor [Bacillus cereus ATCC 14579]
<a name = 29897370></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=29897370&dopt=GenPept" >gb|AAP10646.1|</a> Fructose repressor [Bacillus cereus ATCC 14579]
Length = 250
Score = 55.5 bits (132), Expect = 4e-07
Identities = 35/94 (37%), Positives = 53/94 (56%), Gaps = 5/94 (5%)
Query: 7 ERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMSGNS 66
ER I+QLV EQ V +Q L +SE+TIR DL LE++ ++ R HGGAA +++G
Sbjct: 5 ERHQMILQLVKEQKVVKLQQLVERTESSESTIRRDLAQLEKQRLLKRVHGGAA-VLTGKG 63
Query: 67 ETETQEVGFKERFQLASAPKNRIAQAAVKMIHEG 100
+ T + Q+ K +IA+ A +I +G
Sbjct: 64 QEPTMVEKSSKNIQI----KQQIAKYAASVIEQG 93
</PRE>
<PRE>
><a name = 24376214></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=24376214&dopt=GenPept" >ref|NP_720258.1|</a> transcriptional regulator, DeoR family [Shewanella oneidensis
MR-1]
<a name = 24351271></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=24351271&dopt=GenPept" >gb|AAN57701.1|</a> transcriptional regulator, DeoR family [Shewanella oneidensis
MR-1]
Length = 256
Score = 55.5 bits (132), Expect = 4e-07
Identities = 39/97 (40%), Positives = 56/97 (57%), Gaps = 11/97 (11%)
Query: 4 NSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMS 63
N+ +RR+ II ++NEQG V V +L+ F SE TIR DL LE+ G++ R +GGA I
Sbjct: 5 NTQQRRHSIISILNEQGEVSVDELSLRFETSEVTIRKDLAELEKTGLLLRRYGGAVAI-- 62
Query: 64 GNSETETQEVGFKERFQLASAP-KNRIAQAAVKMIHE 99
EV ++F AP K IA+AA ++I +
Sbjct: 63 ------PDEV--TQQFSAKIAPNKLSIAKAAAQLIKD 91
</PRE>
<PRE>
><a name = 56480467></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=56480467&dopt=GenPept" >ref|NP_709684.2|</a> putative DEOR-type transcriptional regulator [Shigella flexneri 2a
str. 301]
<a name = 56384018></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=56384018&dopt=GenPept" >gb|AAN45391.2|</a> putative DEOR-type transcriptional regulator [Shigella flexneri 2a
str. 301]
<a name = 30064827></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=30064827&dopt=GenPept" >ref|NP_838998.1|</a> putative DEOR-type transcriptional regulator [Shigella flexneri 2a
str. 2457T]
<a name = 30043087></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=30043087&dopt=GenPept" >gb|AAP18809.1|</a> putative DEOR-type transcriptional regulator [Shigella flexneri 2a
str. 2457T]
Length = 261
Score = 55.5 bits (132), Expect = 4e-07
Identities = 32/96 (33%), Positives = 54/96 (56%), Gaps = 8/96 (8%)
Query: 8 RRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMS-GNS 66
R ++++ L+ E+G + + +LA + S T+R D+R L ++G++TR HGGA + S N+
Sbjct: 11 RHDQLLMLIAERGYMNIDELANLLDVSTQTVRRDIRKLSEQGLITRHHGGAGRASSVVNT 70
Query: 67 ETETQEVGFKERFQLASAPKNRIAQAAVKMIHEGMT 102
E +EV E+ K IA+A I +G T
Sbjct: 71 AFEQREVSQTEK-------KKAIAEAVADYIPDGST 99
</PRE>
<PRE>
><a name = 16801493></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=16801493&dopt=GenPept" >ref|NP_471761.1|</a> hypothetical protein lin2431 [Listeria innocua Clip11262]
<a name = 16414953></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=16414953&dopt=GenPept" >emb|CAC97658.1|</a> lin2431 [Listeria innocua]
<a name = 25302840></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=25302840&dopt=GenPept" >pir||AB1736</a> regulatory protein DeoR family homolog lin2431 [imported] -
Listeria innocua (strain Clip11262)
Length = 250
Score = 55.5 bits (132), Expect = 4e-07
Identities = 28/74 (37%), Positives = 44/74 (59%)
Query: 3 MNSFERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIM 62
M + ER+ I++ + + G + +Q+L SE+TIR DL LE++G++ R HGGA ++
Sbjct: 1 MLNAERKQLIMESIEKLGVIKLQELVEGLDTSESTIRRDLIELEEQGLIERVHGGAKLVI 60
Query: 63 SGNSETETQEVGFK 76
S N E E FK
Sbjct: 61 SHNQEPSMNEKSFK 74
</PRE>
<PRE>
><a name = 42781855></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=42781855&dopt=GenPept" >ref|NP_979102.1|</a> transcriptional regulator, DeoR family [Bacillus cereus ATCC 10987]
<a name = 42737779></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=42737779&dopt=GenPept" >gb|AAS41710.1|</a> transcriptional regulator, DeoR family [Bacillus cereus ATCC 10987]
Length = 256
Score = 55.5 bits (132), Expect = 4e-07
Identities = 33/94 (35%), Positives = 51/94 (54%), Gaps = 4/94 (4%)
Query: 7 ERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMSGNS 66
ERR KI++L+ + G V+ +DLA F S +IR DL +E+ G++ R HGGA ++ +
Sbjct: 5 ERREKILELLKKNGRVIAKDLAESFDMSIDSIRRDLSIMEKDGLLKRTHGGAIEL----A 60
Query: 67 ETETQEVGFKERFQLASAPKNRIAQAAVKMIHEG 100
ER+ S ++ IA+ A I EG
Sbjct: 61 RVRNLAAERFERYSNGSVYEDAIAKIAASYIQEG 94
</PRE>
<PRE>
><a name = 46187453></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=46187453&dopt=GenPept" >ref|ZP_00205356.1|</a> COG1349: Transcriptional regulators of sugar metabolism
[Pseudomonas syringae pv. syringae B728a]
Length = 252
Score = 55.5 bits (132), Expect = 4e-07
Identities = 36/94 (38%), Positives = 55/94 (58%), Gaps = 6/94 (6%)
Query: 8 RRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMSGNSE 67
R ++I++L+ +Q V DLA + SE TIR D + LE++G + R HGGA I+ +SE
Sbjct: 6 RLDEIMRLLAQQQRVKASDLAQLLFVSEETIRRDFKHLEEEGRLRRIHGGA--ILPRSSE 63
Query: 68 TETQEVGFKERFQLASAPKNRIAQAAVKMIHEGM 101
E+ +ER +L K IA A +++ EGM
Sbjct: 64 ----ELPLQERSRLKPRAKACIAVRAAQLVSEGM 93
</PRE>
<PRE>
><a name = 23494680></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=23494680&dopt=GenPept" >dbj|BAC19646.1|</a> putative transcription regulator [Corynebacterium efficiens YS-314]
<a name = 25029392></a><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Protein&list_uids=25029392&dopt=GenPept" >ref|NP_739446.1|</a> putative transcription regulator [Corynebacterium efficiens YS-314]
Length = 267
Score = 55.5 bits (132), Expect = 4e-07
Identities = 34/94 (36%), Positives = 49/94 (52%), Gaps = 1/94 (1%)
Query: 7 ERRNKIIQLVNEQGTVLVQDLAGVFAASEATIRADLRFLEQKGVVTRFHGGAAKIMSGNS 66
ERR +I Q+V E+G++ V DL SE T+R DL LE++GV+ R HGGA +
Sbjct: 16 ERRARIAQVVQERGSIRVVDLVDPLGVSEPTLRKDLTILEKEGVLKRTHGGAIAVEGAVP 75
Query: 67 ETETQEVG-FKERFQLASAPKNRIAQAAVKMIHE 99
E Q + A K+ IA+ + MI +
Sbjct: 76 EVADQPTSPAPPQPATPQATKDGIARYCLDMIED 109
</PRE>
<form>
<PRE>
Database: All non-redundant GenBank CDS
translations+PDB+SwissProt+PIR+PRF excluding environmental samples
Posted date: Feb 17, 2005 10:55 AM
Number of letters in database: 790,010,076
Number of sequences in database: 2,329,789
Lambda K H
0.318 0.129 0.357
Gapped
Lambda K H
0.267 0.0410 0.140
Matrix: BLOSUM62
Gap Penalties: Existence: 11, Extension: 1
Number of Hits to DB: 28,364,630
Number of Sequences: 2329789
Number of extensions: 835524
Number of successful extensions: 2347
Number of sequences better than 10.0: 42
Number of HSP's better than 10.0 without gapping: 40
Number of HSP's successfully gapped in prelim test: 2
Number of HSP's that attempted gapping in prelim test: 2303
Number of HSP's gapped (non-prelim): 42
length of query: 112
length of database: 790,010,076
effective HSP length: 80
effective length of query: 32
effective length of database: 603,626,956
effective search space: 19316062592
effective search space used: 19316062592
T: 11
A: 40
X1: 16 ( 7.3 bits)
X2: 38 (14.6 bits)
X3: 64 (24.7 bits)
S1: 41 (21.8 bits)
S2: 69 (31.2 bits)
</form>
|