Mercurial > repos > jankanis > blast2html
annotate test-data/blast xml example1.html @ 56:d2fb88c1e866
fix interpreter setting
author | Jan Kanis <jan.code@jankanis.nl> |
---|---|
date | Mon, 26 May 2014 14:20:17 +0200 |
parents | 3bb5da68305e |
children | f611cf649c90 |
rev | line source |
---|---|
32 | 1 <!DOCTYPE html> |
2 <html> | |
3 <head> | |
4 <meta charset="UTF-8"> | |
33
3bb5da68305e
add test update script, add url to github page
Jan Kanis <jan.code@jankanis.nl>
parents:
32
diff
changeset
|
5 <meta name=generator content="blast2html; see https://github.com/thehyve/blast2html/"> |
32 | 6 |
7 <title>Blast output</title> | |
8 | |
9 <style> | |
10 body { | |
11 color: #333333; | |
12 font-family: Arial,Sans-Serif; | |
13 } | |
14 | |
15 :link { | |
16 color: #336699; | |
17 } | |
18 | |
19 .right { | |
20 float: right; | |
21 } | |
22 | |
23 /* Galaxy with html sanitization enabled strips the header of this html page. If so, show the user a warning.*/ | |
24 #strip_html_warning { | |
25 display: none; | |
26 } | |
27 | |
28 #content { | |
29 margin: 0 2em; | |
30 padding: 0.5em; | |
31 border: 1px solid #888888; | |
32 background-color: #d3dff5; | |
33 } | |
34 | |
35 h1, h2, h3, h4, h5, h6 { | |
36 color: #2A6979; | |
37 font-family: arial,verdana,sans-serif; | |
38 letter-spacing: -1px; | |
39 margin: 1.2em 0 0.3em; | |
40 } | |
41 | |
42 h1 { | |
43 border-bottom: 1px solid #CCCCCC; | |
44 font-size: 150%; | |
45 padding-bottom: 0.1em; | |
46 } | |
47 | |
48 h2 { | |
49 font-size: 120%; | |
50 font-weight: bold; | |
51 } | |
52 | |
53 h4.darkHeader { | |
54 color: #4D4D4D; | |
55 letter-spacing: 0; | |
56 font-weight: bold; | |
57 } | |
58 | |
59 #nodata { | |
60 font-weight: bold; | |
61 } | |
62 | |
63 .index { | |
64 margin-bottom: 3em; | |
65 } | |
66 .index div.indexentry { | |
67 margin: 1.2em 1.6em; | |
68 font-weight: bold; | |
69 font-size: 100%; | |
70 } | |
71 | |
72 .headerdata { | |
73 font-size: 90%; | |
74 } | |
75 .headerdata .param { | |
76 font-weight: bold; | |
77 text-align: right; | |
78 padding: 0 1em; | |
79 } | |
80 | |
81 .grey { | |
82 background-color: #eeeeee; | |
83 border: 1px solid #cccccc; | |
84 padding: 1em; | |
85 } | |
86 | |
87 .white { | |
88 background-color: white; | |
89 border: 1px solid #cccccc; | |
90 padding: 1.5em 2%; | |
91 } | |
92 | |
93 .graphicrow { | |
94 clear: left; | |
95 width: 100%; | |
96 } | |
97 | |
98 .graphicitem { | |
99 float: left; | |
100 } | |
101 | |
102 | |
103 | |
104 .graphics .grey { | |
105 text-align: center; | |
106 } | |
107 | |
108 .graphic { | |
109 background-color: white; | |
110 border: 2px solid black; | |
111 padding: 1.5em; | |
112 margin: auto; | |
113 } | |
114 | |
115 .centered, .defline, div.legend, div.tablewrapper { | |
116 margin-left: auto; | |
117 margin-right: auto; | |
118 } | |
119 | |
120 .defline { | |
121 background-color: white; | |
122 border: 1px solid black; | |
123 margin: .5em auto; | |
124 padding-left: .2em; | |
125 padding-right: .2em; | |
126 max-width: 50em; | |
127 text-align: left; | |
128 height: 2.8em; | |
129 overflow-y: hidden; | |
130 } | |
131 | |
132 div.legend { | |
133 max-width: 40em; | |
134 } | |
135 div.legend div { | |
136 width: 100%; | |
137 color: white; | |
138 font-weight: bold; | |
139 border-spacing: 0; | |
140 } | |
141 div.legend div .graphicitem { | |
142 width: 20%; | |
143 padding: 0; | |
144 margin: 0; | |
145 border: none; | |
146 } | |
147 | |
148 div.tablewrapper { | |
149 width: 50%; | |
150 min-width: 60em; | |
151 } | |
152 | |
153 /* For small widths we give the graphic 100% */ | |
154 @media (max-width: 72.5em) { | |
155 div.tablewrapper { | |
156 width: 100%; | |
157 min-width: 0px; | |
158 } | |
159 } | |
160 | |
161 .scale { | |
162 width: 100%; | |
163 margin: .5em 0; | |
164 font-weight: bold; | |
165 } | |
166 .scale div { | |
167 color: red; | |
168 text-align: left; | |
169 } | |
170 .scale .graphicrow { | |
171 margin: .5em 0 .5em 0; | |
172 color: white; | |
173 } | |
174 .scale .graphicitem { | |
175 position: relative; | |
176 } | |
177 .scale .graphicitem div { | |
178 margin: 0 1px; | |
179 padding: 0 2px; | |
180 text-align: right; | |
181 background-color: red; | |
182 color: white; | |
183 } | |
184 .scale .graphicitem:first-child div { | |
185 margin-left: 0px; | |
186 } | |
187 .scale .graphicitem:last-child div { | |
188 margin-right: 0px; | |
189 } | |
190 .scale .graphicitem .lastlabel { | |
191 position: absolute; | |
192 top: 0px; | |
193 left: 100%; | |
194 background-color: transparent; | |
195 color: red; | |
196 } | |
197 | |
198 a.matchresult { | |
199 display: block; | |
200 margin: 0; | |
201 padding: 0; | |
202 } | |
203 div.matchrow { | |
204 margin-top: 4px; | |
205 } | |
206 div.matchrow, div.matchitem { | |
207 height: 4px; | |
208 } | |
209 | |
210 | |
211 table.descriptiontable { | |
212 font-size: 85%; | |
213 border: 1px solid #97b0c8; | |
214 border-spacing: 0; | |
215 color: #222222; | |
216 line-height: 1.3em; | |
217 background-color: white; | |
218 } | |
219 table.descriptiontable col:first-child { | |
220 width: 100%; | |
221 } | |
222 table.descriptiontable tr:hover { | |
223 background-color: #D5DEE3; | |
224 } | |
225 table.descriptiontable th { | |
226 color: #14376C; | |
227 font-weight: normal; | |
228 background-color: #F0F0F0; | |
229 background: linear-gradient(#FFFFFF, #F0F0F0); | |
230 border-bottom: 1px solid #D4DFE9; | |
231 border-right: 1px solid #CFCFCF; | |
232 border-left: 0px solid black; | |
233 border-top: 0px solid black; | |
234 } | |
235 table.descriptiontable td { | |
236 overflow: hidden; | |
237 text-align: center; | |
238 padding: .4em .8em; | |
239 } | |
240 table.descriptiontable td div { | |
241 width: 1em; | |
242 overflow: visible; | |
243 white-space: nowrap; | |
244 text-align: left; | |
245 } | |
246 | |
247 | |
248 | |
249 .alignments .white { | |
250 padding: 1.5em 1em; | |
251 } | |
252 | |
253 .alignment { | |
254 border-top: 1px solid black; | |
255 padding-left: 1em; | |
256 padding-right: 1em; | |
257 } | |
258 | |
259 div.linkheader { | |
260 padding-top: .2em; | |
261 font-size: 85%; | |
262 color: #14376C; | |
263 } | |
264 div.linkheader a.linkheader { | |
265 margin-right: 1em; | |
266 } | |
267 div.linkheader .right a { | |
268 text-decoration: none; | |
269 } | |
270 | |
271 .title .hittitle { | |
272 color: #222222; | |
273 margin-bottom: .3em; | |
274 } | |
275 .title .titleinfo { | |
276 font-size: 80%; | |
277 margin-top: 0; | |
278 margin-bottom: .3em; | |
279 } | |
280 .title .titleinfo .b { | |
281 color: #606060; | |
282 font-weight: bold; | |
283 font-size: 90%; | |
284 } | |
285 | |
286 .moretitles { | |
287 margin: 1.2em; | |
288 } | |
289 .moretitles .titleinfo { | |
290 margin: 0; | |
291 padding: 0; | |
292 } | |
293 .moretitles .hittitle { | |
294 margin: .4em 0 .2em 0; | |
295 padding: 0; | |
296 } | |
297 | |
298 a.showmoretitles { | |
299 font-size: 75%; | |
300 color: #336699; | |
301 font-weight: bold; | |
302 margin-top: 0; | |
303 } | |
304 a.showmoretitles:hover { | |
305 } | |
306 | |
307 .hotspot { | |
308 color: #606060; | |
309 font-family: verdana, arial, sans-serif; | |
310 margin-bottom: 2.5em; | |
311 } | |
312 | |
313 .hotspot p.range { | |
314 font-size: 70%; | |
315 margin-top: 0; | |
316 margin-top: 1em; | |
317 margin-bottom: .2em; | |
318 } | |
319 .hotspot p.range span.range { | |
320 font-weight: bold; | |
321 } | |
322 .hotspot p.range a.range { | |
323 margin-left: .5em; | |
324 } | |
325 | |
326 table.hotspotstable { | |
327 border-top: 1px solid; | |
328 border-bottom: 1px solid; | |
329 text-align: left; | |
330 border-collapse: collapse; | |
331 } | |
332 table.hotspotstable th, table.hotspotstable td { | |
333 padding: .1em 1em; | |
334 } | |
335 table.hotspotstable th { | |
336 font-size: 70%; | |
337 } | |
338 table.hotspotstable td { | |
339 min-width: 7em; | |
340 color: #222222; | |
341 font-size: 80%; | |
342 } | |
343 | |
344 pre.alignmentgraphic { | |
345 color: #222222; | |
346 } | |
347 | |
348 footer { | |
349 text-align: center; | |
350 color: #cccccc; | |
351 font-size: 70%; | |
352 margin-top: 1em; | |
353 } | |
354 footer :link { | |
355 color: #5588cc; | |
356 } | |
357 | |
358 </style> | |
359 | |
360 <script type="text/javascript"> | |
361 function toggle_visibility(id) { | |
362 var e = document.getElementById(id); | |
363 if(e.style.display != 'block') | |
364 e.style.display = 'block'; | |
365 else | |
366 e.style.display = 'none'; | |
367 } | |
368 </script> | |
369 | |
370 </head> | |
371 | |
372 | |
373 <body> | |
374 | |
375 <div id="strip_html_warning"> | |
376 <!-- This div should be hidden by the header css block. Galaxy | |
377 strips all css, breaking this page but making this warning | |
378 visible. This warning contains some ugly old skool tabular html | |
379 layout that is not stripped. --> | |
380 <table bgcolor="#FFE5C9"><tr><td><font color="red"><b> | |
381 <font size=5><center>This html page seems to have been stripped by Galaxy.</center></font> | |
382 Disable Galaxy's html sanitization feature to view the full page (see <font face=monospace>sanitize_all_html</font> in your galaxy's universe_wsgi.ini), or download this page instead of viewing it in Galaxy. | |
383 </b></font></td></tr></table> | |
384 </div> | |
385 | |
386 <div id=content> | |
387 | |
388 | |
389 | |
390 | |
391 <section class=match id=match1> | |
392 | |
393 <h1>Nucleotide Sequence (16 letters)</h1> | |
394 | |
395 <section class=header> | |
396 | |
397 <table class=headerdata> | |
398 <tr><td class=param>Query ID:</td><td>106397</td></tr> | |
399 <tr><td class=param>Query definition:</td><td>No definition line</td></tr> | |
400 <tr><td class=param>Query length:</td><td>16</td></tr> | |
401 <tr><td class=param>Program:</td><td>BLASTN 2.2.29+</td></tr> | |
402 <tr><td class=param>Database:</td><td>pdb</td></tr> | |
403 </table> | |
404 | |
405 </section> | |
406 | |
407 | |
408 <section class=graphics> | |
409 <h2>Graphic Summary</h2> | |
410 | |
411 <div class=grey> | |
412 <h3 class=centered>Distribution of 1 Blast Hits on the Query Sequence</h3> | |
413 | |
414 <div class=defline id=defline1> | |
415 Mouse-over to show defline and scores, click to show alignments | |
416 </div> | |
417 | |
418 <div class=graphic> | |
419 <h4 class=darkHeader>Color key for alignment scores</h4> | |
420 <div class=legend><div class=graphicrow> | |
421 <div class=graphicitem style="background-color: black"><40</div> | |
422 <div class=graphicitem style="background-color: blue">40–50</div> | |
423 <div class=graphicitem style="background-color: green">50–80</div> | |
424 <div class=graphicitem style="background-color: magenta">80–200</div> | |
425 <div class=graphicitem style="background-color: red">200≤</div> | |
426 </div></div> | |
427 <div style="clear: left"></div> | |
428 | |
429 <div class=tablewrapper> | |
430 | |
431 <div class=scale> | |
432 <div>query:</div> | |
433 <div class=graphicrow> | |
434 <div> | |
435 <div class=graphicitem style="width: 12.5%"> | |
436 <div>2</div> | |
437 </div> | |
438 <div class=graphicitem style="width: 12.5%"> | |
439 <div>4</div> | |
440 </div> | |
441 <div class=graphicitem style="width: 12.5%"> | |
442 <div>6</div> | |
443 </div> | |
444 <div class=graphicitem style="width: 12.5%"> | |
445 <div>8</div> | |
446 </div> | |
447 <div class=graphicitem style="width: 12.5%"> | |
448 <div>10</div> | |
449 </div> | |
450 <div class=graphicitem style="width: 12.5%"> | |
451 <div>12</div> | |
452 </div> | |
453 <div class=graphicitem style="width: 12.5%"> | |
454 <div>14</div> | |
455 </div> | |
456 <div class=graphicitem style="width: 12.5%"> | |
457 <div>16</div> | |
458 </div> | |
459 </div> | |
460 </div> | |
461 <div style="clear: left"></div> | |
462 </div> | |
463 | |
464 <a class=matchresult | |
465 href="#hit1" | |
466 onmouseover='document.getElementById("defline1").innerHTML="Chain A, E. Coli 70s-fmetval-trnaval Post-translocation Complex (post4, 50s Subunit)"' | |
467 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
468 title="Chain A, E. Coli 70s-fmetval-trnaval Post-translocation Complex (post4, 50s Subunit)"> | |
469 <div class="matchrow graphicrow"> | |
470 <div class="matchitem graphicitem" | |
471 style="background-color: black; width: 100.0%"></div> | |
472 </div> | |
473 </a> | |
474 | |
475 <a class=matchresult | |
476 href="#hit2" | |
477 onmouseover='document.getElementById("defline1").innerHTML="Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Intermediate Post- Translocation State (post3b, 50s Subunit)"' | |
478 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
479 title="Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Intermediate Post- Translocation State (post3b, 50s Subunit)"> | |
480 <div class="matchrow graphicrow"> | |
481 <div class="matchitem graphicitem" | |
482 style="background-color: black; width: 100.0%"></div> | |
483 </div> | |
484 </a> | |
485 | |
486 <a class=matchresult | |
487 href="#hit3" | |
488 onmouseover='document.getElementById("defline1").innerHTML="Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Intermediate Post- Translocation State (post3a, 50s Subunit)"' | |
489 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
490 title="Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Intermediate Post- Translocation State (post3a, 50s Subunit)"> | |
491 <div class="matchrow graphicrow"> | |
492 <div class="matchitem graphicitem" | |
493 style="background-color: black; width: 100.0%"></div> | |
494 </div> | |
495 </a> | |
496 | |
497 <a class=matchresult | |
498 href="#hit4" | |
499 onmouseover='document.getElementById("defline1").innerHTML="Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Intermediate Post- Translocation State (post2b, 50s Subunit)"' | |
500 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
501 title="Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Intermediate Post- Translocation State (post2b, 50s Subunit)"> | |
502 <div class="matchrow graphicrow"> | |
503 <div class="matchitem graphicitem" | |
504 style="background-color: black; width: 100.0%"></div> | |
505 </div> | |
506 </a> | |
507 | |
508 <a class=matchresult | |
509 href="#hit5" | |
510 onmouseover='document.getElementById("defline1").innerHTML="Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Intermediate Post- Translocation State (post2a, 50s Subunit)"' | |
511 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
512 title="Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Intermediate Post- Translocation State (post2a, 50s Subunit)"> | |
513 <div class="matchrow graphicrow"> | |
514 <div class="matchitem graphicitem" | |
515 style="background-color: black; width: 100.0%"></div> | |
516 </div> | |
517 </a> | |
518 | |
519 <a class=matchresult | |
520 href="#hit6" | |
521 onmouseover='document.getElementById("defline1").innerHTML="Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Classic Post- Translocation State (post1, 50s Subunit)"' | |
522 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
523 title="Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Classic Post- Translocation State (post1, 50s Subunit)"> | |
524 <div class="matchrow graphicrow"> | |
525 <div class="matchitem graphicitem" | |
526 style="background-color: black; width: 100.0%"></div> | |
527 </div> | |
528 </a> | |
529 | |
530 <a class=matchresult | |
531 href="#hit7" | |
532 onmouseover='document.getElementById("defline1").innerHTML="Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Hybrid Pre- Translocation State (pre5b, 50s Subunit)"' | |
533 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
534 title="Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Hybrid Pre- Translocation State (pre5b, 50s Subunit)"> | |
535 <div class="matchrow graphicrow"> | |
536 <div class="matchitem graphicitem" | |
537 style="background-color: black; width: 100.0%"></div> | |
538 </div> | |
539 </a> | |
540 | |
541 <a class=matchresult | |
542 href="#hit8" | |
543 onmouseover='document.getElementById("defline1").innerHTML="Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Hybrid Pre- Translocation State (pre5a, 50s Subunit)"' | |
544 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
545 title="Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Hybrid Pre- Translocation State (pre5a, 50s Subunit)"> | |
546 <div class="matchrow graphicrow"> | |
547 <div class="matchitem graphicitem" | |
548 style="background-color: black; width: 100.0%"></div> | |
549 </div> | |
550 </a> | |
551 | |
552 <a class=matchresult | |
553 href="#hit9" | |
554 onmouseover='document.getElementById("defline1").innerHTML="Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Hybrid Pre- Translocation State (pre4, 50s Subunit)"' | |
555 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
556 title="Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Hybrid Pre- Translocation State (pre4, 50s Subunit)"> | |
557 <div class="matchrow graphicrow"> | |
558 <div class="matchitem graphicitem" | |
559 style="background-color: black; width: 100.0%"></div> | |
560 </div> | |
561 </a> | |
562 | |
563 <a class=matchresult | |
564 href="#hit10" | |
565 onmouseover='document.getElementById("defline1").innerHTML="Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Classic Pre- Translocation State (pre1a, 50s Subunit)"' | |
566 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
567 title="Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Classic Pre- Translocation State (pre1a, 50s Subunit)"> | |
568 <div class="matchrow graphicrow"> | |
569 <div class="matchitem graphicitem" | |
570 style="background-color: black; width: 100.0%"></div> | |
571 </div> | |
572 </a> | |
573 | |
574 <a class=matchresult | |
575 href="#hit11" | |
576 onmouseover='document.getElementById("defline1").innerHTML="Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Intermediate Pre- Translocation State (pre3, 50s Subunit)"' | |
577 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
578 title="Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Intermediate Pre- Translocation State (pre3, 50s Subunit)"> | |
579 <div class="matchrow graphicrow"> | |
580 <div class="matchitem graphicitem" | |
581 style="background-color: black; width: 100.0%"></div> | |
582 </div> | |
583 </a> | |
584 | |
585 <a class=matchresult | |
586 href="#hit12" | |
587 onmouseover='document.getElementById("defline1").innerHTML="Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Intermediate Pre- Translocation State (pre2, 50s Subunit)"' | |
588 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
589 title="Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Intermediate Pre- Translocation State (pre2, 50s Subunit)"> | |
590 <div class="matchrow graphicrow"> | |
591 <div class="matchitem graphicitem" | |
592 style="background-color: black; width: 100.0%"></div> | |
593 </div> | |
594 </a> | |
595 | |
596 <a class=matchresult | |
597 href="#hit13" | |
598 onmouseover='document.getElementById("defline1").innerHTML="Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Classic Pre- Translocation State (pre1b, 50s Subunit)"' | |
599 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
600 title="Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Classic Pre- Translocation State (pre1b, 50s Subunit)"> | |
601 <div class="matchrow graphicrow"> | |
602 <div class="matchitem graphicitem" | |
603 style="background-color: black; width: 100.0%"></div> | |
604 </div> | |
605 </a> | |
606 | |
607 <a class=matchresult | |
608 href="#hit14" | |
609 onmouseover='document.getElementById("defline1").innerHTML="Chain A, Tetracycline Resistance Protein Tet(o) Bound To The Ribosome"' | |
610 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
611 title="Chain A, Tetracycline Resistance Protein Tet(o) Bound To The Ribosome"> | |
612 <div class="matchrow graphicrow"> | |
613 <div class="matchitem graphicitem" | |
614 style="background-color: black; width: 100.0%"></div> | |
615 </div> | |
616 </a> | |
617 | |
618 <a class=matchresult | |
619 href="#hit15" | |
620 onmouseover='document.getElementById("defline1").innerHTML="Chain B, Structural Insights Into Cognate Vs. Near-Cognate Discrimination During Decoding. This Entry Contains The Large Subunit Of A Ribosome Programmed With A Near-Cognate Codon. "' | |
621 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
622 title="Chain B, Structural Insights Into Cognate Vs. Near-Cognate Discrimination During Decoding. This Entry Contains The Large Subunit Of A Ribosome Programmed With A Near-Cognate Codon. "> | |
623 <div class="matchrow graphicrow"> | |
624 <div class="matchitem graphicitem" | |
625 style="background-color: black; width: 100.0%"></div> | |
626 </div> | |
627 </a> | |
628 | |
629 <a class=matchresult | |
630 href="#hit16" | |
631 onmouseover='document.getElementById("defline1").innerHTML="Chain B, Ternary Complex-Bound E.Coli 70s Ribosome. This Entry Consists Of The 50s Subunit. "' | |
632 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
633 title="Chain B, Ternary Complex-Bound E.Coli 70s Ribosome. This Entry Consists Of The 50s Subunit. "> | |
634 <div class="matchrow graphicrow"> | |
635 <div class="matchitem graphicitem" | |
636 style="background-color: black; width: 100.0%"></div> | |
637 </div> | |
638 </a> | |
639 | |
640 <a class=matchresult | |
641 href="#hit17" | |
642 onmouseover='document.getElementById("defline1").innerHTML="Chain B, Structure Of The 50s Subunit Of E. Coli Ribosome In Pre-Accommodation State "' | |
643 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
644 title="Chain B, Structure Of The 50s Subunit Of E. Coli Ribosome In Pre-Accommodation State "> | |
645 <div class="matchrow graphicrow"> | |
646 <div class="matchitem graphicitem" | |
647 style="background-color: black; width: 100.0%"></div> | |
648 </div> | |
649 </a> | |
650 | |
651 <a class=matchresult | |
652 href="#hit18" | |
653 onmouseover='document.getElementById("defline1").innerHTML="Chain 0, Structure Of The 50s Subunit Of A Secm-Stalled E. Coli Ribosome Complex Obtained By Fitting Atomic Models For Rna And Protein Components Into Cryo-Em Map Emd-1143"' | |
654 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
655 title="Chain 0, Structure Of The 50s Subunit Of A Secm-Stalled E. Coli Ribosome Complex Obtained By Fitting Atomic Models For Rna And Protein Components Into Cryo-Em Map Emd-1143"> | |
656 <div class="matchrow graphicrow"> | |
657 <div class="matchitem graphicitem" | |
658 style="background-color: black; width: 100.0%"></div> | |
659 </div> | |
660 </a> | |
661 | |
662 <a class=matchresult | |
663 href="#hit19" | |
664 onmouseover='document.getElementById("defline1").innerHTML="Chain 0, Structure Of The 50s Subunit Of A Pre-Translocational E. Coli Ribosome Obtained By Fitting Atomic Models For Rna And Protein Components Into Cryo-Em Map Emd-1056"' | |
665 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
666 title="Chain 0, Structure Of The 50s Subunit Of A Pre-Translocational E. Coli Ribosome Obtained By Fitting Atomic Models For Rna And Protein Components Into Cryo-Em Map Emd-1056"> | |
667 <div class="matchrow graphicrow"> | |
668 <div class="matchitem graphicitem" | |
669 style="background-color: black; width: 100.0%"></div> | |
670 </div> | |
671 </a> | |
672 | |
673 <a class=matchresult | |
674 href="#hit20" | |
675 onmouseover='document.getElementById("defline1").innerHTML="Chain B, Crystal Structure Of Ribosome With Messenger Rna And The Anticodon Stem-Loop Of P-Site Trna. This File Contains The 50s Subunit Of One 70s Ribosome. The Entire Crystal Structure Contains Two 70s Ribosomes And Is Described In Remark 400."' | |
676 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
677 title="Chain B, Crystal Structure Of Ribosome With Messenger Rna And The Anticodon Stem-Loop Of P-Site Trna. This File Contains The 50s Subunit Of One 70s Ribosome. The Entire Crystal Structure Contains Two 70s Ribosomes And Is Described In Remark 400."> | |
678 <div class="matchrow graphicrow"> | |
679 <div class="matchitem graphicitem" | |
680 style="background-color: black; width: 100.0%"></div> | |
681 </div> | |
682 </a> | |
683 | |
684 <a class=matchresult | |
685 href="#hit21" | |
686 onmouseover='document.getElementById("defline1").innerHTML="Chain B, Crystal Structure Of The Bacterial Ribosome From Escherichia Coli At 3.5 A Resolution. This File Contains The 50s Subunit Of One 70s Ribosome. The Entire Crystal Structure Contains Two 70s Ribosomes And Is Described In Remark 400. "' | |
687 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
688 title="Chain B, Crystal Structure Of The Bacterial Ribosome From Escherichia Coli At 3.5 A Resolution. This File Contains The 50s Subunit Of One 70s Ribosome. The Entire Crystal Structure Contains Two 70s Ribosomes And Is Described In Remark 400. "> | |
689 <div class="matchrow graphicrow"> | |
690 <div class="matchitem graphicitem" | |
691 style="background-color: black; width: 100.0%"></div> | |
692 </div> | |
693 </a> | |
694 | |
695 <a class=matchresult | |
696 href="#hit22" | |
697 onmouseover='document.getElementById("defline1").innerHTML="Chain B, Crystal Structure Of The Bacterial Ribosome From Escherichia Coli At 3.5 A Resolution. This File Contains The 50s Subunit Of The Second 70s Ribosome. The Entire Crystal Structure Contains Two 70s Ribosomes And Is Described In Remark 400. "' | |
698 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
699 title="Chain B, Crystal Structure Of The Bacterial Ribosome From Escherichia Coli At 3.5 A Resolution. This File Contains The 50s Subunit Of The Second 70s Ribosome. The Entire Crystal Structure Contains Two 70s Ribosomes And Is Described In Remark 400. "> | |
700 <div class="matchrow graphicrow"> | |
701 <div class="matchitem graphicitem" | |
702 style="background-color: black; width: 100.0%"></div> | |
703 </div> | |
704 </a> | |
705 | |
706 <a class=matchresult | |
707 href="#hit23" | |
708 onmouseover='document.getElementById("defline1").innerHTML="Chain B, Crystal Structure Of The Bacterial Ribosome From Escherichia Coli In Complex With The Antibiotic Kasugamyin At 3.5a Resolution. This File Contains The 50s Subunit Of One 70s Ribosome. The Entire Crystal Structure Contains Two 70s Ribosomes And Is Described In Remark 400. "' | |
709 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
710 title="Chain B, Crystal Structure Of The Bacterial Ribosome From Escherichia Coli In Complex With The Antibiotic Kasugamyin At 3.5a Resolution. This File Contains The 50s Subunit Of One 70s Ribosome. The Entire Crystal Structure Contains Two 70s Ribosomes And Is Described In Remark 400. "> | |
711 <div class="matchrow graphicrow"> | |
712 <div class="matchitem graphicitem" | |
713 style="background-color: black; width: 100.0%"></div> | |
714 </div> | |
715 </a> | |
716 | |
717 <a class=matchresult | |
718 href="#hit24" | |
719 onmouseover='document.getElementById("defline1").innerHTML="Chain 0, Real Space Refined Coordinates Of The 50s Subunit Fitted Into The Low Resolution Cryo-Em Map Of The Ef-G.Gtp State Of E. Coli 70s Ribosome "' | |
720 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
721 title="Chain 0, Real Space Refined Coordinates Of The 50s Subunit Fitted Into The Low Resolution Cryo-Em Map Of The Ef-G.Gtp State Of E. Coli 70s Ribosome "> | |
722 <div class="matchrow graphicrow"> | |
723 <div class="matchitem graphicitem" | |
724 style="background-color: black; width: 100.0%"></div> | |
725 </div> | |
726 </a> | |
727 | |
728 <a class=matchresult | |
729 href="#hit25" | |
730 onmouseover='document.getElementById("defline1").innerHTML="Chain B, 23s Rrna Structure Fitted To A Cryo-Electron Microscopic Map At 7.5 Angstroms Resolution"' | |
731 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
732 title="Chain B, 23s Rrna Structure Fitted To A Cryo-Electron Microscopic Map At 7.5 Angstroms Resolution"> | |
733 <div class="matchrow graphicrow"> | |
734 <div class="matchitem graphicitem" | |
735 style="background-color: black; width: 81.25%"></div> | |
736 <div class="matchitem graphicitem" | |
737 style="background-color: transparent; width: 18.75%"></div> | |
738 </div> | |
739 </a> | |
740 | |
741 <a class=matchresult | |
742 href="#hit30" | |
743 onmouseover='document.getElementById("defline1").innerHTML="Chain 1, Structure Of The Methanococcus Jannaschii Ribosome-secyebeta Channel Complex (50s Ribosomal Subunit)"' | |
744 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
745 title="Chain 1, Structure Of The Methanococcus Jannaschii Ribosome-secyebeta Channel Complex (50s Ribosomal Subunit)"> | |
746 <div class="matchrow graphicrow"> | |
747 <div class="matchitem graphicitem" | |
748 style="background-color: black; width: 81.25%"></div> | |
749 <div class="matchitem graphicitem" | |
750 style="background-color: transparent; width: 18.75%"></div> | |
751 </div> | |
752 </a> | |
753 | |
754 <a class=matchresult | |
755 href="#hit35" | |
756 onmouseover='document.getElementById("defline1").innerHTML="Chain 1, Promiscuous Behavior Of Proteins In Archaeal Ribosomes Revealed By Cryo-em: Implications For Evolution Of Eukaryotic Ribosomes (50s Ribosomal Rna)"' | |
757 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
758 title="Chain 1, Promiscuous Behavior Of Proteins In Archaeal Ribosomes Revealed By Cryo-em: Implications For Evolution Of Eukaryotic Ribosomes (50s Ribosomal Rna)"> | |
759 <div class="matchrow graphicrow"> | |
760 <div class="matchitem graphicitem" | |
761 style="background-color: black; width: 81.25%"></div> | |
762 <div class="matchitem graphicitem" | |
763 style="background-color: transparent; width: 18.75%"></div> | |
764 </div> | |
765 </a> | |
766 | |
767 <a class=matchresult | |
768 href="#hit26" | |
769 onmouseover='document.getElementById("defline1").innerHTML="Chain a, Model Of The Large Subunit Rna Based On A 5.5 A Cryo-em Map Of Triticum Aestivum Translating 80s Ribosome"' | |
770 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
771 title="Chain a, Model Of The Large Subunit Rna Based On A 5.5 A Cryo-em Map Of Triticum Aestivum Translating 80s Ribosome"> | |
772 <div class="matchrow graphicrow"> | |
773 <div class="matchitem graphicitem" | |
774 style="background-color: transparent; width: 6.25%"></div> | |
775 <div class="matchitem graphicitem" | |
776 style="background-color: black; width: 87.5%"></div> | |
777 <div class="matchitem graphicitem" | |
778 style="background-color: transparent; width: 6.25%"></div> | |
779 </div> | |
780 </a> | |
781 | |
782 <a class=matchresult | |
783 href="#hit27" | |
784 onmouseover='document.getElementById("defline1").innerHTML="Chain A, 39s Large Subunit Of The Porcine Mitochondrial Ribosome"' | |
785 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
786 title="Chain A, 39s Large Subunit Of The Porcine Mitochondrial Ribosome"> | |
787 <div class="matchrow graphicrow"> | |
788 <div class="matchitem graphicitem" | |
789 style="background-color: transparent; width: 43.75%"></div> | |
790 <div class="matchitem graphicitem" | |
791 style="background-color: black; width: 56.25%"></div> | |
792 </div> | |
793 </a> | |
794 | |
795 <a class=matchresult | |
796 href="#hit28" | |
797 onmouseover='document.getElementById("defline1").innerHTML="Chain 5, Cryo-em Reconstruction Of The 80s-eif5b-met-itrnamet Eukaryotic Translation Initiation Complex"' | |
798 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
799 title="Chain 5, Cryo-em Reconstruction Of The 80s-eif5b-met-itrnamet Eukaryotic Translation Initiation Complex"> | |
800 <div class="matchrow graphicrow"> | |
801 <div class="matchitem graphicitem" | |
802 style="background-color: transparent; width: 18.75%"></div> | |
803 <div class="matchitem graphicitem" | |
804 style="background-color: black; width: 81.25%"></div> | |
805 </div> | |
806 </a> | |
807 | |
808 <a class=matchresult | |
809 href="#hit29" | |
810 onmouseover='document.getElementById("defline1").innerHTML="Chain 5, Cryo-em Reconstruction Of The 80s-eif5b-met-itrnamet Eukaryotic Translation Initiation Complex"' | |
811 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
812 title="Chain 5, Cryo-em Reconstruction Of The 80s-eif5b-met-itrnamet Eukaryotic Translation Initiation Complex"> | |
813 <div class="matchrow graphicrow"> | |
814 <div class="matchitem graphicitem" | |
815 style="background-color: transparent; width: 18.75%"></div> | |
816 <div class="matchitem graphicitem" | |
817 style="background-color: black; width: 81.25%"></div> | |
818 </div> | |
819 </a> | |
820 | |
821 <a class=matchresult | |
822 href="#hit31" | |
823 onmouseover='document.getElementById("defline1").innerHTML="Chain 0, The Re-refined Crystal Structure Of The Haloarcula Marismortui Large Ribosomal Subunit At 2.4 Angstrom Resolution: More Complete Structure Of The L7/l12 And L1 Stalk, L5 And Lx Proteins"' | |
824 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
825 title="Chain 0, The Re-refined Crystal Structure Of The Haloarcula Marismortui Large Ribosomal Subunit At 2.4 Angstrom Resolution: More Complete Structure Of The L7/l12 And L1 Stalk, L5 And Lx Proteins"> | |
826 <div class="matchrow graphicrow"> | |
827 <div class="matchitem graphicitem" | |
828 style="background-color: transparent; width: 18.75%"></div> | |
829 <div class="matchitem graphicitem" | |
830 style="background-color: black; width: 75.0%"></div> | |
831 <div class="matchitem graphicitem" | |
832 style="background-color: transparent; width: 6.25%"></div> | |
833 </div> | |
834 </a> | |
835 | |
836 <a class=matchresult | |
837 href="#hit32" | |
838 onmouseover='document.getElementById("defline1").innerHTML="Chain 5, Structure Of The H. Sapiens 60s Rrna"' | |
839 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
840 title="Chain 5, Structure Of The H. Sapiens 60s Rrna"> | |
841 <div class="matchrow graphicrow"> | |
842 <div class="matchitem graphicitem" | |
843 style="background-color: black; width: 100.0%"></div> | |
844 </div> | |
845 </a> | |
846 | |
847 <a class=matchresult | |
848 href="#hit33" | |
849 onmouseover='document.getElementById("defline1").innerHTML="Chain 5, Structure Of The D. Melanogaster 60s Rrna"' | |
850 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
851 title="Chain 5, Structure Of The D. Melanogaster 60s Rrna"> | |
852 <div class="matchrow graphicrow"> | |
853 <div class="matchitem graphicitem" | |
854 style="background-color: black; width: 100.0%"></div> | |
855 </div> | |
856 </a> | |
857 | |
858 <a class=matchresult | |
859 href="#hit34" | |
860 onmouseover='document.getElementById("defline1").innerHTML="Chain B, High_resolution Cryo-electron Microscopy Structure Of The Trypanosoma Brucei Ribosome"' | |
861 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
862 title="Chain B, High_resolution Cryo-electron Microscopy Structure Of The Trypanosoma Brucei Ribosome"> | |
863 <div class="matchrow graphicrow"> | |
864 <div class="matchitem graphicitem" | |
865 style="background-color: transparent; width: 18.75%"></div> | |
866 <div class="matchitem graphicitem" | |
867 style="background-color: black; width: 81.25%"></div> | |
868 </div> | |
869 </a> | |
870 | |
871 <a class=matchresult | |
872 href="#hit36" | |
873 onmouseover='document.getElementById("defline1").innerHTML="Chain 0, Crystal Structure Of Enhanced Macrolide Bound To 50s Ribosomal Subunit"' | |
874 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
875 title="Chain 0, Crystal Structure Of Enhanced Macrolide Bound To 50s Ribosomal Subunit"> | |
876 <div class="matchrow graphicrow"> | |
877 <div class="matchitem graphicitem" | |
878 style="background-color: transparent; width: 18.75%"></div> | |
879 <div class="matchitem graphicitem" | |
880 style="background-color: black; width: 56.25%"></div> | |
881 <div class="matchitem graphicitem" | |
882 style="background-color: transparent; width: 25.0%"></div> | |
883 </div> | |
884 </a> | |
885 | |
886 <a class=matchresult | |
887 href="#hit37" | |
888 onmouseover='document.getElementById("defline1").innerHTML="Chain 0, The Cryo-em Structure Of The Archaeal 50s Ribosomal Subunit In Complex With Initiation Factor 6"' | |
889 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
890 title="Chain 0, The Cryo-em Structure Of The Archaeal 50s Ribosomal Subunit In Complex With Initiation Factor 6"> | |
891 <div class="matchrow graphicrow"> | |
892 <div class="matchitem graphicitem" | |
893 style="background-color: transparent; width: 18.75%"></div> | |
894 <div class="matchitem graphicitem" | |
895 style="background-color: black; width: 75.0%"></div> | |
896 <div class="matchitem graphicitem" | |
897 style="background-color: transparent; width: 6.25%"></div> | |
898 </div> | |
899 </a> | |
900 | |
901 <a class=matchresult | |
902 href="#hit38" | |
903 onmouseover='document.getElementById("defline1").innerHTML="Chain 6, The Structure Of The Eukaryotic Ribosome At 3.0 A Resolution. This Entry Contains Ribosomal Rna And Ions Of The 40s Subunit, Ribosome B"' | |
904 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
905 title="Chain 6, The Structure Of The Eukaryotic Ribosome At 3.0 A Resolution. This Entry Contains Ribosomal Rna And Ions Of The 40s Subunit, Ribosome B"> | |
906 <div class="matchrow graphicrow"> | |
907 <div class="matchitem graphicitem" | |
908 style="background-color: transparent; width: 12.5%"></div> | |
909 <div class="matchitem graphicitem" | |
910 style="background-color: black; width: 87.5%"></div> | |
911 </div> | |
912 </a> | |
913 | |
914 <a class=matchresult | |
915 href="#hit39" | |
916 onmouseover='document.getElementById("defline1").innerHTML="Chain 2, The Structure Of The Eukaryotic Ribosome At 3.0 A Resolution. This Entry Contains Ribosomal Rna And Ions Of The 40s Subunit, Ribosome A "' | |
917 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
918 title="Chain 2, The Structure Of The Eukaryotic Ribosome At 3.0 A Resolution. This Entry Contains Ribosomal Rna And Ions Of The 40s Subunit, Ribosome A "> | |
919 <div class="matchrow graphicrow"> | |
920 <div class="matchitem graphicitem" | |
921 style="background-color: transparent; width: 12.5%"></div> | |
922 <div class="matchitem graphicitem" | |
923 style="background-color: black; width: 87.5%"></div> | |
924 </div> | |
925 </a> | |
926 | |
927 <a class=matchresult | |
928 href="#hit40" | |
929 onmouseover='document.getElementById("defline1").innerHTML="Chain 1, T.Thermophila 60s Ribosomal Subunit In Complex With Initiation Factor 6. This File Contains 26s Rrna And Proteins Of Molecule 4."' | |
930 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
931 title="Chain 1, T.Thermophila 60s Ribosomal Subunit In Complex With Initiation Factor 6. This File Contains 26s Rrna And Proteins Of Molecule 4."> | |
932 <div class="matchrow graphicrow"> | |
933 <div class="matchitem graphicitem" | |
934 style="background-color: transparent; width: 18.75%"></div> | |
935 <div class="matchitem graphicitem" | |
936 style="background-color: black; width: 75.0%"></div> | |
937 <div class="matchitem graphicitem" | |
938 style="background-color: transparent; width: 6.25%"></div> | |
939 </div> | |
940 </a> | |
941 | |
942 <a class=matchresult | |
943 href="#hit41" | |
944 onmouseover='document.getElementById("defline1").innerHTML="Chain 1, T.Thermophila 60s Ribosomal Subunit In Complex With Initiation Factor 6. This File Contains 26s Rrna And Proteins Of Molecule 1"' | |
945 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
946 title="Chain 1, T.Thermophila 60s Ribosomal Subunit In Complex With Initiation Factor 6. This File Contains 26s Rrna And Proteins Of Molecule 1"> | |
947 <div class="matchrow graphicrow"> | |
948 <div class="matchitem graphicitem" | |
949 style="background-color: transparent; width: 18.75%"></div> | |
950 <div class="matchitem graphicitem" | |
951 style="background-color: black; width: 75.0%"></div> | |
952 <div class="matchitem graphicitem" | |
953 style="background-color: transparent; width: 6.25%"></div> | |
954 </div> | |
955 </a> | |
956 | |
957 <a class=matchresult | |
958 href="#hit42" | |
959 onmouseover='document.getElementById("defline1").innerHTML="Chain 1, T.Thermophila 60s Ribosomal Subunit In Complex With Initiation Factor 6. This File Contains 26s Rrna And Proteins Of Molecule 3. "' | |
960 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
961 title="Chain 1, T.Thermophila 60s Ribosomal Subunit In Complex With Initiation Factor 6. This File Contains 26s Rrna And Proteins Of Molecule 3. "> | |
962 <div class="matchrow graphicrow"> | |
963 <div class="matchitem graphicitem" | |
964 style="background-color: transparent; width: 18.75%"></div> | |
965 <div class="matchitem graphicitem" | |
966 style="background-color: black; width: 75.0%"></div> | |
967 <div class="matchitem graphicitem" | |
968 style="background-color: transparent; width: 6.25%"></div> | |
969 </div> | |
970 </a> | |
971 | |
972 <a class=matchresult | |
973 href="#hit43" | |
974 onmouseover='document.getElementById("defline1").innerHTML="Chain 8, Core Of Mammalian 80s Pre-Ribosome In Complex With Trnas Fitted To A 9.8a Cryo-Em Map: Classic Pre State 1"' | |
975 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
976 title="Chain 8, Core Of Mammalian 80s Pre-Ribosome In Complex With Trnas Fitted To A 9.8a Cryo-Em Map: Classic Pre State 1"> | |
977 <div class="matchrow graphicrow"> | |
978 <div class="matchitem graphicitem" | |
979 style="background-color: transparent; width: 18.75%"></div> | |
980 <div class="matchitem graphicitem" | |
981 style="background-color: black; width: 56.25%"></div> | |
982 <div class="matchitem graphicitem" | |
983 style="background-color: transparent; width: 25.0%"></div> | |
984 </div> | |
985 </a> | |
986 | |
987 <a class=matchresult | |
988 href="#hit44" | |
989 onmouseover='document.getElementById("defline1").innerHTML="Chain 8, Core Of Mammalian 80s Pre-Ribosome In Complex With Trnas Fitted To A 9a Cryo-Em Map: Classic Pre State 2"' | |
990 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
991 title="Chain 8, Core Of Mammalian 80s Pre-Ribosome In Complex With Trnas Fitted To A 9a Cryo-Em Map: Classic Pre State 2"> | |
992 <div class="matchrow graphicrow"> | |
993 <div class="matchitem graphicitem" | |
994 style="background-color: transparent; width: 18.75%"></div> | |
995 <div class="matchitem graphicitem" | |
996 style="background-color: black; width: 56.25%"></div> | |
997 <div class="matchitem graphicitem" | |
998 style="background-color: transparent; width: 25.0%"></div> | |
999 </div> | |
1000 </a> | |
1001 | |
1002 <a class=matchresult | |
1003 href="#hit45" | |
1004 onmouseover='document.getElementById("defline1").innerHTML="Chain 1, Yeast 80s Ribosome. This Entry Consists Of The 60s Subunit Of The First 80s In The Asymmetric Unit. "' | |
1005 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1006 title="Chain 1, Yeast 80s Ribosome. This Entry Consists Of The 60s Subunit Of The First 80s In The Asymmetric Unit. "> | |
1007 <div class="matchrow graphicrow"> | |
1008 <div class="matchitem graphicitem" | |
1009 style="background-color: transparent; width: 18.75%"></div> | |
1010 <div class="matchitem graphicitem" | |
1011 style="background-color: black; width: 81.25%"></div> | |
1012 </div> | |
1013 </a> | |
1014 | |
1015 <a class=matchresult | |
1016 href="#hit46" | |
1017 onmouseover='document.getElementById("defline1").innerHTML="Chain 1, Yeast 80s Ribosome. This Entry Consists Of The 60s Subunit Of The Second 80s In The Asymmetric Unit. "' | |
1018 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1019 title="Chain 1, Yeast 80s Ribosome. This Entry Consists Of The 60s Subunit Of The Second 80s In The Asymmetric Unit. "> | |
1020 <div class="matchrow graphicrow"> | |
1021 <div class="matchitem graphicitem" | |
1022 style="background-color: transparent; width: 18.75%"></div> | |
1023 <div class="matchitem graphicitem" | |
1024 style="background-color: black; width: 81.25%"></div> | |
1025 </div> | |
1026 </a> | |
1027 | |
1028 <a class=matchresult | |
1029 href="#hit47" | |
1030 onmouseover='document.getElementById("defline1").innerHTML="Chain 1, Yeast 80s Ribosome. This Entry Consists Of The 40s Subunit Of The First 80s In The Asymmetric Unit."' | |
1031 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1032 title="Chain 1, Yeast 80s Ribosome. This Entry Consists Of The 40s Subunit Of The First 80s In The Asymmetric Unit."> | |
1033 <div class="matchrow graphicrow"> | |
1034 <div class="matchitem graphicitem" | |
1035 style="background-color: transparent; width: 12.5%"></div> | |
1036 <div class="matchitem graphicitem" | |
1037 style="background-color: black; width: 87.5%"></div> | |
1038 </div> | |
1039 </a> | |
1040 | |
1041 <a class=matchresult | |
1042 href="#hit48" | |
1043 onmouseover='document.getElementById("defline1").innerHTML="Chain 1, Yeast 80s Ribosome. This Entry Consists Of The 40s Subunit Of The Second 80s In The Asymmetric Unit."' | |
1044 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1045 title="Chain 1, Yeast 80s Ribosome. This Entry Consists Of The 40s Subunit Of The Second 80s In The Asymmetric Unit."> | |
1046 <div class="matchrow graphicrow"> | |
1047 <div class="matchitem graphicitem" | |
1048 style="background-color: transparent; width: 12.5%"></div> | |
1049 <div class="matchitem graphicitem" | |
1050 style="background-color: black; width: 87.5%"></div> | |
1051 </div> | |
1052 </a> | |
1053 | |
1054 <a class=matchresult | |
1055 href="#hit49" | |
1056 onmouseover='document.getElementById("defline1").innerHTML="Chain A, Model Of The Large Subunit Rna Based On A 6.1 A Cryo-Em Map Of Saccharomyces Cerevisiae Translating 80s Ribosome (With Es27l-In Conformation)"' | |
1057 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1058 title="Chain A, Model Of The Large Subunit Rna Based On A 6.1 A Cryo-Em Map Of Saccharomyces Cerevisiae Translating 80s Ribosome (With Es27l-In Conformation)"> | |
1059 <div class="matchrow graphicrow"> | |
1060 <div class="matchitem graphicitem" | |
1061 style="background-color: transparent; width: 18.75%"></div> | |
1062 <div class="matchitem graphicitem" | |
1063 style="background-color: black; width: 81.25%"></div> | |
1064 </div> | |
1065 </a> | |
1066 | |
1067 <a class=matchresult | |
1068 href="#hit50" | |
1069 onmouseover='document.getElementById("defline1").innerHTML="Chain A, Model Of The Small Subunit Rna Based On A 6.1 A Cryo-Em Map Of Saccharomyces Cerevisiae Translating 80s Ribosome"' | |
1070 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1071 title="Chain A, Model Of The Small Subunit Rna Based On A 6.1 A Cryo-Em Map Of Saccharomyces Cerevisiae Translating 80s Ribosome"> | |
1072 <div class="matchrow graphicrow"> | |
1073 <div class="matchitem graphicitem" | |
1074 style="background-color: transparent; width: 12.5%"></div> | |
1075 <div class="matchitem graphicitem" | |
1076 style="background-color: black; width: 87.5%"></div> | |
1077 </div> | |
1078 </a> | |
1079 | |
1080 <a class=matchresult | |
1081 href="#hit51" | |
1082 onmouseover='document.getElementById("defline1").innerHTML="Chain I, I-Msoi Re-Designed For Altered Dna Cleavage Specificity (-7c)"' | |
1083 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1084 title="Chain I, I-Msoi Re-Designed For Altered Dna Cleavage Specificity (-7c)"> | |
1085 <div class="matchrow graphicrow"> | |
1086 <div class="matchitem graphicitem" | |
1087 style="background-color: transparent; width: 18.75%"></div> | |
1088 <div class="matchitem graphicitem" | |
1089 style="background-color: black; width: 56.25%"></div> | |
1090 <div class="matchitem graphicitem" | |
1091 style="background-color: transparent; width: 25.0%"></div> | |
1092 </div> | |
1093 </a> | |
1094 | |
1095 <a class=matchresult | |
1096 href="#hit52" | |
1097 onmouseover='document.getElementById("defline1").innerHTML="Chain H, I-Msoi Re-Designed For Altered Dna Cleavage Specificity (-7c)"' | |
1098 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1099 title="Chain H, I-Msoi Re-Designed For Altered Dna Cleavage Specificity (-7c)"> | |
1100 <div class="matchrow graphicrow"> | |
1101 <div class="matchitem graphicitem" | |
1102 style="background-color: transparent; width: 18.75%"></div> | |
1103 <div class="matchitem graphicitem" | |
1104 style="background-color: black; width: 56.25%"></div> | |
1105 <div class="matchitem graphicitem" | |
1106 style="background-color: transparent; width: 25.0%"></div> | |
1107 </div> | |
1108 </a> | |
1109 | |
1110 <a class=matchresult | |
1111 href="#hit53" | |
1112 onmouseover='document.getElementById("defline1").innerHTML="Chain D, I-Msoi Re-Designed For Altered Dna Cleavage Specificity (-7c)"' | |
1113 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1114 title="Chain D, I-Msoi Re-Designed For Altered Dna Cleavage Specificity (-7c)"> | |
1115 <div class="matchrow graphicrow"> | |
1116 <div class="matchitem graphicitem" | |
1117 style="background-color: transparent; width: 18.75%"></div> | |
1118 <div class="matchitem graphicitem" | |
1119 style="background-color: black; width: 56.25%"></div> | |
1120 <div class="matchitem graphicitem" | |
1121 style="background-color: transparent; width: 25.0%"></div> | |
1122 </div> | |
1123 </a> | |
1124 | |
1125 <a class=matchresult | |
1126 href="#hit54" | |
1127 onmouseover='document.getElementById("defline1").innerHTML="Chain C, I-Msoi Re-Designed For Altered Dna Cleavage Specificity (-7c)"' | |
1128 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1129 title="Chain C, I-Msoi Re-Designed For Altered Dna Cleavage Specificity (-7c)"> | |
1130 <div class="matchrow graphicrow"> | |
1131 <div class="matchitem graphicitem" | |
1132 style="background-color: transparent; width: 18.75%"></div> | |
1133 <div class="matchitem graphicitem" | |
1134 style="background-color: black; width: 56.25%"></div> | |
1135 <div class="matchitem graphicitem" | |
1136 style="background-color: transparent; width: 25.0%"></div> | |
1137 </div> | |
1138 </a> | |
1139 | |
1140 <a class=matchresult | |
1141 href="#hit55" | |
1142 onmouseover='document.getElementById("defline1").innerHTML="Chain 0, Co-Crystal Structure Of Triacetyloleandomcyin Bound To The Large Ribosomal Subunit"' | |
1143 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1144 title="Chain 0, Co-Crystal Structure Of Triacetyloleandomcyin Bound To The Large Ribosomal Subunit"> | |
1145 <div class="matchrow graphicrow"> | |
1146 <div class="matchitem graphicitem" | |
1147 style="background-color: transparent; width: 18.75%"></div> | |
1148 <div class="matchitem graphicitem" | |
1149 style="background-color: black; width: 75.0%"></div> | |
1150 <div class="matchitem graphicitem" | |
1151 style="background-color: transparent; width: 6.25%"></div> | |
1152 </div> | |
1153 </a> | |
1154 | |
1155 <a class=matchresult | |
1156 href="#hit56" | |
1157 onmouseover='document.getElementById("defline1").innerHTML="Chain 5, Structure Of The 60s Rrna For Eukaryotic Ribosome Based On Cryo-Em Map Of Thermomyces Lanuginosus Ribosome At 8.9a Resolution"' | |
1158 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1159 title="Chain 5, Structure Of The 60s Rrna For Eukaryotic Ribosome Based On Cryo-Em Map Of Thermomyces Lanuginosus Ribosome At 8.9a Resolution"> | |
1160 <div class="matchrow graphicrow"> | |
1161 <div class="matchitem graphicitem" | |
1162 style="background-color: transparent; width: 18.75%"></div> | |
1163 <div class="matchitem graphicitem" | |
1164 style="background-color: black; width: 81.25%"></div> | |
1165 </div> | |
1166 </a> | |
1167 | |
1168 <a class=matchresult | |
1169 href="#hit57" | |
1170 onmouseover='document.getElementById("defline1").innerHTML="Chain A, Structure Of The 40s Rrna And Proteins And PE TRNA FOR EUKARYOTIC Ribosome Based On Cryo-Em Map Of Thermomyces Lanuginosus Ribosome At 8.9a Resolution"' | |
1171 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1172 title="Chain A, Structure Of The 40s Rrna And Proteins And PE TRNA FOR EUKARYOTIC Ribosome Based On Cryo-Em Map Of Thermomyces Lanuginosus Ribosome At 8.9a Resolution"> | |
1173 <div class="matchrow graphicrow"> | |
1174 <div class="matchitem graphicitem" | |
1175 style="background-color: transparent; width: 12.5%"></div> | |
1176 <div class="matchitem graphicitem" | |
1177 style="background-color: black; width: 87.5%"></div> | |
1178 </div> | |
1179 </a> | |
1180 | |
1181 <a class=matchresult | |
1182 href="#hit58" | |
1183 onmouseover='document.getElementById("defline1").innerHTML="Chain 3, Structure Of The Ribosomal 80s-Eef2-Sordarin Complex From Yeast Obtained By Docking Atomic Models For Rna And Protein Components Into A 11.7 A Cryo-Em Map. This File, 1s1i, Contains 60s Subunit. The 40s Ribosomal Subunit Is In File 1s1h."' | |
1184 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1185 title="Chain 3, Structure Of The Ribosomal 80s-Eef2-Sordarin Complex From Yeast Obtained By Docking Atomic Models For Rna And Protein Components Into A 11.7 A Cryo-Em Map. This File, 1s1i, Contains 60s Subunit. The 40s Ribosomal Subunit Is In File 1s1h."> | |
1186 <div class="matchrow graphicrow"> | |
1187 <div class="matchitem graphicitem" | |
1188 style="background-color: transparent; width: 18.75%"></div> | |
1189 <div class="matchitem graphicitem" | |
1190 style="background-color: black; width: 56.25%"></div> | |
1191 <div class="matchitem graphicitem" | |
1192 style="background-color: transparent; width: 25.0%"></div> | |
1193 </div> | |
1194 </a> | |
1195 | |
1196 <a class=matchresult | |
1197 href="#hit59" | |
1198 onmouseover='document.getElementById("defline1").innerHTML="Chain 0, Negamycin Binds To The Wall Of The Nascent Chain Exit Tunnel Of The 50s Ribosomal Subunit"' | |
1199 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1200 title="Chain 0, Negamycin Binds To The Wall Of The Nascent Chain Exit Tunnel Of The 50s Ribosomal Subunit"> | |
1201 <div class="matchrow graphicrow"> | |
1202 <div class="matchitem graphicitem" | |
1203 style="background-color: transparent; width: 18.75%"></div> | |
1204 <div class="matchitem graphicitem" | |
1205 style="background-color: black; width: 56.25%"></div> | |
1206 <div class="matchitem graphicitem" | |
1207 style="background-color: transparent; width: 25.0%"></div> | |
1208 </div> | |
1209 </a> | |
1210 | |
1211 <a class=matchresult | |
1212 href="#hit60" | |
1213 onmouseover='document.getElementById("defline1").innerHTML="Chain 0, The Structure Of The Antibiotic Linezolid Bound To The Large Ribosomal Subunit Of Haloarcula Marismortui"' | |
1214 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1215 title="Chain 0, The Structure Of The Antibiotic Linezolid Bound To The Large Ribosomal Subunit Of Haloarcula Marismortui"> | |
1216 <div class="matchrow graphicrow"> | |
1217 <div class="matchitem graphicitem" | |
1218 style="background-color: transparent; width: 18.75%"></div> | |
1219 <div class="matchitem graphicitem" | |
1220 style="background-color: black; width: 56.25%"></div> | |
1221 <div class="matchitem graphicitem" | |
1222 style="background-color: transparent; width: 25.0%"></div> | |
1223 </div> | |
1224 </a> | |
1225 | |
1226 <a class=matchresult | |
1227 href="#hit61" | |
1228 onmouseover='document.getElementById("defline1").innerHTML="Chain 0, Structure Of Anisomycin Resistant 50s Ribosomal Subunit: 23s Rrna Mutation G2616a "' | |
1229 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1230 title="Chain 0, Structure Of Anisomycin Resistant 50s Ribosomal Subunit: 23s Rrna Mutation G2616a "> | |
1231 <div class="matchrow graphicrow"> | |
1232 <div class="matchitem graphicitem" | |
1233 style="background-color: transparent; width: 18.75%"></div> | |
1234 <div class="matchitem graphicitem" | |
1235 style="background-color: black; width: 75.0%"></div> | |
1236 <div class="matchitem graphicitem" | |
1237 style="background-color: transparent; width: 6.25%"></div> | |
1238 </div> | |
1239 </a> | |
1240 | |
1241 <a class=matchresult | |
1242 href="#hit62" | |
1243 onmouseover='document.getElementById("defline1").innerHTML="Chain 0, Structure Of Anisomycin Resistant 50s Ribosomal Subunit: 23s Rrna Mutation G2482c"' | |
1244 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1245 title="Chain 0, Structure Of Anisomycin Resistant 50s Ribosomal Subunit: 23s Rrna Mutation G2482c"> | |
1246 <div class="matchrow graphicrow"> | |
1247 <div class="matchitem graphicitem" | |
1248 style="background-color: transparent; width: 18.75%"></div> | |
1249 <div class="matchitem graphicitem" | |
1250 style="background-color: black; width: 75.0%"></div> | |
1251 <div class="matchitem graphicitem" | |
1252 style="background-color: transparent; width: 6.25%"></div> | |
1253 </div> | |
1254 </a> | |
1255 | |
1256 <a class=matchresult | |
1257 href="#hit63" | |
1258 onmouseover='document.getElementById("defline1").innerHTML="Chain 0, Structure Of Anisomycin Resistant 50s Ribosomal Subunit: 23s Rrna Mutation G2482a"' | |
1259 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1260 title="Chain 0, Structure Of Anisomycin Resistant 50s Ribosomal Subunit: 23s Rrna Mutation G2482a"> | |
1261 <div class="matchrow graphicrow"> | |
1262 <div class="matchitem graphicitem" | |
1263 style="background-color: transparent; width: 18.75%"></div> | |
1264 <div class="matchitem graphicitem" | |
1265 style="background-color: black; width: 75.0%"></div> | |
1266 <div class="matchitem graphicitem" | |
1267 style="background-color: transparent; width: 6.25%"></div> | |
1268 </div> | |
1269 </a> | |
1270 | |
1271 <a class=matchresult | |
1272 href="#hit64" | |
1273 onmouseover='document.getElementById("defline1").innerHTML="Chain 0, Structure Of Anisomycin Resistant 50s Ribosomal Subunit: 23s Rrna Mutation A2488c. Density For Anisomycin Is Visible But Not Included In The Model."' | |
1274 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1275 title="Chain 0, Structure Of Anisomycin Resistant 50s Ribosomal Subunit: 23s Rrna Mutation A2488c. Density For Anisomycin Is Visible But Not Included In The Model."> | |
1276 <div class="matchrow graphicrow"> | |
1277 <div class="matchitem graphicitem" | |
1278 style="background-color: transparent; width: 18.75%"></div> | |
1279 <div class="matchitem graphicitem" | |
1280 style="background-color: black; width: 75.0%"></div> | |
1281 <div class="matchitem graphicitem" | |
1282 style="background-color: transparent; width: 6.25%"></div> | |
1283 </div> | |
1284 </a> | |
1285 | |
1286 <a class=matchresult | |
1287 href="#hit65" | |
1288 onmouseover='document.getElementById("defline1").innerHTML="Chain 0, Structure Of Anisomycin Resistant 50s Ribosomal Subunit: 23s Rrna Mutation A2488u"' | |
1289 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1290 title="Chain 0, Structure Of Anisomycin Resistant 50s Ribosomal Subunit: 23s Rrna Mutation A2488u"> | |
1291 <div class="matchrow graphicrow"> | |
1292 <div class="matchitem graphicitem" | |
1293 style="background-color: transparent; width: 18.75%"></div> | |
1294 <div class="matchitem graphicitem" | |
1295 style="background-color: black; width: 75.0%"></div> | |
1296 <div class="matchitem graphicitem" | |
1297 style="background-color: transparent; width: 6.25%"></div> | |
1298 </div> | |
1299 </a> | |
1300 | |
1301 <a class=matchresult | |
1302 href="#hit66" | |
1303 onmouseover='document.getElementById("defline1").innerHTML="Chain 0, Structure Of Anisomycin Resistant 50s Ribosomal Subunit: 23s Rrna Mutation G2611u"' | |
1304 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1305 title="Chain 0, Structure Of Anisomycin Resistant 50s Ribosomal Subunit: 23s Rrna Mutation G2611u"> | |
1306 <div class="matchrow graphicrow"> | |
1307 <div class="matchitem graphicitem" | |
1308 style="background-color: transparent; width: 18.75%"></div> | |
1309 <div class="matchitem graphicitem" | |
1310 style="background-color: black; width: 75.0%"></div> | |
1311 <div class="matchitem graphicitem" | |
1312 style="background-color: transparent; width: 6.25%"></div> | |
1313 </div> | |
1314 </a> | |
1315 | |
1316 <a class=matchresult | |
1317 href="#hit67" | |
1318 onmouseover='document.getElementById("defline1").innerHTML="Chain 0, Structure Of Anisomycin Resistant 50s Ribosomal Subunit: 23s Rrna Mutation U2535c. Density For Anisomycin Is Visible But Not Included In Model."' | |
1319 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1320 title="Chain 0, Structure Of Anisomycin Resistant 50s Ribosomal Subunit: 23s Rrna Mutation U2535c. Density For Anisomycin Is Visible But Not Included In Model."> | |
1321 <div class="matchrow graphicrow"> | |
1322 <div class="matchitem graphicitem" | |
1323 style="background-color: transparent; width: 18.75%"></div> | |
1324 <div class="matchitem graphicitem" | |
1325 style="background-color: black; width: 75.0%"></div> | |
1326 <div class="matchitem graphicitem" | |
1327 style="background-color: transparent; width: 6.25%"></div> | |
1328 </div> | |
1329 </a> | |
1330 | |
1331 <a class=matchresult | |
1332 href="#hit68" | |
1333 onmouseover='document.getElementById("defline1").innerHTML="Chain 0, Structure Of Anisomycin Resistant 50s Ribosomal Subunit: 23s Rrna Mutation C2534u"' | |
1334 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1335 title="Chain 0, Structure Of Anisomycin Resistant 50s Ribosomal Subunit: 23s Rrna Mutation C2534u"> | |
1336 <div class="matchrow graphicrow"> | |
1337 <div class="matchitem graphicitem" | |
1338 style="background-color: transparent; width: 18.75%"></div> | |
1339 <div class="matchitem graphicitem" | |
1340 style="background-color: black; width: 75.0%"></div> | |
1341 <div class="matchitem graphicitem" | |
1342 style="background-color: transparent; width: 6.25%"></div> | |
1343 </div> | |
1344 </a> | |
1345 | |
1346 <a class=matchresult | |
1347 href="#hit69" | |
1348 onmouseover='document.getElementById("defline1").innerHTML="Chain 0, Structure Of Anisomycin Resistant 50s Ribosomal Subunit: 23s Rrna Mutation U2535a"' | |
1349 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1350 title="Chain 0, Structure Of Anisomycin Resistant 50s Ribosomal Subunit: 23s Rrna Mutation U2535a"> | |
1351 <div class="matchrow graphicrow"> | |
1352 <div class="matchitem graphicitem" | |
1353 style="background-color: transparent; width: 18.75%"></div> | |
1354 <div class="matchitem graphicitem" | |
1355 style="background-color: black; width: 75.0%"></div> | |
1356 <div class="matchitem graphicitem" | |
1357 style="background-color: transparent; width: 6.25%"></div> | |
1358 </div> | |
1359 </a> | |
1360 | |
1361 <a class=matchresult | |
1362 href="#hit70" | |
1363 onmouseover='document.getElementById("defline1").innerHTML="Chain 0, Structure Of Anisomycin Resistant 50s Ribosomal Subunit: 23s Rrna Mutation C2487u"' | |
1364 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1365 title="Chain 0, Structure Of Anisomycin Resistant 50s Ribosomal Subunit: 23s Rrna Mutation C2487u"> | |
1366 <div class="matchrow graphicrow"> | |
1367 <div class="matchitem graphicitem" | |
1368 style="background-color: transparent; width: 18.75%"></div> | |
1369 <div class="matchitem graphicitem" | |
1370 style="background-color: black; width: 75.0%"></div> | |
1371 <div class="matchitem graphicitem" | |
1372 style="background-color: transparent; width: 6.25%"></div> | |
1373 </div> | |
1374 </a> | |
1375 | |
1376 <a class=matchresult | |
1377 href="#hit71" | |
1378 onmouseover='document.getElementById("defline1").innerHTML="Chain 0, The Refined Crystal Structure Of The Haloarcula Marismortui Large Ribosomal Subunit At 2.4 Angstrom Resolution With Rrna Sequence For The 23s Rrna And Genome-Derived Sequences For R-Proteins "' | |
1379 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1380 title="Chain 0, The Refined Crystal Structure Of The Haloarcula Marismortui Large Ribosomal Subunit At 2.4 Angstrom Resolution With Rrna Sequence For The 23s Rrna And Genome-Derived Sequences For R-Proteins "> | |
1381 <div class="matchrow graphicrow"> | |
1382 <div class="matchitem graphicitem" | |
1383 style="background-color: transparent; width: 18.75%"></div> | |
1384 <div class="matchitem graphicitem" | |
1385 style="background-color: black; width: 75.0%"></div> | |
1386 <div class="matchitem graphicitem" | |
1387 style="background-color: transparent; width: 6.25%"></div> | |
1388 </div> | |
1389 </a> | |
1390 | |
1391 <a class=matchresult | |
1392 href="#hit72" | |
1393 onmouseover='document.getElementById("defline1").innerHTML="Chain 0, Structure Of A Mammalian Ribosomal 60s Subunit Within An 80s Complex Obtained By Docking Homology Models Of The Rna And Proteins Into An 8.7 A Cryo-Em Map"' | |
1394 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1395 title="Chain 0, Structure Of A Mammalian Ribosomal 60s Subunit Within An 80s Complex Obtained By Docking Homology Models Of The Rna And Proteins Into An 8.7 A Cryo-Em Map"> | |
1396 <div class="matchrow graphicrow"> | |
1397 <div class="matchitem graphicitem" | |
1398 style="background-color: transparent; width: 18.75%"></div> | |
1399 <div class="matchitem graphicitem" | |
1400 style="background-color: black; width: 81.25%"></div> | |
1401 </div> | |
1402 </a> | |
1403 | |
1404 <a class=matchresult | |
1405 href="#hit73" | |
1406 onmouseover='document.getElementById("defline1").innerHTML="Chain 0, A More Complete Structure Of The The L7L12 STALK OF THE Haloarcula Marismortui 50s Large Ribosomal Subunit"' | |
1407 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1408 title="Chain 0, A More Complete Structure Of The The L7L12 STALK OF THE Haloarcula Marismortui 50s Large Ribosomal Subunit"> | |
1409 <div class="matchrow graphicrow"> | |
1410 <div class="matchitem graphicitem" | |
1411 style="background-color: transparent; width: 18.75%"></div> | |
1412 <div class="matchitem graphicitem" | |
1413 style="background-color: black; width: 56.25%"></div> | |
1414 <div class="matchitem graphicitem" | |
1415 style="background-color: transparent; width: 25.0%"></div> | |
1416 </div> | |
1417 </a> | |
1418 | |
1419 <a class=matchresult | |
1420 href="#hit74" | |
1421 onmouseover='document.getElementById("defline1").innerHTML="Chain R, Structural Model For The Large Subunit Of The Mammalian Mitochondrial Ribosome"' | |
1422 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1423 title="Chain R, Structural Model For The Large Subunit Of The Mammalian Mitochondrial Ribosome"> | |
1424 <div class="matchrow graphicrow"> | |
1425 <div class="matchitem graphicitem" | |
1426 style="background-color: transparent; width: 43.75%"></div> | |
1427 <div class="matchitem graphicitem" | |
1428 style="background-color: black; width: 56.25%"></div> | |
1429 </div> | |
1430 </a> | |
1431 | |
1432 <a class=matchresult | |
1433 href="#hit75" | |
1434 onmouseover='document.getElementById("defline1").innerHTML="Chain 0, Refined Crystal Structure Of The Haloarcula Marismortui Large Ribosomal Subunit At 2.4 Angstrom Resolution "' | |
1435 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1436 title="Chain 0, Refined Crystal Structure Of The Haloarcula Marismortui Large Ribosomal Subunit At 2.4 Angstrom Resolution "> | |
1437 <div class="matchrow graphicrow"> | |
1438 <div class="matchitem graphicitem" | |
1439 style="background-color: transparent; width: 18.75%"></div> | |
1440 <div class="matchitem graphicitem" | |
1441 style="background-color: black; width: 56.25%"></div> | |
1442 <div class="matchitem graphicitem" | |
1443 style="background-color: transparent; width: 25.0%"></div> | |
1444 </div> | |
1445 </a> | |
1446 | |
1447 <a class=matchresult | |
1448 href="#hit76" | |
1449 onmouseover='document.getElementById("defline1").innerHTML="Chain 0, Crystal Structure Of Virginiamycin M And S Bound To The 50s Ribosomal Subunit Of Haloarcula Marismortui "' | |
1450 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1451 title="Chain 0, Crystal Structure Of Virginiamycin M And S Bound To The 50s Ribosomal Subunit Of Haloarcula Marismortui "> | |
1452 <div class="matchrow graphicrow"> | |
1453 <div class="matchitem graphicitem" | |
1454 style="background-color: transparent; width: 18.75%"></div> | |
1455 <div class="matchitem graphicitem" | |
1456 style="background-color: black; width: 75.0%"></div> | |
1457 <div class="matchitem graphicitem" | |
1458 style="background-color: transparent; width: 6.25%"></div> | |
1459 </div> | |
1460 </a> | |
1461 | |
1462 <a class=matchresult | |
1463 href="#hit77" | |
1464 onmouseover='document.getElementById("defline1").innerHTML="Chain 0, Crystal Structure Of Azithromycin Bound To The G2099a Mutant 50s Ribosomal Subunit Of Haloarcula Marismortui "' | |
1465 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1466 title="Chain 0, Crystal Structure Of Azithromycin Bound To The G2099a Mutant 50s Ribosomal Subunit Of Haloarcula Marismortui "> | |
1467 <div class="matchrow graphicrow"> | |
1468 <div class="matchitem graphicitem" | |
1469 style="background-color: transparent; width: 18.75%"></div> | |
1470 <div class="matchitem graphicitem" | |
1471 style="background-color: black; width: 75.0%"></div> | |
1472 <div class="matchitem graphicitem" | |
1473 style="background-color: transparent; width: 6.25%"></div> | |
1474 </div> | |
1475 </a> | |
1476 | |
1477 <a class=matchresult | |
1478 href="#hit78" | |
1479 onmouseover='document.getElementById("defline1").innerHTML="Chain 0, Crystal Structure Of Quinupristin Bound To The G2099a Mutant 50s Ribosomal Subunit Of Haloarcula Marismortui"' | |
1480 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1481 title="Chain 0, Crystal Structure Of Quinupristin Bound To The G2099a Mutant 50s Ribosomal Subunit Of Haloarcula Marismortui"> | |
1482 <div class="matchrow graphicrow"> | |
1483 <div class="matchitem graphicitem" | |
1484 style="background-color: transparent; width: 18.75%"></div> | |
1485 <div class="matchitem graphicitem" | |
1486 style="background-color: black; width: 75.0%"></div> | |
1487 <div class="matchitem graphicitem" | |
1488 style="background-color: transparent; width: 6.25%"></div> | |
1489 </div> | |
1490 </a> | |
1491 | |
1492 <a class=matchresult | |
1493 href="#hit79" | |
1494 onmouseover='document.getElementById("defline1").innerHTML="Chain A, Crystal Structure Of Cca-Phe-Cap-Biotin Bound Simultaneously At Half Occupancy To Both The A-Site And P- Site Of The The 50s Ribosomal Subunit."' | |
1495 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1496 title="Chain A, Crystal Structure Of Cca-Phe-Cap-Biotin Bound Simultaneously At Half Occupancy To Both The A-Site And P- Site Of The The 50s Ribosomal Subunit."> | |
1497 <div class="matchrow graphicrow"> | |
1498 <div class="matchitem graphicitem" | |
1499 style="background-color: transparent; width: 18.75%"></div> | |
1500 <div class="matchitem graphicitem" | |
1501 style="background-color: black; width: 56.25%"></div> | |
1502 <div class="matchitem graphicitem" | |
1503 style="background-color: transparent; width: 25.0%"></div> | |
1504 </div> | |
1505 </a> | |
1506 | |
1507 <a class=matchresult | |
1508 href="#hit80" | |
1509 onmouseover='document.getElementById("defline1").innerHTML="Chain 0, Fully Refined Crystal Structure Of The Haloarcula Marismortui Large Ribosomal Subunit At 2.4 Angstrom Resolution "' | |
1510 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1511 title="Chain 0, Fully Refined Crystal Structure Of The Haloarcula Marismortui Large Ribosomal Subunit At 2.4 Angstrom Resolution "> | |
1512 <div class="matchrow graphicrow"> | |
1513 <div class="matchitem graphicitem" | |
1514 style="background-color: transparent; width: 18.75%"></div> | |
1515 <div class="matchitem graphicitem" | |
1516 style="background-color: black; width: 56.25%"></div> | |
1517 <div class="matchitem graphicitem" | |
1518 style="background-color: transparent; width: 25.0%"></div> | |
1519 </div> | |
1520 </a> | |
1521 | |
1522 <a class=matchresult | |
1523 href="#hit81" | |
1524 onmouseover='document.getElementById("defline1").innerHTML="Chain A, Co-Crystal Structure Of Blasticidin S Bound To The 50s Ribosomal Subunit"' | |
1525 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1526 title="Chain A, Co-Crystal Structure Of Blasticidin S Bound To The 50s Ribosomal Subunit"> | |
1527 <div class="matchrow graphicrow"> | |
1528 <div class="matchitem graphicitem" | |
1529 style="background-color: transparent; width: 18.75%"></div> | |
1530 <div class="matchitem graphicitem" | |
1531 style="background-color: black; width: 56.25%"></div> | |
1532 <div class="matchitem graphicitem" | |
1533 style="background-color: transparent; width: 25.0%"></div> | |
1534 </div> | |
1535 </a> | |
1536 | |
1537 <a class=matchresult | |
1538 href="#hit82" | |
1539 onmouseover='document.getElementById("defline1").innerHTML="Chain 0, Crystal Structure Of The Large Ribosomal Subunit From Haloarcula Marismortui At 2.4 Angstrom Resolution"' | |
1540 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1541 title="Chain 0, Crystal Structure Of The Large Ribosomal Subunit From Haloarcula Marismortui At 2.4 Angstrom Resolution"> | |
1542 <div class="matchrow graphicrow"> | |
1543 <div class="matchitem graphicitem" | |
1544 style="background-color: transparent; width: 18.75%"></div> | |
1545 <div class="matchitem graphicitem" | |
1546 style="background-color: black; width: 56.25%"></div> | |
1547 <div class="matchitem graphicitem" | |
1548 style="background-color: transparent; width: 25.0%"></div> | |
1549 </div> | |
1550 </a> | |
1551 | |
1552 <a class=matchresult | |
1553 href="#hit83" | |
1554 onmouseover='document.getElementById("defline1").innerHTML="Chain A, Large Ribosomal Subunit Complexed With A 13 Bp Minihelix- Puromycin Compound"' | |
1555 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1556 title="Chain A, Large Ribosomal Subunit Complexed With A 13 Bp Minihelix- Puromycin Compound"> | |
1557 <div class="matchrow graphicrow"> | |
1558 <div class="matchitem graphicitem" | |
1559 style="background-color: transparent; width: 18.75%"></div> | |
1560 <div class="matchitem graphicitem" | |
1561 style="background-color: black; width: 56.25%"></div> | |
1562 <div class="matchitem graphicitem" | |
1563 style="background-color: transparent; width: 25.0%"></div> | |
1564 </div> | |
1565 </a> | |
1566 | |
1567 <a class=matchresult | |
1568 href="#hit84" | |
1569 onmouseover='document.getElementById("defline1").innerHTML="Chain A, Large Ribosomal Subunit Complexed With R(Cc)-Da-Puromycin"' | |
1570 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1571 title="Chain A, Large Ribosomal Subunit Complexed With R(Cc)-Da-Puromycin"> | |
1572 <div class="matchrow graphicrow"> | |
1573 <div class="matchitem graphicitem" | |
1574 style="background-color: transparent; width: 18.75%"></div> | |
1575 <div class="matchitem graphicitem" | |
1576 style="background-color: black; width: 56.25%"></div> | |
1577 <div class="matchitem graphicitem" | |
1578 style="background-color: transparent; width: 25.0%"></div> | |
1579 </div> | |
1580 </a> | |
1581 | |
1582 <a class=matchresult | |
1583 href="#hit85" | |
1584 onmouseover='document.getElementById("defline1").innerHTML="Chain F, Crystal Structure Of The Catalytic Domain Of Rlub In Complex With A 21-nucleotide Rna Substrate"' | |
1585 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1586 title="Chain F, Crystal Structure Of The Catalytic Domain Of Rlub In Complex With A 21-nucleotide Rna Substrate"> | |
1587 <div class="matchrow graphicrow"> | |
1588 <div class="matchitem graphicitem" | |
1589 style="background-color: transparent; width: 25.0%"></div> | |
1590 <div class="matchitem graphicitem" | |
1591 style="background-color: black; width: 50.0%"></div> | |
1592 <div class="matchitem graphicitem" | |
1593 style="background-color: transparent; width: 25.0%"></div> | |
1594 </div> | |
1595 </a> | |
1596 | |
1597 <a class=matchresult | |
1598 href="#hit86" | |
1599 onmouseover='document.getElementById("defline1").innerHTML="Chain E, Crystal Structure Of The Catalytic Domain Of Rlub In Complex With A 21-nucleotide Rna Substrate"' | |
1600 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1601 title="Chain E, Crystal Structure Of The Catalytic Domain Of Rlub In Complex With A 21-nucleotide Rna Substrate"> | |
1602 <div class="matchrow graphicrow"> | |
1603 <div class="matchitem graphicitem" | |
1604 style="background-color: transparent; width: 25.0%"></div> | |
1605 <div class="matchitem graphicitem" | |
1606 style="background-color: black; width: 50.0%"></div> | |
1607 <div class="matchitem graphicitem" | |
1608 style="background-color: transparent; width: 25.0%"></div> | |
1609 </div> | |
1610 </a> | |
1611 | |
1612 <a class=matchresult | |
1613 href="#hit87" | |
1614 onmouseover='document.getElementById("defline1").innerHTML="Chain A, Thermus Thermophilus Ribosome"' | |
1615 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1616 title="Chain A, Thermus Thermophilus Ribosome"> | |
1617 <div class="matchrow graphicrow"> | |
1618 <div class="matchitem graphicitem" | |
1619 style="background-color: transparent; width: 25.0%"></div> | |
1620 <div class="matchitem graphicitem" | |
1621 style="background-color: black; width: 68.75%"></div> | |
1622 <div class="matchitem graphicitem" | |
1623 style="background-color: transparent; width: 6.25%"></div> | |
1624 </div> | |
1625 </a> | |
1626 | |
1627 <a class=matchresult | |
1628 href="#hit88" | |
1629 onmouseover='document.getElementById("defline1").innerHTML="Chain A, Crystal Structure Of Blasticidin S Bound To Thermus Thermophilus 70s Ribosome. This File Contains The 50s Subunit And Blasticidin S Molecule From The First 70s Ribosome. "' | |
1630 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1631 title="Chain A, Crystal Structure Of Blasticidin S Bound To Thermus Thermophilus 70s Ribosome. This File Contains The 50s Subunit And Blasticidin S Molecule From The First 70s Ribosome. "> | |
1632 <div class="matchrow graphicrow"> | |
1633 <div class="matchitem graphicitem" | |
1634 style="background-color: transparent; width: 25.0%"></div> | |
1635 <div class="matchitem graphicitem" | |
1636 style="background-color: black; width: 68.75%"></div> | |
1637 <div class="matchitem graphicitem" | |
1638 style="background-color: transparent; width: 6.25%"></div> | |
1639 </div> | |
1640 </a> | |
1641 | |
1642 <a class=matchresult | |
1643 href="#hit89" | |
1644 onmouseover='document.getElementById("defline1").innerHTML="Chain A, Crystal Structure Of The 70s Ribosome Bound With The Q253p Mutant Of Release Factor Rf2. 50s Of The A Subunit "' | |
1645 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1646 title="Chain A, Crystal Structure Of The 70s Ribosome Bound With The Q253p Mutant Of Release Factor Rf2. 50s Of The A Subunit "> | |
1647 <div class="matchrow graphicrow"> | |
1648 <div class="matchitem graphicitem" | |
1649 style="background-color: transparent; width: 25.0%"></div> | |
1650 <div class="matchitem graphicitem" | |
1651 style="background-color: black; width: 68.75%"></div> | |
1652 <div class="matchitem graphicitem" | |
1653 style="background-color: transparent; width: 6.25%"></div> | |
1654 </div> | |
1655 </a> | |
1656 | |
1657 <a class=matchresult | |
1658 href="#hit90" | |
1659 onmouseover='document.getElementById("defline1").innerHTML="Chain A, Crystal Structure Of Thermus Thermophilus 70s Containing Trnas And Mrna Stop Codon With Pseudouridine"' | |
1660 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1661 title="Chain A, Crystal Structure Of Thermus Thermophilus 70s Containing Trnas And Mrna Stop Codon With Pseudouridine"> | |
1662 <div class="matchrow graphicrow"> | |
1663 <div class="matchitem graphicitem" | |
1664 style="background-color: transparent; width: 25.0%"></div> | |
1665 <div class="matchitem graphicitem" | |
1666 style="background-color: black; width: 68.75%"></div> | |
1667 <div class="matchitem graphicitem" | |
1668 style="background-color: transparent; width: 6.25%"></div> | |
1669 </div> | |
1670 </a> | |
1671 | |
1672 <a class=matchresult | |
1673 href="#hit91" | |
1674 onmouseover='document.getElementById("defline1").innerHTML="Chain A, Crystal Structure Of Thermus Thermophilus 70s Containing Trnas And Mrna Stop Codon With Pseudouridine"' | |
1675 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1676 title="Chain A, Crystal Structure Of Thermus Thermophilus 70s Containing Trnas And Mrna Stop Codon With Pseudouridine"> | |
1677 <div class="matchrow graphicrow"> | |
1678 <div class="matchitem graphicitem" | |
1679 style="background-color: transparent; width: 25.0%"></div> | |
1680 <div class="matchitem graphicitem" | |
1681 style="background-color: black; width: 68.75%"></div> | |
1682 <div class="matchitem graphicitem" | |
1683 style="background-color: transparent; width: 6.25%"></div> | |
1684 </div> | |
1685 </a> | |
1686 | |
1687 <a class=matchresult | |
1688 href="#hit92" | |
1689 onmouseover='document.getElementById("defline1").innerHTML="Chain A, Atomic Model Of The Immature 50s Subunit From Bacillus Subtilis (state I-a)"' | |
1690 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1691 title="Chain A, Atomic Model Of The Immature 50s Subunit From Bacillus Subtilis (state I-a)"> | |
1692 <div class="matchrow graphicrow"> | |
1693 <div class="matchitem graphicitem" | |
1694 style="background-color: transparent; width: 12.5%"></div> | |
1695 <div class="matchitem graphicitem" | |
1696 style="background-color: black; width: 87.5%"></div> | |
1697 </div> | |
1698 </a> | |
1699 | |
1700 <a class=matchresult | |
1701 href="#hit93" | |
1702 onmouseover='document.getElementById("defline1").innerHTML="Chain A, Atomic Model Of The Immature 50s Subunit From Bacillus Subtilis (state Ii-a)"' | |
1703 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1704 title="Chain A, Atomic Model Of The Immature 50s Subunit From Bacillus Subtilis (state Ii-a)"> | |
1705 <div class="matchrow graphicrow"> | |
1706 <div class="matchitem graphicitem" | |
1707 style="background-color: transparent; width: 12.5%"></div> | |
1708 <div class="matchitem graphicitem" | |
1709 style="background-color: black; width: 87.5%"></div> | |
1710 </div> | |
1711 </a> | |
1712 | |
1713 <a class=matchresult | |
1714 href="#hit94" | |
1715 onmouseover='document.getElementById("defline1").innerHTML="Chain A, Crystal Structure Of The Bacterial Ribosome Ram Mutation G347u. This Entry Contains The 50s Ribosomal Subunit Of The Second 70s Molecule In The Asymmetric Unit"' | |
1716 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1717 title="Chain A, Crystal Structure Of The Bacterial Ribosome Ram Mutation G347u. This Entry Contains The 50s Ribosomal Subunit Of The Second 70s Molecule In The Asymmetric Unit"> | |
1718 <div class="matchrow graphicrow"> | |
1719 <div class="matchitem graphicitem" | |
1720 style="background-color: transparent; width: 25.0%"></div> | |
1721 <div class="matchitem graphicitem" | |
1722 style="background-color: black; width: 68.75%"></div> | |
1723 <div class="matchitem graphicitem" | |
1724 style="background-color: transparent; width: 6.25%"></div> | |
1725 </div> | |
1726 </a> | |
1727 | |
1728 <a class=matchresult | |
1729 href="#hit95" | |
1730 onmouseover='document.getElementById("defline1").innerHTML="Chain A, Crystal Structure Of The Bacterial Ribosome Ram Mutation G347u. This Entry Contains The 50s Ribosomal Subunit Of The First 70s Molecule In The Asymmetric Unit"' | |
1731 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1732 title="Chain A, Crystal Structure Of The Bacterial Ribosome Ram Mutation G347u. This Entry Contains The 50s Ribosomal Subunit Of The First 70s Molecule In The Asymmetric Unit"> | |
1733 <div class="matchrow graphicrow"> | |
1734 <div class="matchitem graphicitem" | |
1735 style="background-color: transparent; width: 25.0%"></div> | |
1736 <div class="matchitem graphicitem" | |
1737 style="background-color: black; width: 68.75%"></div> | |
1738 <div class="matchitem graphicitem" | |
1739 style="background-color: transparent; width: 6.25%"></div> | |
1740 </div> | |
1741 </a> | |
1742 | |
1743 <a class=matchresult | |
1744 href="#hit96" | |
1745 onmouseover='document.getElementById("defline1").innerHTML="Chain d, The Cryo-Em Structure Of A 3d Dna-Origami Object"' | |
1746 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1747 title="Chain d, The Cryo-Em Structure Of A 3d Dna-Origami Object"> | |
1748 <div class="matchrow graphicrow"> | |
1749 <div class="matchitem graphicitem" | |
1750 style="background-color: transparent; width: 25.0%"></div> | |
1751 <div class="matchitem graphicitem" | |
1752 style="background-color: black; width: 50.0%"></div> | |
1753 <div class="matchitem graphicitem" | |
1754 style="background-color: transparent; width: 25.0%"></div> | |
1755 </div> | |
1756 </a> | |
1757 | |
1758 <a class=matchresult | |
1759 href="#hit97" | |
1760 onmouseover='document.getElementById("defline1").innerHTML="Chain A, The Cryo-Em Structure Of A 3d Dna-Origami Object"' | |
1761 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1762 title="Chain A, The Cryo-Em Structure Of A 3d Dna-Origami Object"> | |
1763 <div class="matchrow graphicrow"> | |
1764 <div class="matchitem graphicitem" | |
1765 style="background-color: transparent; width: 18.75%"></div> | |
1766 <div class="matchitem graphicitem" | |
1767 style="background-color: black; width: 56.25%"></div> | |
1768 <div class="matchitem graphicitem" | |
1769 style="background-color: transparent; width: 25.0%"></div> | |
1770 </div> | |
1771 </a> | |
1772 | |
1773 <a class=matchresult | |
1774 href="#hit98" | |
1775 onmouseover='document.getElementById("defline1").innerHTML="Chain A, Structure Of The Thermus Thermophilus 70s Ribosome Complexed With Mrna, Trna And Paromomycin (Part 2 Of 4). This File Contains The 50s Subunit From Molecule I. "' | |
1776 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1777 title="Chain A, Structure Of The Thermus Thermophilus 70s Ribosome Complexed With Mrna, Trna And Paromomycin (Part 2 Of 4). This File Contains The 50s Subunit From Molecule I. "> | |
1778 <div class="matchrow graphicrow"> | |
1779 <div class="matchitem graphicitem" | |
1780 style="background-color: transparent; width: 25.0%"></div> | |
1781 <div class="matchitem graphicitem" | |
1782 style="background-color: black; width: 68.75%"></div> | |
1783 <div class="matchitem graphicitem" | |
1784 style="background-color: transparent; width: 6.25%"></div> | |
1785 </div> | |
1786 </a> | |
1787 | |
1788 <a class=matchresult | |
1789 href="#hit99" | |
1790 onmouseover='document.getElementById("defline1").innerHTML="Chain C, Crystal Structure Of I-Crei Complexed With Its Target Methylated At Position Plus 2 (In The B Strand) In The Presence Of Magnesium"' | |
1791 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1792 title="Chain C, Crystal Structure Of I-Crei Complexed With Its Target Methylated At Position Plus 2 (In The B Strand) In The Presence Of Magnesium"> | |
1793 <div class="matchrow graphicrow"> | |
1794 <div class="matchitem graphicitem" | |
1795 style="background-color: transparent; width: 25.0%"></div> | |
1796 <div class="matchitem graphicitem" | |
1797 style="background-color: black; width: 50.0%"></div> | |
1798 <div class="matchitem graphicitem" | |
1799 style="background-color: transparent; width: 25.0%"></div> | |
1800 </div> | |
1801 </a> | |
1802 | |
1803 <a class=matchresult | |
1804 href="#hit100" | |
1805 onmouseover='document.getElementById("defline1").innerHTML="Chain C, Crystal Structure Of I-Crei Complexed With Its Target Methylated At Position Plus 2 (In The B Strand) In The Presence Of Calcium"' | |
1806 onmouseout='document.getElementById("defline1").innerHTML="Mouse-over to show defline and scores, click to show alignments"' | |
1807 title="Chain C, Crystal Structure Of I-Crei Complexed With Its Target Methylated At Position Plus 2 (In The B Strand) In The Presence Of Calcium"> | |
1808 <div class="matchrow graphicrow"> | |
1809 <div class="matchitem graphicitem" | |
1810 style="background-color: transparent; width: 25.0%"></div> | |
1811 <div class="matchitem graphicitem" | |
1812 style="background-color: black; width: 50.0%"></div> | |
1813 <div class="matchitem graphicitem" | |
1814 style="background-color: transparent; width: 25.0%"></div> | |
1815 </div> | |
1816 </a> | |
1817 | |
1818 </div> | |
1819 </div> | |
1820 </div> | |
1821 </section> | |
1822 | |
1823 | |
1824 | |
1825 <section class=descriptions> | |
1826 <h2>Descriptions</h2> | |
1827 | |
1828 <div class=grey><div class=white> | |
1829 <h4 class=darkHeader>Sequences producing significant alignments:</h4> | |
1830 | |
1831 <table class=descriptiontable> | |
1832 <col/><col/><col/><col/><col/><col/><col/> | |
1833 <tr> | |
1834 <th>Description</th> | |
1835 <th>Max score</th> | |
1836 <th>Total score</th> | |
1837 <th>Query cover</th> | |
1838 <th>E value</th> | |
1839 <th>Ident</th> | |
1840 <th>Accession</th> | |
1841 </tr> | |
1842 <tr> | |
1843 <td><div><a href="#hit1" | |
1844 title="Chain A, E. Coli 70s-fmetval-trnaval Post-translocation Complex (post4, 50s Subunit)" | |
1845 id="description1"> | |
1846 Chain A, E. Coli 70s-fmetval-trnaval Post-translocation Complex (post4, 50s Subunit) | |
1847 </a></div></td> | |
1848 <td>32.2</td> | |
1849 <td>77.3</td> | |
1850 <td>100%</td> | |
1851 <td>0.0007913</td> | |
1852 <td>100%</td> | |
1853 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/557804730?report=genbank&log$=nuclalign">3J5K_A</a></td> | |
1854 </tr> | |
1855 <tr> | |
1856 <td><div><a href="#hit2" | |
1857 title="Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Intermediate Post- Translocation State (post3b, 50s Subunit)" | |
1858 id="description2"> | |
1859 Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Intermediate Post- Translocation State (post3b, 50s Subunit) | |
1860 </a></div></td> | |
1861 <td>32.2</td> | |
1862 <td>77.3</td> | |
1863 <td>100%</td> | |
1864 <td>0.0007913</td> | |
1865 <td>100%</td> | |
1866 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/557804675?report=genbank&log$=nuclalign">3J5I_A</a></td> | |
1867 </tr> | |
1868 <tr> | |
1869 <td><div><a href="#hit3" | |
1870 title="Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Intermediate Post- Translocation State (post3a, 50s Subunit)" | |
1871 id="description3"> | |
1872 Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Intermediate Post- Translocation State (post3a, 50s Subunit) | |
1873 </a></div></td> | |
1874 <td>32.2</td> | |
1875 <td>77.3</td> | |
1876 <td>100%</td> | |
1877 <td>0.0007913</td> | |
1878 <td>100%</td> | |
1879 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/557804619?report=genbank&log$=nuclalign">3J5G_A</a></td> | |
1880 </tr> | |
1881 <tr> | |
1882 <td><div><a href="#hit4" | |
1883 title="Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Intermediate Post- Translocation State (post2b, 50s Subunit)" | |
1884 id="description4"> | |
1885 Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Intermediate Post- Translocation State (post2b, 50s Subunit) | |
1886 </a></div></td> | |
1887 <td>32.2</td> | |
1888 <td>77.3</td> | |
1889 <td>100%</td> | |
1890 <td>0.0007913</td> | |
1891 <td>100%</td> | |
1892 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/557804563?report=genbank&log$=nuclalign">3J5E_A</a></td> | |
1893 </tr> | |
1894 <tr> | |
1895 <td><div><a href="#hit5" | |
1896 title="Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Intermediate Post- Translocation State (post2a, 50s Subunit)" | |
1897 id="description5"> | |
1898 Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Intermediate Post- Translocation State (post2a, 50s Subunit) | |
1899 </a></div></td> | |
1900 <td>32.2</td> | |
1901 <td>77.3</td> | |
1902 <td>100%</td> | |
1903 <td>0.0007913</td> | |
1904 <td>100%</td> | |
1905 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/557804507?report=genbank&log$=nuclalign">3J5C_A</a></td> | |
1906 </tr> | |
1907 <tr> | |
1908 <td><div><a href="#hit6" | |
1909 title="Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Classic Post- Translocation State (post1, 50s Subunit)" | |
1910 id="description6"> | |
1911 Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Classic Post- Translocation State (post1, 50s Subunit) | |
1912 </a></div></td> | |
1913 <td>32.2</td> | |
1914 <td>77.3</td> | |
1915 <td>100%</td> | |
1916 <td>0.0007913</td> | |
1917 <td>100%</td> | |
1918 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/557804451?report=genbank&log$=nuclalign">3J5A_A</a></td> | |
1919 </tr> | |
1920 <tr> | |
1921 <td><div><a href="#hit7" | |
1922 title="Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Hybrid Pre- Translocation State (pre5b, 50s Subunit)" | |
1923 id="description7"> | |
1924 Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Hybrid Pre- Translocation State (pre5b, 50s Subunit) | |
1925 </a></div></td> | |
1926 <td>32.2</td> | |
1927 <td>77.3</td> | |
1928 <td>100%</td> | |
1929 <td>0.0007913</td> | |
1930 <td>100%</td> | |
1931 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/557804395?report=genbank&log$=nuclalign">3J58_A</a></td> | |
1932 </tr> | |
1933 <tr> | |
1934 <td><div><a href="#hit8" | |
1935 title="Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Hybrid Pre- Translocation State (pre5a, 50s Subunit)" | |
1936 id="description8"> | |
1937 Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Hybrid Pre- Translocation State (pre5a, 50s Subunit) | |
1938 </a></div></td> | |
1939 <td>32.2</td> | |
1940 <td>77.3</td> | |
1941 <td>100%</td> | |
1942 <td>0.0007913</td> | |
1943 <td>100%</td> | |
1944 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/557804339?report=genbank&log$=nuclalign">3J56_A</a></td> | |
1945 </tr> | |
1946 <tr> | |
1947 <td><div><a href="#hit9" | |
1948 title="Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Hybrid Pre- Translocation State (pre4, 50s Subunit)" | |
1949 id="description9"> | |
1950 Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Hybrid Pre- Translocation State (pre4, 50s Subunit) | |
1951 </a></div></td> | |
1952 <td>32.2</td> | |
1953 <td>77.3</td> | |
1954 <td>100%</td> | |
1955 <td>0.0007913</td> | |
1956 <td>100%</td> | |
1957 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/557804283?report=genbank&log$=nuclalign">3J54_A</a></td> | |
1958 </tr> | |
1959 <tr> | |
1960 <td><div><a href="#hit10" | |
1961 title="Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Classic Pre- Translocation State (pre1a, 50s Subunit)" | |
1962 id="description10"> | |
1963 Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Classic Pre- Translocation State (pre1a, 50s Subunit) | |
1964 </a></div></td> | |
1965 <td>32.2</td> | |
1966 <td>77.3</td> | |
1967 <td>100%</td> | |
1968 <td>0.0007913</td> | |
1969 <td>100%</td> | |
1970 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/557804227?report=genbank&log$=nuclalign">3J52_A</a></td> | |
1971 </tr> | |
1972 <tr> | |
1973 <td><div><a href="#hit11" | |
1974 title="Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Intermediate Pre- Translocation State (pre3, 50s Subunit)" | |
1975 id="description11"> | |
1976 Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Intermediate Pre- Translocation State (pre3, 50s Subunit) | |
1977 </a></div></td> | |
1978 <td>32.2</td> | |
1979 <td>77.3</td> | |
1980 <td>100%</td> | |
1981 <td>0.0007913</td> | |
1982 <td>100%</td> | |
1983 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/557804195?report=genbank&log$=nuclalign">3J51_A</a></td> | |
1984 </tr> | |
1985 <tr> | |
1986 <td><div><a href="#hit12" | |
1987 title="Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Intermediate Pre- Translocation State (pre2, 50s Subunit)" | |
1988 id="description12"> | |
1989 Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Intermediate Pre- Translocation State (pre2, 50s Subunit) | |
1990 </a></div></td> | |
1991 <td>32.2</td> | |
1992 <td>77.3</td> | |
1993 <td>100%</td> | |
1994 <td>0.0007913</td> | |
1995 <td>100%</td> | |
1996 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/557804163?report=genbank&log$=nuclalign">3J50_A</a></td> | |
1997 </tr> | |
1998 <tr> | |
1999 <td><div><a href="#hit13" | |
2000 title="Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Classic Pre- Translocation State (pre1b, 50s Subunit)" | |
2001 id="description13"> | |
2002 Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Classic Pre- Translocation State (pre1b, 50s Subunit) | |
2003 </a></div></td> | |
2004 <td>32.2</td> | |
2005 <td>77.3</td> | |
2006 <td>100%</td> | |
2007 <td>0.0007913</td> | |
2008 <td>100%</td> | |
2009 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/557804083?report=genbank&log$=nuclalign">3J4X_A</a></td> | |
2010 </tr> | |
2011 <tr> | |
2012 <td><div><a href="#hit14" | |
2013 title="Chain A, Tetracycline Resistance Protein Tet(o) Bound To The Ribosome" | |
2014 id="description14"> | |
2015 Chain A, Tetracycline Resistance Protein Tet(o) Bound To The Ribosome | |
2016 </a></div></td> | |
2017 <td>32.2</td> | |
2018 <td>62.9</td> | |
2019 <td>100%</td> | |
2020 <td>0.0007913</td> | |
2021 <td>100%</td> | |
2022 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/474452808?report=genbank&log$=nuclalign">3J37_A</a></td> | |
2023 </tr> | |
2024 <tr> | |
2025 <td><div><a href="#hit15" | |
2026 title="Chain B, Structural Insights Into Cognate Vs. Near-Cognate Discrimination During Decoding. This Entry Contains The Large Subunit Of A Ribosome Programmed With A Near-Cognate Codon. " | |
2027 id="description15"> | |
2028 Chain B, Structural Insights Into Cognate Vs. Near-Cognate Discrimination During Decoding. This Entry Contains The Large Subunit Of A Ribosome Programmed With A Near-Cognate Codon. | |
2029 </a></div></td> | |
2030 <td>32.2</td> | |
2031 <td>62.9</td> | |
2032 <td>100%</td> | |
2033 <td>0.0007913</td> | |
2034 <td>100%</td> | |
2035 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/326634210?report=genbank&log$=nuclalign">3IZT_B</a></td> | |
2036 </tr> | |
2037 <tr> | |
2038 <td><div><a href="#hit16" | |
2039 title="Chain B, Ternary Complex-Bound E.Coli 70s Ribosome. This Entry Consists Of The 50s Subunit. " | |
2040 id="description16"> | |
2041 Chain B, Ternary Complex-Bound E.Coli 70s Ribosome. This Entry Consists Of The 50s Subunit. | |
2042 </a></div></td> | |
2043 <td>32.2</td> | |
2044 <td>77.3</td> | |
2045 <td>100%</td> | |
2046 <td>0.0007913</td> | |
2047 <td>100%</td> | |
2048 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/224510767?report=genbank&log$=nuclalign">3FIK_B</a></td> | |
2049 </tr> | |
2050 <tr> | |
2051 <td><div><a href="#hit17" | |
2052 title="Chain B, Structure Of The 50s Subunit Of E. Coli Ribosome In Pre-Accommodation State " | |
2053 id="description17"> | |
2054 Chain B, Structure Of The 50s Subunit Of E. Coli Ribosome In Pre-Accommodation State | |
2055 </a></div></td> | |
2056 <td>32.2</td> | |
2057 <td>77.3</td> | |
2058 <td>100%</td> | |
2059 <td>0.0007913</td> | |
2060 <td>100%</td> | |
2061 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/256032374?report=genbank&log$=nuclalign">3E1B_B</a></td> | |
2062 </tr> | |
2063 <tr> | |
2064 <td><div><a href="#hit18" | |
2065 title="Chain 0, Structure Of The 50s Subunit Of A Secm-Stalled E. Coli Ribosome Complex Obtained By Fitting Atomic Models For Rna And Protein Components Into Cryo-Em Map Emd-1143" | |
2066 id="description18"> | |
2067 Chain 0, Structure Of The 50s Subunit Of A Secm-Stalled E. Coli Ribosome Complex Obtained By Fitting Atomic Models For Rna And Protein Components Into Cryo-Em Map Emd-1143 | |
2068 </a></div></td> | |
2069 <td>32.2</td> | |
2070 <td>77.3</td> | |
2071 <td>100%</td> | |
2072 <td>0.0007913</td> | |
2073 <td>100%</td> | |
2074 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/157883716?report=genbank&log$=nuclalign">2GYC_0</a></td> | |
2075 </tr> | |
2076 <tr> | |
2077 <td><div><a href="#hit19" | |
2078 title="Chain 0, Structure Of The 50s Subunit Of A Pre-Translocational E. Coli Ribosome Obtained By Fitting Atomic Models For Rna And Protein Components Into Cryo-Em Map Emd-1056" | |
2079 id="description19"> | |
2080 Chain 0, Structure Of The 50s Subunit Of A Pre-Translocational E. Coli Ribosome Obtained By Fitting Atomic Models For Rna And Protein Components Into Cryo-Em Map Emd-1056 | |
2081 </a></div></td> | |
2082 <td>32.2</td> | |
2083 <td>77.3</td> | |
2084 <td>100%</td> | |
2085 <td>0.0007913</td> | |
2086 <td>100%</td> | |
2087 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/157883710?report=genbank&log$=nuclalign">2GYA_0</a></td> | |
2088 </tr> | |
2089 <tr> | |
2090 <td><div><a href="#hit20" | |
2091 title="Chain B, Crystal Structure Of Ribosome With Messenger Rna And The Anticodon Stem-Loop Of P-Site Trna. This File Contains The 50s Subunit Of One 70s Ribosome. The Entire Crystal Structure Contains Two 70s Ribosomes And Is Described In Remark 400." | |
2092 id="description20"> | |
2093 Chain B, Crystal Structure Of Ribosome With Messenger Rna And The Anticodon Stem-Loop Of P-Site Trna. This File Contains The 50s Subunit Of One 70s Ribosome. The Entire Crystal Structure Contains Two 70s Ribosomes And Is Described In Remark 400. | |
2094 </a></div></td> | |
2095 <td>32.2</td> | |
2096 <td>77.3</td> | |
2097 <td>100%</td> | |
2098 <td>0.0007913</td> | |
2099 <td>100%</td> | |
2100 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/122922257?report=genbank&log$=nuclalign">2I2V_B</a></td> | |
2101 </tr> | |
2102 <tr> | |
2103 <td><div><a href="#hit21" | |
2104 title="Chain B, Crystal Structure Of The Bacterial Ribosome From Escherichia Coli At 3.5 A Resolution. This File Contains The 50s Subunit Of One 70s Ribosome. The Entire Crystal Structure Contains Two 70s Ribosomes And Is Described In Remark 400. " | |
2105 id="description21"> | |
2106 Chain B, Crystal Structure Of The Bacterial Ribosome From Escherichia Coli At 3.5 A Resolution. This File Contains The 50s Subunit Of One 70s Ribosome. The Entire Crystal Structure Contains Two 70s Ribosomes And Is Described In Remark 400. | |
2107 </a></div></td> | |
2108 <td>32.2</td> | |
2109 <td>77.3</td> | |
2110 <td>100%</td> | |
2111 <td>0.0007913</td> | |
2112 <td>100%</td> | |
2113 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/83754062?report=genbank&log$=nuclalign">2AW4_B</a></td> | |
2114 </tr> | |
2115 <tr> | |
2116 <td><div><a href="#hit22" | |
2117 title="Chain B, Crystal Structure Of The Bacterial Ribosome From Escherichia Coli At 3.5 A Resolution. This File Contains The 50s Subunit Of The Second 70s Ribosome. The Entire Crystal Structure Contains Two 70s Ribosomes And Is Described In Remark 400. " | |
2118 id="description22"> | |
2119 Chain B, Crystal Structure Of The Bacterial Ribosome From Escherichia Coli At 3.5 A Resolution. This File Contains The 50s Subunit Of The Second 70s Ribosome. The Entire Crystal Structure Contains Two 70s Ribosomes And Is Described In Remark 400. | |
2120 </a></div></td> | |
2121 <td>32.2</td> | |
2122 <td>77.3</td> | |
2123 <td>100%</td> | |
2124 <td>0.0007913</td> | |
2125 <td>100%</td> | |
2126 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/83754118?report=genbank&log$=nuclalign">2AWB_B</a></td> | |
2127 </tr> | |
2128 <tr> | |
2129 <td><div><a href="#hit23" | |
2130 title="Chain B, Crystal Structure Of The Bacterial Ribosome From Escherichia Coli In Complex With The Antibiotic Kasugamyin At 3.5a Resolution. This File Contains The 50s Subunit Of One 70s Ribosome. The Entire Crystal Structure Contains Two 70s Ribosomes And Is Described In Remark 400. " | |
2131 id="description23"> | |
2132 Chain B, Crystal Structure Of The Bacterial Ribosome From Escherichia Coli In Complex With The Antibiotic Kasugamyin At 3.5a Resolution. This File Contains The 50s Subunit Of One 70s Ribosome. The Entire Crystal Structure Contains Two 70s Ribosomes And Is Described In Remark 400. | |
2133 </a></div></td> | |
2134 <td>32.2</td> | |
2135 <td>77.3</td> | |
2136 <td>100%</td> | |
2137 <td>0.0007913</td> | |
2138 <td>100%</td> | |
2139 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/157880571?report=genbank&log$=nuclalign">1VS6_B</a></td> | |
2140 </tr> | |
2141 <tr> | |
2142 <td><div><a href="#hit24" | |
2143 title="Chain 0, Real Space Refined Coordinates Of The 50s Subunit Fitted Into The Low Resolution Cryo-Em Map Of The Ef-G.Gtp State Of E. Coli 70s Ribosome " | |
2144 id="description24"> | |
2145 Chain 0, Real Space Refined Coordinates Of The 50s Subunit Fitted Into The Low Resolution Cryo-Em Map Of The Ef-G.Gtp State Of E. Coli 70s Ribosome | |
2146 </a></div></td> | |
2147 <td>32.2</td> | |
2148 <td>77.3</td> | |
2149 <td>100%</td> | |
2150 <td>0.0007913</td> | |
2151 <td>100%</td> | |
2152 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/33357900?report=genbank&log$=nuclalign">1P85_0</a></td> | |
2153 </tr> | |
2154 <tr> | |
2155 <td><div><a href="#hit25" | |
2156 title="Chain B, 23s Rrna Structure Fitted To A Cryo-Electron Microscopic Map At 7.5 Angstroms Resolution" | |
2157 id="description25"> | |
2158 Chain B, 23s Rrna Structure Fitted To A Cryo-Electron Microscopic Map At 7.5 Angstroms Resolution | |
2159 </a></div></td> | |
2160 <td>26.3</td> | |
2161 <td>40.6</td> | |
2162 <td>81%</td> | |
2163 <td>0.04882</td> | |
2164 <td>100%</td> | |
2165 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/7767146?report=genbank&log$=nuclalign">1C2W_B</a></td> | |
2166 </tr> | |
2167 <tr> | |
2168 <td><div><a href="#hit30" | |
2169 title="Chain 1, Structure Of The Methanococcus Jannaschii Ribosome-secyebeta Channel Complex (50s Ribosomal Subunit)" | |
2170 id="description30"> | |
2171 Chain 1, Structure Of The Methanococcus Jannaschii Ribosome-secyebeta Channel Complex (50s Ribosomal Subunit) | |
2172 </a></div></td> | |
2173 <td>18.3</td> | |
2174 <td>36.7</td> | |
2175 <td>81%</td> | |
2176 <td>11.9</td> | |
2177 <td>92%</td> | |
2178 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/551701574?report=genbank&log$=nuclalign">3J44_1</a></td> | |
2179 </tr> | |
2180 <tr> | |
2181 <td><div><a href="#hit35" | |
2182 title="Chain 1, Promiscuous Behavior Of Proteins In Archaeal Ribosomes Revealed By Cryo-em: Implications For Evolution Of Eukaryotic Ribosomes (50s Ribosomal Rna)" | |
2183 id="description35"> | |
2184 Chain 1, Promiscuous Behavior Of Proteins In Archaeal Ribosomes Revealed By Cryo-em: Implications For Evolution Of Eukaryotic Ribosomes (50s Ribosomal Rna) | |
2185 </a></div></td> | |
2186 <td>18.3</td> | |
2187 <td>36.7</td> | |
2188 <td>81%</td> | |
2189 <td>11.9</td> | |
2190 <td>92%</td> | |
2191 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/428697991?report=genbank&log$=nuclalign">3J2L_1</a></td> | |
2192 </tr> | |
2193 <tr> | |
2194 <td><div><a href="#hit26" | |
2195 title="Chain a, Model Of The Large Subunit Rna Based On A 5.5 A Cryo-em Map Of Triticum Aestivum Translating 80s Ribosome" | |
2196 id="description26"> | |
2197 Chain a, Model Of The Large Subunit Rna Based On A 5.5 A Cryo-em Map Of Triticum Aestivum Translating 80s Ribosome | |
2198 </a></div></td> | |
2199 <td>18.3</td> | |
2200 <td>77.8</td> | |
2201 <td>88%</td> | |
2202 <td>11.9</td> | |
2203 <td>100%</td> | |
2204 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/582044940?report=genbank&log$=nuclalign">3J62_AA</a></td> | |
2205 </tr> | |
2206 <tr> | |
2207 <td><div><a href="#hit27" | |
2208 title="Chain A, 39s Large Subunit Of The Porcine Mitochondrial Ribosome" | |
2209 id="description27"> | |
2210 Chain A, 39s Large Subunit Of The Porcine Mitochondrial Ribosome | |
2211 </a></div></td> | |
2212 <td>18.3</td> | |
2213 <td>18.3</td> | |
2214 <td>56%</td> | |
2215 <td>11.9</td> | |
2216 <td>100%</td> | |
2217 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/567755268?report=genbank&log$=nuclalign">4CE4_A</a></td> | |
2218 </tr> | |
2219 <tr> | |
2220 <td><div><a href="#hit28" | |
2221 title="Chain 5, Cryo-em Reconstruction Of The 80s-eif5b-met-itrnamet Eukaryotic Translation Initiation Complex" | |
2222 id="description28"> | |
2223 Chain 5, Cryo-em Reconstruction Of The 80s-eif5b-met-itrnamet Eukaryotic Translation Initiation Complex | |
2224 </a></div></td> | |
2225 <td>18.3</td> | |
2226 <td>79.8</td> | |
2227 <td>81%</td> | |
2228 <td>11.9</td> | |
2229 <td>100%</td> | |
2230 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/558704783?report=genbank&log$=nuclalign">4BYP_5</a></td> | |
2231 </tr> | |
2232 <tr> | |
2233 <td><div><a href="#hit29" | |
2234 title="Chain 5, Cryo-em Reconstruction Of The 80s-eif5b-met-itrnamet Eukaryotic Translation Initiation Complex" | |
2235 id="description29"> | |
2236 Chain 5, Cryo-em Reconstruction Of The 80s-eif5b-met-itrnamet Eukaryotic Translation Initiation Complex | |
2237 </a></div></td> | |
2238 <td>18.3</td> | |
2239 <td>79.8</td> | |
2240 <td>81%</td> | |
2241 <td>11.9</td> | |
2242 <td>100%</td> | |
2243 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/558704825?report=genbank&log$=nuclalign">4BYW_5</a></td> | |
2244 </tr> | |
2245 <tr> | |
2246 <td><div><a href="#hit31" | |
2247 title="Chain 0, The Re-refined Crystal Structure Of The Haloarcula Marismortui Large Ribosomal Subunit At 2.4 Angstrom Resolution: More Complete Structure Of The L7/l12 And L1 Stalk, L5 And Lx Proteins" | |
2248 id="description31"> | |
2249 Chain 0, The Re-refined Crystal Structure Of The Haloarcula Marismortui Large Ribosomal Subunit At 2.4 Angstrom Resolution: More Complete Structure Of The L7/l12 And L1 Stalk, L5 And Lx Proteins | |
2250 </a></div></td> | |
2251 <td>18.3</td> | |
2252 <td>51.0</td> | |
2253 <td>75%</td> | |
2254 <td>11.9</td> | |
2255 <td>100%</td> | |
2256 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/508123724?report=genbank&log$=nuclalign">4HUB_0</a></td> | |
2257 </tr> | |
2258 <tr> | |
2259 <td><div><a href="#hit32" | |
2260 title="Chain 5, Structure Of The H. Sapiens 60s Rrna" | |
2261 id="description32"> | |
2262 Chain 5, Structure Of The H. Sapiens 60s Rrna | |
2263 </a></div></td> | |
2264 <td>18.3</td> | |
2265 <td>128.8</td> | |
2266 <td>100%</td> | |
2267 <td>11.9</td> | |
2268 <td>100%</td> | |
2269 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/485601478?report=genbank&log$=nuclalign">3J3F_5</a></td> | |
2270 </tr> | |
2271 <tr> | |
2272 <td><div><a href="#hit33" | |
2273 title="Chain 5, Structure Of The D. Melanogaster 60s Rrna" | |
2274 id="description33"> | |
2275 Chain 5, Structure Of The D. Melanogaster 60s Rrna | |
2276 </a></div></td> | |
2277 <td>18.3</td> | |
2278 <td>63.4</td> | |
2279 <td>100%</td> | |
2280 <td>11.9</td> | |
2281 <td>100%</td> | |
2282 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/485601474?report=genbank&log$=nuclalign">3J3E_5</a></td> | |
2283 </tr> | |
2284 <tr> | |
2285 <td><div><a href="#hit34" | |
2286 title="Chain B, High_resolution Cryo-electron Microscopy Structure Of The Trypanosoma Brucei Ribosome" | |
2287 id="description34"> | |
2288 Chain B, High_resolution Cryo-electron Microscopy Structure Of The Trypanosoma Brucei Ribosome | |
2289 </a></div></td> | |
2290 <td>18.3</td> | |
2291 <td>32.7</td> | |
2292 <td>81%</td> | |
2293 <td>11.9</td> | |
2294 <td>100%</td> | |
2295 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/449802187?report=genbank&log$=nuclalign">3ZEX_B</a></td> | |
2296 </tr> | |
2297 <tr> | |
2298 <td><div><a href="#hit36" | |
2299 title="Chain 0, Crystal Structure Of Enhanced Macrolide Bound To 50s Ribosomal Subunit" | |
2300 id="description36"> | |
2301 Chain 0, Crystal Structure Of Enhanced Macrolide Bound To 50s Ribosomal Subunit | |
2302 </a></div></td> | |
2303 <td>18.3</td> | |
2304 <td>32.7</td> | |
2305 <td>56%</td> | |
2306 <td>11.9</td> | |
2307 <td>100%</td> | |
2308 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/392311504?report=genbank&log$=nuclalign">3OW2_0</a></td> | |
2309 </tr> | |
2310 <tr> | |
2311 <td><div><a href="#hit37" | |
2312 title="Chain 0, The Cryo-em Structure Of The Archaeal 50s Ribosomal Subunit In Complex With Initiation Factor 6" | |
2313 id="description37"> | |
2314 Chain 0, The Cryo-em Structure Of The Archaeal 50s Ribosomal Subunit In Complex With Initiation Factor 6 | |
2315 </a></div></td> | |
2316 <td>18.3</td> | |
2317 <td>51.0</td> | |
2318 <td>75%</td> | |
2319 <td>11.9</td> | |
2320 <td>100%</td> | |
2321 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/374977932?report=genbank&log$=nuclalign">4ADX_0</a></td> | |
2322 </tr> | |
2323 <tr> | |
2324 <td><div><a href="#hit38" | |
2325 title="Chain 6, The Structure Of The Eukaryotic Ribosome At 3.0 A Resolution. This Entry Contains Ribosomal Rna And Ions Of The 40s Subunit, Ribosome B" | |
2326 id="description38"> | |
2327 Chain 6, The Structure Of The Eukaryotic Ribosome At 3.0 A Resolution. This Entry Contains Ribosomal Rna And Ions Of The 40s Subunit, Ribosome B | |
2328 </a></div></td> | |
2329 <td>18.3</td> | |
2330 <td>47.1</td> | |
2331 <td>88%</td> | |
2332 <td>11.9</td> | |
2333 <td>100%</td> | |
2334 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/364506133?report=genbank&log$=nuclalign">3U5F_6</a></td> | |
2335 </tr> | |
2336 <tr> | |
2337 <td><div><a href="#hit39" | |
2338 title="Chain 2, The Structure Of The Eukaryotic Ribosome At 3.0 A Resolution. This Entry Contains Ribosomal Rna And Ions Of The 40s Subunit, Ribosome A " | |
2339 id="description39"> | |
2340 Chain 2, The Structure Of The Eukaryotic Ribosome At 3.0 A Resolution. This Entry Contains Ribosomal Rna And Ions Of The 40s Subunit, Ribosome A | |
2341 </a></div></td> | |
2342 <td>18.3</td> | |
2343 <td>47.1</td> | |
2344 <td>88%</td> | |
2345 <td>11.9</td> | |
2346 <td>100%</td> | |
2347 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/364506095?report=genbank&log$=nuclalign">3U5B_2</a></td> | |
2348 </tr> | |
2349 <tr> | |
2350 <td><div><a href="#hit40" | |
2351 title="Chain 1, T.Thermophila 60s Ribosomal Subunit In Complex With Initiation Factor 6. This File Contains 26s Rrna And Proteins Of Molecule 4." | |
2352 id="description40"> | |
2353 Chain 1, T.Thermophila 60s Ribosomal Subunit In Complex With Initiation Factor 6. This File Contains 26s Rrna And Proteins Of Molecule 4. | |
2354 </a></div></td> | |
2355 <td>18.3</td> | |
2356 <td>51.0</td> | |
2357 <td>75%</td> | |
2358 <td>11.9</td> | |
2359 <td>100%</td> | |
2360 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/358440203?report=genbank&log$=nuclalign">4A1D_1</a></td> | |
2361 </tr> | |
2362 <tr> | |
2363 <td><div><a href="#hit41" | |
2364 title="Chain 1, T.Thermophila 60s Ribosomal Subunit In Complex With Initiation Factor 6. This File Contains 26s Rrna And Proteins Of Molecule 1" | |
2365 id="description41"> | |
2366 Chain 1, T.Thermophila 60s Ribosomal Subunit In Complex With Initiation Factor 6. This File Contains 26s Rrna And Proteins Of Molecule 1 | |
2367 </a></div></td> | |
2368 <td>18.3</td> | |
2369 <td>51.0</td> | |
2370 <td>75%</td> | |
2371 <td>11.9</td> | |
2372 <td>100%</td> | |
2373 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/358440111?report=genbank&log$=nuclalign">4A18_1</a></td> | |
2374 </tr> | |
2375 <tr> | |
2376 <td><div><a href="#hit42" | |
2377 title="Chain 1, T.Thermophila 60s Ribosomal Subunit In Complex With Initiation Factor 6. This File Contains 26s Rrna And Proteins Of Molecule 3. " | |
2378 id="description42"> | |
2379 Chain 1, T.Thermophila 60s Ribosomal Subunit In Complex With Initiation Factor 6. This File Contains 26s Rrna And Proteins Of Molecule 3. | |
2380 </a></div></td> | |
2381 <td>18.3</td> | |
2382 <td>51.0</td> | |
2383 <td>75%</td> | |
2384 <td>11.9</td> | |
2385 <td>100%</td> | |
2386 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/358440157?report=genbank&log$=nuclalign">4A1B_1</a></td> | |
2387 </tr> | |
2388 <tr> | |
2389 <td><div><a href="#hit43" | |
2390 title="Chain 8, Core Of Mammalian 80s Pre-Ribosome In Complex With Trnas Fitted To A 9.8a Cryo-Em Map: Classic Pre State 1" | |
2391 id="description43"> | |
2392 Chain 8, Core Of Mammalian 80s Pre-Ribosome In Complex With Trnas Fitted To A 9.8a Cryo-Em Map: Classic Pre State 1 | |
2393 </a></div></td> | |
2394 <td>18.3</td> | |
2395 <td>18.3</td> | |
2396 <td>56%</td> | |
2397 <td>11.9</td> | |
2398 <td>100%</td> | |
2399 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/357380452?report=genbank&log$=nuclalign">3J0L_8</a></td> | |
2400 </tr> | |
2401 <tr> | |
2402 <td><div><a href="#hit44" | |
2403 title="Chain 8, Core Of Mammalian 80s Pre-Ribosome In Complex With Trnas Fitted To A 9a Cryo-Em Map: Classic Pre State 2" | |
2404 id="description44"> | |
2405 Chain 8, Core Of Mammalian 80s Pre-Ribosome In Complex With Trnas Fitted To A 9a Cryo-Em Map: Classic Pre State 2 | |
2406 </a></div></td> | |
2407 <td>18.3</td> | |
2408 <td>18.3</td> | |
2409 <td>56%</td> | |
2410 <td>11.9</td> | |
2411 <td>100%</td> | |
2412 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/357380483?report=genbank&log$=nuclalign">3J0O_8</a></td> | |
2413 </tr> | |
2414 <tr> | |
2415 <td><div><a href="#hit45" | |
2416 title="Chain 1, Yeast 80s Ribosome. This Entry Consists Of The 60s Subunit Of The First 80s In The Asymmetric Unit. " | |
2417 id="description45"> | |
2418 Chain 1, Yeast 80s Ribosome. This Entry Consists Of The 60s Subunit Of The First 80s In The Asymmetric Unit. | |
2419 </a></div></td> | |
2420 <td>18.3</td> | |
2421 <td>79.8</td> | |
2422 <td>81%</td> | |
2423 <td>11.9</td> | |
2424 <td>100%</td> | |
2425 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/315113523?report=genbank&log$=nuclalign">3O58_1</a></td> | |
2426 </tr> | |
2427 <tr> | |
2428 <td><div><a href="#hit46" | |
2429 title="Chain 1, Yeast 80s Ribosome. This Entry Consists Of The 60s Subunit Of The Second 80s In The Asymmetric Unit. " | |
2430 id="description46"> | |
2431 Chain 1, Yeast 80s Ribosome. This Entry Consists Of The 60s Subunit Of The Second 80s In The Asymmetric Unit. | |
2432 </a></div></td> | |
2433 <td>18.3</td> | |
2434 <td>79.8</td> | |
2435 <td>81%</td> | |
2436 <td>11.9</td> | |
2437 <td>100%</td> | |
2438 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/315113568?report=genbank&log$=nuclalign">3O5H_1</a></td> | |
2439 </tr> | |
2440 <tr> | |
2441 <td><div><a href="#hit47" | |
2442 title="Chain 1, Yeast 80s Ribosome. This Entry Consists Of The 40s Subunit Of The First 80s In The Asymmetric Unit." | |
2443 id="description47"> | |
2444 Chain 1, Yeast 80s Ribosome. This Entry Consists Of The 40s Subunit Of The First 80s In The Asymmetric Unit. | |
2445 </a></div></td> | |
2446 <td>18.3</td> | |
2447 <td>47.1</td> | |
2448 <td>88%</td> | |
2449 <td>11.9</td> | |
2450 <td>100%</td> | |
2451 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/315113447?report=genbank&log$=nuclalign">3O2Z_1</a></td> | |
2452 </tr> | |
2453 <tr> | |
2454 <td><div><a href="#hit48" | |
2455 title="Chain 1, Yeast 80s Ribosome. This Entry Consists Of The 40s Subunit Of The Second 80s In The Asymmetric Unit." | |
2456 id="description48"> | |
2457 Chain 1, Yeast 80s Ribosome. This Entry Consists Of The 40s Subunit Of The Second 80s In The Asymmetric Unit. | |
2458 </a></div></td> | |
2459 <td>18.3</td> | |
2460 <td>47.1</td> | |
2461 <td>88%</td> | |
2462 <td>11.9</td> | |
2463 <td>100%</td> | |
2464 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/315113475?report=genbank&log$=nuclalign">3O30_1</a></td> | |
2465 </tr> | |
2466 <tr> | |
2467 <td><div><a href="#hit49" | |
2468 title="Chain A, Model Of The Large Subunit Rna Based On A 6.1 A Cryo-Em Map Of Saccharomyces Cerevisiae Translating 80s Ribosome (With Es27l-In Conformation)" | |
2469 id="description49"> | |
2470 Chain A, Model Of The Large Subunit Rna Based On A 6.1 A Cryo-Em Map Of Saccharomyces Cerevisiae Translating 80s Ribosome (With Es27l-In Conformation) | |
2471 </a></div></td> | |
2472 <td>18.3</td> | |
2473 <td>79.8</td> | |
2474 <td>81%</td> | |
2475 <td>11.9</td> | |
2476 <td>100%</td> | |
2477 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/313103747?report=genbank&log$=nuclalign">3IZF_A</a></td> | |
2478 </tr> | |
2479 <tr> | |
2480 <td><div><a href="#hit50" | |
2481 title="Chain A, Model Of The Small Subunit Rna Based On A 6.1 A Cryo-Em Map Of Saccharomyces Cerevisiae Translating 80s Ribosome" | |
2482 id="description50"> | |
2483 Chain A, Model Of The Small Subunit Rna Based On A 6.1 A Cryo-Em Map Of Saccharomyces Cerevisiae Translating 80s Ribosome | |
2484 </a></div></td> | |
2485 <td>18.3</td> | |
2486 <td>47.1</td> | |
2487 <td>88%</td> | |
2488 <td>11.9</td> | |
2489 <td>100%</td> | |
2490 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/313103744?report=genbank&log$=nuclalign">3IZE_A</a></td> | |
2491 </tr> | |
2492 <tr> | |
2493 <td><div><a href="#hit51" | |
2494 title="Chain I, I-Msoi Re-Designed For Altered Dna Cleavage Specificity (-7c)" | |
2495 id="description51"> | |
2496 Chain I, I-Msoi Re-Designed For Altered Dna Cleavage Specificity (-7c) | |
2497 </a></div></td> | |
2498 <td>18.3</td> | |
2499 <td>18.3</td> | |
2500 <td>56%</td> | |
2501 <td>11.9</td> | |
2502 <td>100%</td> | |
2503 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/296278448?report=genbank&log$=nuclalign">3KO2_I</a></td> | |
2504 </tr> | |
2505 <tr> | |
2506 <td><div><a href="#hit52" | |
2507 title="Chain H, I-Msoi Re-Designed For Altered Dna Cleavage Specificity (-7c)" | |
2508 id="description52"> | |
2509 Chain H, I-Msoi Re-Designed For Altered Dna Cleavage Specificity (-7c) | |
2510 </a></div></td> | |
2511 <td>18.3</td> | |
2512 <td>18.3</td> | |
2513 <td>56%</td> | |
2514 <td>11.9</td> | |
2515 <td>100%</td> | |
2516 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/296278447?report=genbank&log$=nuclalign">3KO2_H</a></td> | |
2517 </tr> | |
2518 <tr> | |
2519 <td><div><a href="#hit53" | |
2520 title="Chain D, I-Msoi Re-Designed For Altered Dna Cleavage Specificity (-7c)" | |
2521 id="description53"> | |
2522 Chain D, I-Msoi Re-Designed For Altered Dna Cleavage Specificity (-7c) | |
2523 </a></div></td> | |
2524 <td>18.3</td> | |
2525 <td>18.3</td> | |
2526 <td>56%</td> | |
2527 <td>11.9</td> | |
2528 <td>100%</td> | |
2529 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/296278444?report=genbank&log$=nuclalign">3KO2_D</a></td> | |
2530 </tr> | |
2531 <tr> | |
2532 <td><div><a href="#hit54" | |
2533 title="Chain C, I-Msoi Re-Designed For Altered Dna Cleavage Specificity (-7c)" | |
2534 id="description54"> | |
2535 Chain C, I-Msoi Re-Designed For Altered Dna Cleavage Specificity (-7c) | |
2536 </a></div></td> | |
2537 <td>18.3</td> | |
2538 <td>18.3</td> | |
2539 <td>56%</td> | |
2540 <td>11.9</td> | |
2541 <td>100%</td> | |
2542 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/296278443?report=genbank&log$=nuclalign">3KO2_C</a></td> | |
2543 </tr> | |
2544 <tr> | |
2545 <td><div><a href="#hit55" | |
2546 title="Chain 0, Co-Crystal Structure Of Triacetyloleandomcyin Bound To The Large Ribosomal Subunit" | |
2547 id="description55"> | |
2548 Chain 0, Co-Crystal Structure Of Triacetyloleandomcyin Bound To The Large Ribosomal Subunit | |
2549 </a></div></td> | |
2550 <td>18.3</td> | |
2551 <td>51.0</td> | |
2552 <td>75%</td> | |
2553 <td>11.9</td> | |
2554 <td>100%</td> | |
2555 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/290790096?report=genbank&log$=nuclalign">3I56_0</a></td> | |
2556 </tr> | |
2557 <tr> | |
2558 <td><div><a href="#hit56" | |
2559 title="Chain 5, Structure Of The 60s Rrna For Eukaryotic Ribosome Based On Cryo-Em Map Of Thermomyces Lanuginosus Ribosome At 8.9a Resolution" | |
2560 id="description56"> | |
2561 Chain 5, Structure Of The 60s Rrna For Eukaryotic Ribosome Based On Cryo-Em Map Of Thermomyces Lanuginosus Ribosome At 8.9a Resolution | |
2562 </a></div></td> | |
2563 <td>18.3</td> | |
2564 <td>79.8</td> | |
2565 <td>81%</td> | |
2566 <td>11.9</td> | |
2567 <td>100%</td> | |
2568 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/281500859?report=genbank&log$=nuclalign">3JYX_5</a></td> | |
2569 </tr> | |
2570 <tr> | |
2571 <td><div><a href="#hit57" | |
2572 title="Chain A, Structure Of The 40s Rrna And Proteins And PE TRNA FOR EUKARYOTIC Ribosome Based On Cryo-Em Map Of Thermomyces Lanuginosus Ribosome At 8.9a Resolution" | |
2573 id="description57"> | |
2574 Chain A, Structure Of The 40s Rrna And Proteins And PE TRNA FOR EUKARYOTIC Ribosome Based On Cryo-Em Map Of Thermomyces Lanuginosus Ribosome At 8.9a Resolution | |
2575 </a></div></td> | |
2576 <td>18.3</td> | |
2577 <td>47.1</td> | |
2578 <td>88%</td> | |
2579 <td>11.9</td> | |
2580 <td>100%</td> | |
2581 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/281500807?report=genbank&log$=nuclalign">3JYV_A</a></td> | |
2582 </tr> | |
2583 <tr> | |
2584 <td><div><a href="#hit58" | |
2585 title="Chain 3, Structure Of The Ribosomal 80s-Eef2-Sordarin Complex From Yeast Obtained By Docking Atomic Models For Rna And Protein Components Into A 11.7 A Cryo-Em Map. This File, 1s1i, Contains 60s Subunit. The 40s Ribosomal Subunit Is In File 1s1h." | |
2586 id="description58"> | |
2587 Chain 3, Structure Of The Ribosomal 80s-Eef2-Sordarin Complex From Yeast Obtained By Docking Atomic Models For Rna And Protein Components Into A 11.7 A Cryo-Em Map. This File, 1s1i, Contains 60s Subunit. The 40s Ribosomal Subunit Is In File 1s1h. | |
2588 </a></div></td> | |
2589 <td>18.3</td> | |
2590 <td>32.7</td> | |
2591 <td>56%</td> | |
2592 <td>11.9</td> | |
2593 <td>100%</td> | |
2594 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/259090425?report=genbank&log$=nuclalign">1S1I_3</a></td> | |
2595 </tr> | |
2596 <tr> | |
2597 <td><div><a href="#hit59" | |
2598 title="Chain 0, Negamycin Binds To The Wall Of The Nascent Chain Exit Tunnel Of The 50s Ribosomal Subunit" | |
2599 id="description59"> | |
2600 Chain 0, Negamycin Binds To The Wall Of The Nascent Chain Exit Tunnel Of The 50s Ribosomal Subunit | |
2601 </a></div></td> | |
2602 <td>18.3</td> | |
2603 <td>32.7</td> | |
2604 <td>56%</td> | |
2605 <td>11.9</td> | |
2606 <td>100%</td> | |
2607 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/208435493?report=genbank&log$=nuclalign">2QEX_0</a></td> | |
2608 </tr> | |
2609 <tr> | |
2610 <td><div><a href="#hit60" | |
2611 title="Chain 0, The Structure Of The Antibiotic Linezolid Bound To The Large Ribosomal Subunit Of Haloarcula Marismortui" | |
2612 id="description60"> | |
2613 Chain 0, The Structure Of The Antibiotic Linezolid Bound To The Large Ribosomal Subunit Of Haloarcula Marismortui | |
2614 </a></div></td> | |
2615 <td>18.3</td> | |
2616 <td>32.7</td> | |
2617 <td>56%</td> | |
2618 <td>11.9</td> | |
2619 <td>100%</td> | |
2620 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/194368703?report=genbank&log$=nuclalign">3CPW_0</a></td> | |
2621 </tr> | |
2622 <tr> | |
2623 <td><div><a href="#hit61" | |
2624 title="Chain 0, Structure Of Anisomycin Resistant 50s Ribosomal Subunit: 23s Rrna Mutation G2616a " | |
2625 id="description61"> | |
2626 Chain 0, Structure Of Anisomycin Resistant 50s Ribosomal Subunit: 23s Rrna Mutation G2616a | |
2627 </a></div></td> | |
2628 <td>18.3</td> | |
2629 <td>51.0</td> | |
2630 <td>75%</td> | |
2631 <td>11.9</td> | |
2632 <td>100%</td> | |
2633 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/188596372?report=genbank&log$=nuclalign">3CCV_0</a></td> | |
2634 </tr> | |
2635 <tr> | |
2636 <td><div><a href="#hit62" | |
2637 title="Chain 0, Structure Of Anisomycin Resistant 50s Ribosomal Subunit: 23s Rrna Mutation G2482c" | |
2638 id="description62"> | |
2639 Chain 0, Structure Of Anisomycin Resistant 50s Ribosomal Subunit: 23s Rrna Mutation G2482c | |
2640 </a></div></td> | |
2641 <td>18.3</td> | |
2642 <td>51.0</td> | |
2643 <td>75%</td> | |
2644 <td>11.9</td> | |
2645 <td>100%</td> | |
2646 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/188596341?report=genbank&log$=nuclalign">3CCU_0</a></td> | |
2647 </tr> | |
2648 <tr> | |
2649 <td><div><a href="#hit63" | |
2650 title="Chain 0, Structure Of Anisomycin Resistant 50s Ribosomal Subunit: 23s Rrna Mutation G2482a" | |
2651 id="description63"> | |
2652 Chain 0, Structure Of Anisomycin Resistant 50s Ribosomal Subunit: 23s Rrna Mutation G2482a | |
2653 </a></div></td> | |
2654 <td>18.3</td> | |
2655 <td>51.0</td> | |
2656 <td>75%</td> | |
2657 <td>11.9</td> | |
2658 <td>100%</td> | |
2659 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/188596310?report=genbank&log$=nuclalign">3CCS_0</a></td> | |
2660 </tr> | |
2661 <tr> | |
2662 <td><div><a href="#hit64" | |
2663 title="Chain 0, Structure Of Anisomycin Resistant 50s Ribosomal Subunit: 23s Rrna Mutation A2488c. Density For Anisomycin Is Visible But Not Included In The Model." | |
2664 id="description64"> | |
2665 Chain 0, Structure Of Anisomycin Resistant 50s Ribosomal Subunit: 23s Rrna Mutation A2488c. Density For Anisomycin Is Visible But Not Included In The Model. | |
2666 </a></div></td> | |
2667 <td>18.3</td> | |
2668 <td>51.0</td> | |
2669 <td>75%</td> | |
2670 <td>11.9</td> | |
2671 <td>100%</td> | |
2672 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/188596279?report=genbank&log$=nuclalign">3CCR_0</a></td> | |
2673 </tr> | |
2674 <tr> | |
2675 <td><div><a href="#hit65" | |
2676 title="Chain 0, Structure Of Anisomycin Resistant 50s Ribosomal Subunit: 23s Rrna Mutation A2488u" | |
2677 id="description65"> | |
2678 Chain 0, Structure Of Anisomycin Resistant 50s Ribosomal Subunit: 23s Rrna Mutation A2488u | |
2679 </a></div></td> | |
2680 <td>18.3</td> | |
2681 <td>51.0</td> | |
2682 <td>75%</td> | |
2683 <td>11.9</td> | |
2684 <td>100%</td> | |
2685 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/188596248?report=genbank&log$=nuclalign">3CCQ_0</a></td> | |
2686 </tr> | |
2687 <tr> | |
2688 <td><div><a href="#hit66" | |
2689 title="Chain 0, Structure Of Anisomycin Resistant 50s Ribosomal Subunit: 23s Rrna Mutation G2611u" | |
2690 id="description66"> | |
2691 Chain 0, Structure Of Anisomycin Resistant 50s Ribosomal Subunit: 23s Rrna Mutation G2611u | |
2692 </a></div></td> | |
2693 <td>18.3</td> | |
2694 <td>36.7</td> | |
2695 <td>75%</td> | |
2696 <td>11.9</td> | |
2697 <td>100%</td> | |
2698 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/188596217?report=genbank&log$=nuclalign">3CCM_0</a></td> | |
2699 </tr> | |
2700 <tr> | |
2701 <td><div><a href="#hit67" | |
2702 title="Chain 0, Structure Of Anisomycin Resistant 50s Ribosomal Subunit: 23s Rrna Mutation U2535c. Density For Anisomycin Is Visible But Not Included In Model." | |
2703 id="description67"> | |
2704 Chain 0, Structure Of Anisomycin Resistant 50s Ribosomal Subunit: 23s Rrna Mutation U2535c. Density For Anisomycin Is Visible But Not Included In Model. | |
2705 </a></div></td> | |
2706 <td>18.3</td> | |
2707 <td>51.0</td> | |
2708 <td>75%</td> | |
2709 <td>11.9</td> | |
2710 <td>100%</td> | |
2711 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/188596186?report=genbank&log$=nuclalign">3CCL_0</a></td> | |
2712 </tr> | |
2713 <tr> | |
2714 <td><div><a href="#hit68" | |
2715 title="Chain 0, Structure Of Anisomycin Resistant 50s Ribosomal Subunit: 23s Rrna Mutation C2534u" | |
2716 id="description68"> | |
2717 Chain 0, Structure Of Anisomycin Resistant 50s Ribosomal Subunit: 23s Rrna Mutation C2534u | |
2718 </a></div></td> | |
2719 <td>18.3</td> | |
2720 <td>51.0</td> | |
2721 <td>75%</td> | |
2722 <td>11.9</td> | |
2723 <td>100%</td> | |
2724 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/188596155?report=genbank&log$=nuclalign">3CCJ_0</a></td> | |
2725 </tr> | |
2726 <tr> | |
2727 <td><div><a href="#hit69" | |
2728 title="Chain 0, Structure Of Anisomycin Resistant 50s Ribosomal Subunit: 23s Rrna Mutation U2535a" | |
2729 id="description69"> | |
2730 Chain 0, Structure Of Anisomycin Resistant 50s Ribosomal Subunit: 23s Rrna Mutation U2535a | |
2731 </a></div></td> | |
2732 <td>18.3</td> | |
2733 <td>51.0</td> | |
2734 <td>75%</td> | |
2735 <td>11.9</td> | |
2736 <td>100%</td> | |
2737 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/188596124?report=genbank&log$=nuclalign">3CCE_0</a></td> | |
2738 </tr> | |
2739 <tr> | |
2740 <td><div><a href="#hit70" | |
2741 title="Chain 0, Structure Of Anisomycin Resistant 50s Ribosomal Subunit: 23s Rrna Mutation C2487u" | |
2742 id="description70"> | |
2743 Chain 0, Structure Of Anisomycin Resistant 50s Ribosomal Subunit: 23s Rrna Mutation C2487u | |
2744 </a></div></td> | |
2745 <td>18.3</td> | |
2746 <td>51.0</td> | |
2747 <td>75%</td> | |
2748 <td>11.9</td> | |
2749 <td>100%</td> | |
2750 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/188596093?report=genbank&log$=nuclalign">3CC7_0</a></td> | |
2751 </tr> | |
2752 <tr> | |
2753 <td><div><a href="#hit71" | |
2754 title="Chain 0, The Refined Crystal Structure Of The Haloarcula Marismortui Large Ribosomal Subunit At 2.4 Angstrom Resolution With Rrna Sequence For The 23s Rrna And Genome-Derived Sequences For R-Proteins " | |
2755 id="description71"> | |
2756 Chain 0, The Refined Crystal Structure Of The Haloarcula Marismortui Large Ribosomal Subunit At 2.4 Angstrom Resolution With Rrna Sequence For The 23s Rrna And Genome-Derived Sequences For R-Proteins | |
2757 </a></div></td> | |
2758 <td>18.3</td> | |
2759 <td>51.0</td> | |
2760 <td>75%</td> | |
2761 <td>11.9</td> | |
2762 <td>100%</td> | |
2763 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/188596031?report=genbank&log$=nuclalign">3CC2_0</a></td> | |
2764 </tr> | |
2765 <tr> | |
2766 <td><div><a href="#hit72" | |
2767 title="Chain 0, Structure Of A Mammalian Ribosomal 60s Subunit Within An 80s Complex Obtained By Docking Homology Models Of The Rna And Proteins Into An 8.7 A Cryo-Em Map" | |
2768 id="description72"> | |
2769 Chain 0, Structure Of A Mammalian Ribosomal 60s Subunit Within An 80s Complex Obtained By Docking Homology Models Of The Rna And Proteins Into An 8.7 A Cryo-Em Map | |
2770 </a></div></td> | |
2771 <td>18.3</td> | |
2772 <td>63.4</td> | |
2773 <td>81%</td> | |
2774 <td>11.9</td> | |
2775 <td>100%</td> | |
2776 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/187609272?report=genbank&log$=nuclalign">2ZKR_0</a></td> | |
2777 </tr> | |
2778 <tr> | |
2779 <td><div><a href="#hit73" | |
2780 title="Chain 0, A More Complete Structure Of The The L7L12 STALK OF THE Haloarcula Marismortui 50s Large Ribosomal Subunit" | |
2781 id="description73"> | |
2782 Chain 0, A More Complete Structure Of The The L7L12 STALK OF THE Haloarcula Marismortui 50s Large Ribosomal Subunit | |
2783 </a></div></td> | |
2784 <td>18.3</td> | |
2785 <td>32.7</td> | |
2786 <td>56%</td> | |
2787 <td>11.9</td> | |
2788 <td>100%</td> | |
2789 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/171848835?report=genbank&log$=nuclalign">2QA4_0</a></td> | |
2790 </tr> | |
2791 <tr> | |
2792 <td><div><a href="#hit74" | |
2793 title="Chain R, Structural Model For The Large Subunit Of The Mammalian Mitochondrial Ribosome" | |
2794 id="description74"> | |
2795 Chain R, Structural Model For The Large Subunit Of The Mammalian Mitochondrial Ribosome | |
2796 </a></div></td> | |
2797 <td>18.3</td> | |
2798 <td>18.3</td> | |
2799 <td>56%</td> | |
2800 <td>11.9</td> | |
2801 <td>100%</td> | |
2802 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/99032306?report=genbank&log$=nuclalign">2FTC_R</a></td> | |
2803 </tr> | |
2804 <tr> | |
2805 <td><div><a href="#hit75" | |
2806 title="Chain 0, Refined Crystal Structure Of The Haloarcula Marismortui Large Ribosomal Subunit At 2.4 Angstrom Resolution " | |
2807 id="description75"> | |
2808 Chain 0, Refined Crystal Structure Of The Haloarcula Marismortui Large Ribosomal Subunit At 2.4 Angstrom Resolution | |
2809 </a></div></td> | |
2810 <td>18.3</td> | |
2811 <td>32.7</td> | |
2812 <td>56%</td> | |
2813 <td>11.9</td> | |
2814 <td>100%</td> | |
2815 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/50513468?report=genbank&log$=nuclalign">1S72_0</a></td> | |
2816 </tr> | |
2817 <tr> | |
2818 <td><div><a href="#hit76" | |
2819 title="Chain 0, Crystal Structure Of Virginiamycin M And S Bound To The 50s Ribosomal Subunit Of Haloarcula Marismortui " | |
2820 id="description76"> | |
2821 Chain 0, Crystal Structure Of Virginiamycin M And S Bound To The 50s Ribosomal Subunit Of Haloarcula Marismortui | |
2822 </a></div></td> | |
2823 <td>18.3</td> | |
2824 <td>51.0</td> | |
2825 <td>75%</td> | |
2826 <td>11.9</td> | |
2827 <td>100%</td> | |
2828 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/66360881?report=genbank&log$=nuclalign">1YIT_0</a></td> | |
2829 </tr> | |
2830 <tr> | |
2831 <td><div><a href="#hit77" | |
2832 title="Chain 0, Crystal Structure Of Azithromycin Bound To The G2099a Mutant 50s Ribosomal Subunit Of Haloarcula Marismortui " | |
2833 id="description77"> | |
2834 Chain 0, Crystal Structure Of Azithromycin Bound To The G2099a Mutant 50s Ribosomal Subunit Of Haloarcula Marismortui | |
2835 </a></div></td> | |
2836 <td>18.3</td> | |
2837 <td>51.0</td> | |
2838 <td>75%</td> | |
2839 <td>11.9</td> | |
2840 <td>100%</td> | |
2841 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/66360782?report=genbank&log$=nuclalign">1YHQ_0</a></td> | |
2842 </tr> | |
2843 <tr> | |
2844 <td><div><a href="#hit78" | |
2845 title="Chain 0, Crystal Structure Of Quinupristin Bound To The G2099a Mutant 50s Ribosomal Subunit Of Haloarcula Marismortui" | |
2846 id="description78"> | |
2847 Chain 0, Crystal Structure Of Quinupristin Bound To The G2099a Mutant 50s Ribosomal Subunit Of Haloarcula Marismortui | |
2848 </a></div></td> | |
2849 <td>18.3</td> | |
2850 <td>51.0</td> | |
2851 <td>75%</td> | |
2852 <td>11.9</td> | |
2853 <td>100%</td> | |
2854 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/66360980?report=genbank&log$=nuclalign">1YJW_0</a></td> | |
2855 </tr> | |
2856 <tr> | |
2857 <td><div><a href="#hit79" | |
2858 title="Chain A, Crystal Structure Of Cca-Phe-Cap-Biotin Bound Simultaneously At Half Occupancy To Both The A-Site And P- Site Of The The 50s Ribosomal Subunit." | |
2859 id="description79"> | |
2860 Chain A, Crystal Structure Of Cca-Phe-Cap-Biotin Bound Simultaneously At Half Occupancy To Both The A-Site And P- Site Of The The 50s Ribosomal Subunit. | |
2861 </a></div></td> | |
2862 <td>18.3</td> | |
2863 <td>32.7</td> | |
2864 <td>56%</td> | |
2865 <td>11.9</td> | |
2866 <td>100%</td> | |
2867 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/37928006?report=genbank&log$=nuclalign">1Q86_A</a></td> | |
2868 </tr> | |
2869 <tr> | |
2870 <td><div><a href="#hit80" | |
2871 title="Chain 0, Fully Refined Crystal Structure Of The Haloarcula Marismortui Large Ribosomal Subunit At 2.4 Angstrom Resolution " | |
2872 id="description80"> | |
2873 Chain 0, Fully Refined Crystal Structure Of The Haloarcula Marismortui Large Ribosomal Subunit At 2.4 Angstrom Resolution | |
2874 </a></div></td> | |
2875 <td>18.3</td> | |
2876 <td>32.7</td> | |
2877 <td>56%</td> | |
2878 <td>11.9</td> | |
2879 <td>100%</td> | |
2880 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/15825941?report=genbank&log$=nuclalign">1JJ2_0</a></td> | |
2881 </tr> | |
2882 <tr> | |
2883 <td><div><a href="#hit81" | |
2884 title="Chain A, Co-Crystal Structure Of Blasticidin S Bound To The 50s Ribosomal Subunit" | |
2885 id="description81"> | |
2886 Chain A, Co-Crystal Structure Of Blasticidin S Bound To The 50s Ribosomal Subunit | |
2887 </a></div></td> | |
2888 <td>18.3</td> | |
2889 <td>32.7</td> | |
2890 <td>56%</td> | |
2891 <td>11.9</td> | |
2892 <td>100%</td> | |
2893 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/34811146?report=genbank&log$=nuclalign">1KC8_A</a></td> | |
2894 </tr> | |
2895 <tr> | |
2896 <td><div><a href="#hit82" | |
2897 title="Chain 0, Crystal Structure Of The Large Ribosomal Subunit From Haloarcula Marismortui At 2.4 Angstrom Resolution" | |
2898 id="description82"> | |
2899 Chain 0, Crystal Structure Of The Large Ribosomal Subunit From Haloarcula Marismortui At 2.4 Angstrom Resolution | |
2900 </a></div></td> | |
2901 <td>18.3</td> | |
2902 <td>32.7</td> | |
2903 <td>56%</td> | |
2904 <td>11.9</td> | |
2905 <td>100%</td> | |
2906 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/10120918?report=genbank&log$=nuclalign">1FFK_0</a></td> | |
2907 </tr> | |
2908 <tr> | |
2909 <td><div><a href="#hit83" | |
2910 title="Chain A, Large Ribosomal Subunit Complexed With A 13 Bp Minihelix- Puromycin Compound" | |
2911 id="description83"> | |
2912 Chain A, Large Ribosomal Subunit Complexed With A 13 Bp Minihelix- Puromycin Compound | |
2913 </a></div></td> | |
2914 <td>18.3</td> | |
2915 <td>32.7</td> | |
2916 <td>56%</td> | |
2917 <td>11.9</td> | |
2918 <td>100%</td> | |
2919 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/10120728?report=genbank&log$=nuclalign">1FG0_A</a></td> | |
2920 </tr> | |
2921 <tr> | |
2922 <td><div><a href="#hit84" | |
2923 title="Chain A, Large Ribosomal Subunit Complexed With R(Cc)-Da-Puromycin" | |
2924 id="description84"> | |
2925 Chain A, Large Ribosomal Subunit Complexed With R(Cc)-Da-Puromycin | |
2926 </a></div></td> | |
2927 <td>18.3</td> | |
2928 <td>32.7</td> | |
2929 <td>56%</td> | |
2930 <td>11.9</td> | |
2931 <td>100%</td> | |
2932 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/10120727?report=genbank&log$=nuclalign">1FFZ_A</a></td> | |
2933 </tr> | |
2934 <tr> | |
2935 <td><div><a href="#hit85" | |
2936 title="Chain F, Crystal Structure Of The Catalytic Domain Of Rlub In Complex With A 21-nucleotide Rna Substrate" | |
2937 id="description85"> | |
2938 Chain F, Crystal Structure Of The Catalytic Domain Of Rlub In Complex With A 21-nucleotide Rna Substrate | |
2939 </a></div></td> | |
2940 <td>16.4</td> | |
2941 <td>16.4</td> | |
2942 <td>50%</td> | |
2943 <td>47.03</td> | |
2944 <td>100%</td> | |
2945 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/558705015?report=genbank&log$=nuclalign">4LGT_F</a></td> | |
2946 </tr> | |
2947 <tr> | |
2948 <td><div><a href="#hit86" | |
2949 title="Chain E, Crystal Structure Of The Catalytic Domain Of Rlub In Complex With A 21-nucleotide Rna Substrate" | |
2950 id="description86"> | |
2951 Chain E, Crystal Structure Of The Catalytic Domain Of Rlub In Complex With A 21-nucleotide Rna Substrate | |
2952 </a></div></td> | |
2953 <td>16.4</td> | |
2954 <td>16.4</td> | |
2955 <td>50%</td> | |
2956 <td>47.03</td> | |
2957 <td>100%</td> | |
2958 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/558705013?report=genbank&log$=nuclalign">4LGT_E</a></td> | |
2959 </tr> | |
2960 <tr> | |
2961 <td><div><a href="#hit87" | |
2962 title="Chain A, Thermus Thermophilus Ribosome" | |
2963 id="description87"> | |
2964 Chain A, Thermus Thermophilus Ribosome | |
2965 </a></div></td> | |
2966 <td>16.4</td> | |
2967 <td>32.7</td> | |
2968 <td>69%</td> | |
2969 <td>47.03</td> | |
2970 <td>100%</td> | |
2971 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/529280935?report=genbank&log$=nuclalign">4BTD_A</a></td> | |
2972 </tr> | |
2973 <tr> | |
2974 <td><div><a href="#hit88" | |
2975 title="Chain A, Crystal Structure Of Blasticidin S Bound To Thermus Thermophilus 70s Ribosome. This File Contains The 50s Subunit And Blasticidin S Molecule From The First 70s Ribosome. " | |
2976 id="description88"> | |
2977 Chain A, Crystal Structure Of Blasticidin S Bound To Thermus Thermophilus 70s Ribosome. This File Contains The 50s Subunit And Blasticidin S Molecule From The First 70s Ribosome. | |
2978 </a></div></td> | |
2979 <td>16.4</td> | |
2980 <td>32.7</td> | |
2981 <td>69%</td> | |
2982 <td>47.03</td> | |
2983 <td>100%</td> | |
2984 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/528082310?report=genbank&log$=nuclalign">4L6J_A</a></td> | |
2985 </tr> | |
2986 <tr> | |
2987 <td><div><a href="#hit89" | |
2988 title="Chain A, Crystal Structure Of The 70s Ribosome Bound With The Q253p Mutant Of Release Factor Rf2. 50s Of The A Subunit " | |
2989 id="description89"> | |
2990 Chain A, Crystal Structure Of The 70s Ribosome Bound With The Q253p Mutant Of Release Factor Rf2. 50s Of The A Subunit | |
2991 </a></div></td> | |
2992 <td>16.4</td> | |
2993 <td>32.7</td> | |
2994 <td>69%</td> | |
2995 <td>47.03</td> | |
2996 <td>100%</td> | |
2997 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/520729408?report=genbank&log$=nuclalign">4KFI_A</a></td> | |
2998 </tr> | |
2999 <tr> | |
3000 <td><div><a href="#hit90" | |
3001 title="Chain A, Crystal Structure Of Thermus Thermophilus 70s Containing Trnas And Mrna Stop Codon With Pseudouridine" | |
3002 id="description90"> | |
3003 Chain A, Crystal Structure Of Thermus Thermophilus 70s Containing Trnas And Mrna Stop Codon With Pseudouridine | |
3004 </a></div></td> | |
3005 <td>16.4</td> | |
3006 <td>32.7</td> | |
3007 <td>69%</td> | |
3008 <td>47.03</td> | |
3009 <td>100%</td> | |
3010 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/520728860?report=genbank&log$=nuclalign">4K0Q_A</a></td> | |
3011 </tr> | |
3012 <tr> | |
3013 <td><div><a href="#hit91" | |
3014 title="Chain A, Crystal Structure Of Thermus Thermophilus 70s Containing Trnas And Mrna Stop Codon With Pseudouridine" | |
3015 id="description91"> | |
3016 Chain A, Crystal Structure Of Thermus Thermophilus 70s Containing Trnas And Mrna Stop Codon With Pseudouridine | |
3017 </a></div></td> | |
3018 <td>16.4</td> | |
3019 <td>32.7</td> | |
3020 <td>69%</td> | |
3021 <td>47.03</td> | |
3022 <td>100%</td> | |
3023 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/520728802?report=genbank&log$=nuclalign">4K0M_A</a></td> | |
3024 </tr> | |
3025 <tr> | |
3026 <td><div><a href="#hit92" | |
3027 title="Chain A, Atomic Model Of The Immature 50s Subunit From Bacillus Subtilis (state I-a)" | |
3028 id="description92"> | |
3029 Chain A, Atomic Model Of The Immature 50s Subunit From Bacillus Subtilis (state I-a) | |
3030 </a></div></td> | |
3031 <td>16.4</td> | |
3032 <td>73.8</td> | |
3033 <td>88%</td> | |
3034 <td>47.03</td> | |
3035 <td>100%</td> | |
3036 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/512125286?report=genbank&log$=nuclalign">3J3V_A</a></td> | |
3037 </tr> | |
3038 <tr> | |
3039 <td><div><a href="#hit93" | |
3040 title="Chain A, Atomic Model Of The Immature 50s Subunit From Bacillus Subtilis (state Ii-a)" | |
3041 id="description93"> | |
3042 Chain A, Atomic Model Of The Immature 50s Subunit From Bacillus Subtilis (state Ii-a) | |
3043 </a></div></td> | |
3044 <td>16.4</td> | |
3045 <td>73.8</td> | |
3046 <td>88%</td> | |
3047 <td>47.03</td> | |
3048 <td>100%</td> | |
3049 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/512125306?report=genbank&log$=nuclalign">3J3W_A</a></td> | |
3050 </tr> | |
3051 <tr> | |
3052 <td><div><a href="#hit94" | |
3053 title="Chain A, Crystal Structure Of The Bacterial Ribosome Ram Mutation G347u. This Entry Contains The 50s Ribosomal Subunit Of The Second 70s Molecule In The Asymmetric Unit" | |
3054 id="description94"> | |
3055 Chain A, Crystal Structure Of The Bacterial Ribosome Ram Mutation G347u. This Entry Contains The 50s Ribosomal Subunit Of The Second 70s Molecule In The Asymmetric Unit | |
3056 </a></div></td> | |
3057 <td>16.4</td> | |
3058 <td>32.7</td> | |
3059 <td>69%</td> | |
3060 <td>47.03</td> | |
3061 <td>100%</td> | |
3062 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/482676744?report=genbank&log$=nuclalign">3V6X_A</a></td> | |
3063 </tr> | |
3064 <tr> | |
3065 <td><div><a href="#hit95" | |
3066 title="Chain A, Crystal Structure Of The Bacterial Ribosome Ram Mutation G347u. This Entry Contains The 50s Ribosomal Subunit Of The First 70s Molecule In The Asymmetric Unit" | |
3067 id="description95"> | |
3068 Chain A, Crystal Structure Of The Bacterial Ribosome Ram Mutation G347u. This Entry Contains The 50s Ribosomal Subunit Of The First 70s Molecule In The Asymmetric Unit | |
3069 </a></div></td> | |
3070 <td>16.4</td> | |
3071 <td>32.7</td> | |
3072 <td>69%</td> | |
3073 <td>47.03</td> | |
3074 <td>100%</td> | |
3075 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/482676712?report=genbank&log$=nuclalign">3V6W_A</a></td> | |
3076 </tr> | |
3077 <tr> | |
3078 <td><div><a href="#hit96" | |
3079 title="Chain d, The Cryo-Em Structure Of A 3d Dna-Origami Object" | |
3080 id="description96"> | |
3081 Chain d, The Cryo-Em Structure Of A 3d Dna-Origami Object | |
3082 </a></div></td> | |
3083 <td>16.4</td> | |
3084 <td>16.4</td> | |
3085 <td>50%</td> | |
3086 <td>47.03</td> | |
3087 <td>100%</td> | |
3088 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/428697829?report=genbank&log$=nuclalign">2YMI_DD</a></td> | |
3089 </tr> | |
3090 <tr> | |
3091 <td><div><a href="#hit97" | |
3092 title="Chain A, The Cryo-Em Structure Of A 3d Dna-Origami Object" | |
3093 id="description97"> | |
3094 Chain A, The Cryo-Em Structure Of A 3d Dna-Origami Object | |
3095 </a></div></td> | |
3096 <td>16.4</td> | |
3097 <td>30.7</td> | |
3098 <td>56%</td> | |
3099 <td>47.03</td> | |
3100 <td>100%</td> | |
3101 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/428697789?report=genbank&log$=nuclalign">2YMF_A</a></td> | |
3102 </tr> | |
3103 <tr> | |
3104 <td><div><a href="#hit98" | |
3105 title="Chain A, Structure Of The Thermus Thermophilus 70s Ribosome Complexed With Mrna, Trna And Paromomycin (Part 2 Of 4). This File Contains The 50s Subunit From Molecule I. " | |
3106 id="description98"> | |
3107 Chain A, Structure Of The Thermus Thermophilus 70s Ribosome Complexed With Mrna, Trna And Paromomycin (Part 2 Of 4). This File Contains The 50s Subunit From Molecule I. | |
3108 </a></div></td> | |
3109 <td>16.4</td> | |
3110 <td>32.7</td> | |
3111 <td>69%</td> | |
3112 <td>47.03</td> | |
3113 <td>100%</td> | |
3114 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/396639330?report=genbank&log$=nuclalign">2J01_A</a></td> | |
3115 </tr> | |
3116 <tr> | |
3117 <td><div><a href="#hit99" | |
3118 title="Chain C, Crystal Structure Of I-Crei Complexed With Its Target Methylated At Position Plus 2 (In The B Strand) In The Presence Of Magnesium" | |
3119 id="description99"> | |
3120 Chain C, Crystal Structure Of I-Crei Complexed With Its Target Methylated At Position Plus 2 (In The B Strand) In The Presence Of Magnesium | |
3121 </a></div></td> | |
3122 <td>16.4</td> | |
3123 <td>16.4</td> | |
3124 <td>50%</td> | |
3125 <td>47.03</td> | |
3126 <td>100%</td> | |
3127 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/393715375?report=genbank&log$=nuclalign">4AQX_C</a></td> | |
3128 </tr> | |
3129 <tr> | |
3130 <td><div><a href="#hit100" | |
3131 title="Chain C, Crystal Structure Of I-Crei Complexed With Its Target Methylated At Position Plus 2 (In The B Strand) In The Presence Of Calcium" | |
3132 id="description100"> | |
3133 Chain C, Crystal Structure Of I-Crei Complexed With Its Target Methylated At Position Plus 2 (In The B Strand) In The Presence Of Calcium | |
3134 </a></div></td> | |
3135 <td>16.4</td> | |
3136 <td>16.4</td> | |
3137 <td>50%</td> | |
3138 <td>47.03</td> | |
3139 <td>100%</td> | |
3140 <td><a href="http://www.ncbi.nlm.nih.gov/nucleotide/393715371?report=genbank&log$=nuclalign">4AQU_C</a></td> | |
3141 </tr> | |
3142 </table> | |
3143 | |
3144 </div></div> | |
3145 </section> | |
3146 | |
3147 | |
3148 | |
3149 <section class=alignments> | |
3150 <h2>Alignments</h2> | |
3151 | |
3152 <div class=grey><div class=white> | |
3153 <div class=alignment id=hit1> | |
3154 | |
3155 <div class=linkheader> | |
3156 <div class=right><a href="#description1">Descriptions</a></div> | |
3157 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/557804730?report=genbank&log$=nuclalign">GenBank</a> | |
3158 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/557804730?report=graph&log$=nuclalign">Graphics</a> | |
3159 </div> | |
3160 | |
3161 <div class=title> | |
3162 <p class=hittitle>Chain A, E. Coli 70s-fmetval-trnaval Post-translocation Complex (post4, 50s Subunit)</p> | |
3163 <p class=titleinfo> | |
3164 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/557804730?report=genbank&log$=nuclalign">pdb|3J5K|A</a> | |
3165 <span class=b>Length:</span> 2903 | |
3166 <span class=b>Number of Matches:</span> 4 | |
3167 </p> | |
3168 </div> | |
3169 | |
3170 | |
3171 <div class=hotspot> | |
3172 <p class=range> | |
3173 <span class=range>Range 1: 961 to 976</span> | |
3174 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804730?report=genbank&log$=nuclalign&from=961&to=976">GenBank</a> | |
3175 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804730?report=graph&log$=nuclalign&from=961&to=976">Graphics</a> | |
3176 </p> | |
3177 | |
3178 <table class=hotspotstable> | |
3179 <tr> | |
3180 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
3181 </tr> | |
3182 <tr> | |
3183 <td>32.2 bits(16)</td> | |
3184 <td>0.0</td> | |
3185 <td>16/16(100%)</td> | |
3186 <td>0/16(0%)</td> | |
3187 <td>Plus/Plus</td> | |
3188 </tr> | |
3189 </table> | |
3190 | |
3191 <pre class=alignmentgraphic>Query 1 CGTCCGTCGTGAAGAG 16 | |
3192 |||||||||||||||| | |
3193 Subject 961 CGTCCGTCGTGAAGAG 976</pre> | |
3194 </div> | |
3195 <div class=hotspot> | |
3196 <p class=range> | |
3197 <span class=range>Range 2: 2591 to 2598</span> | |
3198 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804730?report=genbank&log$=nuclalign&from=2591&to=2598">GenBank</a> | |
3199 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804730?report=graph&log$=nuclalign&from=2591&to=2598">Graphics</a> | |
3200 </p> | |
3201 | |
3202 <table class=hotspotstable> | |
3203 <tr> | |
3204 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
3205 </tr> | |
3206 <tr> | |
3207 <td>16.4 bits(8)</td> | |
3208 <td>47.0</td> | |
3209 <td>8/8(100%)</td> | |
3210 <td>0/8(0%)</td> | |
3211 <td>Plus/Plus</td> | |
3212 </tr> | |
3213 </table> | |
3214 | |
3215 <pre class=alignmentgraphic>Query 5 CGTCGTGA 12 | |
3216 |||||||| | |
3217 Subject 2591 CGTCGTGA 2598</pre> | |
3218 </div> | |
3219 <div class=hotspot> | |
3220 <p class=range> | |
3221 <span class=range>Range 3: 839 to 845</span> | |
3222 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804730?report=genbank&log$=nuclalign&from=839&to=845">GenBank</a> | |
3223 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804730?report=graph&log$=nuclalign&from=839&to=845">Graphics</a> | |
3224 </p> | |
3225 | |
3226 <table class=hotspotstable> | |
3227 <tr> | |
3228 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
3229 </tr> | |
3230 <tr> | |
3231 <td>14.4 bits(7)</td> | |
3232 <td>185.8</td> | |
3233 <td>7/7(100%)</td> | |
3234 <td>0/7(0%)</td> | |
3235 <td>Plus/Plus</td> | |
3236 </tr> | |
3237 </table> | |
3238 | |
3239 <pre class=alignmentgraphic>Query 7 TCGTGAA 13 | |
3240 ||||||| | |
3241 Subject 839 TCGTGAA 845</pre> | |
3242 </div> | |
3243 <div class=hotspot> | |
3244 <p class=range> | |
3245 <span class=range>Range 4: 2027 to 2033</span> | |
3246 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804730?report=genbank&log$=nuclalign&from=2027&to=2033">GenBank</a> | |
3247 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804730?report=graph&log$=nuclalign&from=2027&to=2033">Graphics</a> | |
3248 </p> | |
3249 | |
3250 <table class=hotspotstable> | |
3251 <tr> | |
3252 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
3253 </tr> | |
3254 <tr> | |
3255 <td>14.4 bits(7)</td> | |
3256 <td>185.8</td> | |
3257 <td>7/7(100%)</td> | |
3258 <td>0/7(0%)</td> | |
3259 <td>Plus/Plus</td> | |
3260 </tr> | |
3261 </table> | |
3262 | |
3263 <pre class=alignmentgraphic>Query 9 GTGAAGA 15 | |
3264 ||||||| | |
3265 Subject 2027 GTGAAGA 2033</pre> | |
3266 </div> | |
3267 | |
3268 </div> | |
3269 | |
3270 <div class=alignment id=hit2> | |
3271 | |
3272 <div class=linkheader> | |
3273 <div class=right><a href="#description2">Descriptions</a></div> | |
3274 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/557804675?report=genbank&log$=nuclalign">GenBank</a> | |
3275 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/557804675?report=graph&log$=nuclalign">Graphics</a> | |
3276 </div> | |
3277 | |
3278 <div class=title> | |
3279 <p class=hittitle>Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Intermediate Post- Translocation State (post3b, 50s Subunit)</p> | |
3280 <p class=titleinfo> | |
3281 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/557804675?report=genbank&log$=nuclalign">pdb|3J5I|A</a> | |
3282 <span class=b>Length:</span> 2903 | |
3283 <span class=b>Number of Matches:</span> 4 | |
3284 </p> | |
3285 </div> | |
3286 | |
3287 | |
3288 <div class=hotspot> | |
3289 <p class=range> | |
3290 <span class=range>Range 1: 961 to 976</span> | |
3291 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804675?report=genbank&log$=nuclalign&from=961&to=976">GenBank</a> | |
3292 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804675?report=graph&log$=nuclalign&from=961&to=976">Graphics</a> | |
3293 </p> | |
3294 | |
3295 <table class=hotspotstable> | |
3296 <tr> | |
3297 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
3298 </tr> | |
3299 <tr> | |
3300 <td>32.2 bits(16)</td> | |
3301 <td>0.0</td> | |
3302 <td>16/16(100%)</td> | |
3303 <td>0/16(0%)</td> | |
3304 <td>Plus/Plus</td> | |
3305 </tr> | |
3306 </table> | |
3307 | |
3308 <pre class=alignmentgraphic>Query 1 CGTCCGTCGTGAAGAG 16 | |
3309 |||||||||||||||| | |
3310 Subject 961 CGTCCGTCGTGAAGAG 976</pre> | |
3311 </div> | |
3312 <div class=hotspot> | |
3313 <p class=range> | |
3314 <span class=range>Range 2: 2591 to 2598</span> | |
3315 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804675?report=genbank&log$=nuclalign&from=2591&to=2598">GenBank</a> | |
3316 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804675?report=graph&log$=nuclalign&from=2591&to=2598">Graphics</a> | |
3317 </p> | |
3318 | |
3319 <table class=hotspotstable> | |
3320 <tr> | |
3321 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
3322 </tr> | |
3323 <tr> | |
3324 <td>16.4 bits(8)</td> | |
3325 <td>47.0</td> | |
3326 <td>8/8(100%)</td> | |
3327 <td>0/8(0%)</td> | |
3328 <td>Plus/Plus</td> | |
3329 </tr> | |
3330 </table> | |
3331 | |
3332 <pre class=alignmentgraphic>Query 5 CGTCGTGA 12 | |
3333 |||||||| | |
3334 Subject 2591 CGTCGTGA 2598</pre> | |
3335 </div> | |
3336 <div class=hotspot> | |
3337 <p class=range> | |
3338 <span class=range>Range 3: 839 to 845</span> | |
3339 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804675?report=genbank&log$=nuclalign&from=839&to=845">GenBank</a> | |
3340 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804675?report=graph&log$=nuclalign&from=839&to=845">Graphics</a> | |
3341 </p> | |
3342 | |
3343 <table class=hotspotstable> | |
3344 <tr> | |
3345 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
3346 </tr> | |
3347 <tr> | |
3348 <td>14.4 bits(7)</td> | |
3349 <td>185.8</td> | |
3350 <td>7/7(100%)</td> | |
3351 <td>0/7(0%)</td> | |
3352 <td>Plus/Plus</td> | |
3353 </tr> | |
3354 </table> | |
3355 | |
3356 <pre class=alignmentgraphic>Query 7 TCGTGAA 13 | |
3357 ||||||| | |
3358 Subject 839 TCGTGAA 845</pre> | |
3359 </div> | |
3360 <div class=hotspot> | |
3361 <p class=range> | |
3362 <span class=range>Range 4: 2027 to 2033</span> | |
3363 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804675?report=genbank&log$=nuclalign&from=2027&to=2033">GenBank</a> | |
3364 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804675?report=graph&log$=nuclalign&from=2027&to=2033">Graphics</a> | |
3365 </p> | |
3366 | |
3367 <table class=hotspotstable> | |
3368 <tr> | |
3369 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
3370 </tr> | |
3371 <tr> | |
3372 <td>14.4 bits(7)</td> | |
3373 <td>185.8</td> | |
3374 <td>7/7(100%)</td> | |
3375 <td>0/7(0%)</td> | |
3376 <td>Plus/Plus</td> | |
3377 </tr> | |
3378 </table> | |
3379 | |
3380 <pre class=alignmentgraphic>Query 9 GTGAAGA 15 | |
3381 ||||||| | |
3382 Subject 2027 GTGAAGA 2033</pre> | |
3383 </div> | |
3384 | |
3385 </div> | |
3386 | |
3387 <div class=alignment id=hit3> | |
3388 | |
3389 <div class=linkheader> | |
3390 <div class=right><a href="#description3">Descriptions</a></div> | |
3391 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/557804619?report=genbank&log$=nuclalign">GenBank</a> | |
3392 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/557804619?report=graph&log$=nuclalign">Graphics</a> | |
3393 </div> | |
3394 | |
3395 <div class=title> | |
3396 <p class=hittitle>Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Intermediate Post- Translocation State (post3a, 50s Subunit)</p> | |
3397 <p class=titleinfo> | |
3398 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/557804619?report=genbank&log$=nuclalign">pdb|3J5G|A</a> | |
3399 <span class=b>Length:</span> 2903 | |
3400 <span class=b>Number of Matches:</span> 4 | |
3401 </p> | |
3402 </div> | |
3403 | |
3404 | |
3405 <div class=hotspot> | |
3406 <p class=range> | |
3407 <span class=range>Range 1: 961 to 976</span> | |
3408 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804619?report=genbank&log$=nuclalign&from=961&to=976">GenBank</a> | |
3409 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804619?report=graph&log$=nuclalign&from=961&to=976">Graphics</a> | |
3410 </p> | |
3411 | |
3412 <table class=hotspotstable> | |
3413 <tr> | |
3414 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
3415 </tr> | |
3416 <tr> | |
3417 <td>32.2 bits(16)</td> | |
3418 <td>0.0</td> | |
3419 <td>16/16(100%)</td> | |
3420 <td>0/16(0%)</td> | |
3421 <td>Plus/Plus</td> | |
3422 </tr> | |
3423 </table> | |
3424 | |
3425 <pre class=alignmentgraphic>Query 1 CGTCCGTCGTGAAGAG 16 | |
3426 |||||||||||||||| | |
3427 Subject 961 CGTCCGTCGTGAAGAG 976</pre> | |
3428 </div> | |
3429 <div class=hotspot> | |
3430 <p class=range> | |
3431 <span class=range>Range 2: 2591 to 2598</span> | |
3432 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804619?report=genbank&log$=nuclalign&from=2591&to=2598">GenBank</a> | |
3433 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804619?report=graph&log$=nuclalign&from=2591&to=2598">Graphics</a> | |
3434 </p> | |
3435 | |
3436 <table class=hotspotstable> | |
3437 <tr> | |
3438 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
3439 </tr> | |
3440 <tr> | |
3441 <td>16.4 bits(8)</td> | |
3442 <td>47.0</td> | |
3443 <td>8/8(100%)</td> | |
3444 <td>0/8(0%)</td> | |
3445 <td>Plus/Plus</td> | |
3446 </tr> | |
3447 </table> | |
3448 | |
3449 <pre class=alignmentgraphic>Query 5 CGTCGTGA 12 | |
3450 |||||||| | |
3451 Subject 2591 CGTCGTGA 2598</pre> | |
3452 </div> | |
3453 <div class=hotspot> | |
3454 <p class=range> | |
3455 <span class=range>Range 3: 839 to 845</span> | |
3456 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804619?report=genbank&log$=nuclalign&from=839&to=845">GenBank</a> | |
3457 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804619?report=graph&log$=nuclalign&from=839&to=845">Graphics</a> | |
3458 </p> | |
3459 | |
3460 <table class=hotspotstable> | |
3461 <tr> | |
3462 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
3463 </tr> | |
3464 <tr> | |
3465 <td>14.4 bits(7)</td> | |
3466 <td>185.8</td> | |
3467 <td>7/7(100%)</td> | |
3468 <td>0/7(0%)</td> | |
3469 <td>Plus/Plus</td> | |
3470 </tr> | |
3471 </table> | |
3472 | |
3473 <pre class=alignmentgraphic>Query 7 TCGTGAA 13 | |
3474 ||||||| | |
3475 Subject 839 TCGTGAA 845</pre> | |
3476 </div> | |
3477 <div class=hotspot> | |
3478 <p class=range> | |
3479 <span class=range>Range 4: 2027 to 2033</span> | |
3480 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804619?report=genbank&log$=nuclalign&from=2027&to=2033">GenBank</a> | |
3481 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804619?report=graph&log$=nuclalign&from=2027&to=2033">Graphics</a> | |
3482 </p> | |
3483 | |
3484 <table class=hotspotstable> | |
3485 <tr> | |
3486 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
3487 </tr> | |
3488 <tr> | |
3489 <td>14.4 bits(7)</td> | |
3490 <td>185.8</td> | |
3491 <td>7/7(100%)</td> | |
3492 <td>0/7(0%)</td> | |
3493 <td>Plus/Plus</td> | |
3494 </tr> | |
3495 </table> | |
3496 | |
3497 <pre class=alignmentgraphic>Query 9 GTGAAGA 15 | |
3498 ||||||| | |
3499 Subject 2027 GTGAAGA 2033</pre> | |
3500 </div> | |
3501 | |
3502 </div> | |
3503 | |
3504 <div class=alignment id=hit4> | |
3505 | |
3506 <div class=linkheader> | |
3507 <div class=right><a href="#description4">Descriptions</a></div> | |
3508 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/557804563?report=genbank&log$=nuclalign">GenBank</a> | |
3509 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/557804563?report=graph&log$=nuclalign">Graphics</a> | |
3510 </div> | |
3511 | |
3512 <div class=title> | |
3513 <p class=hittitle>Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Intermediate Post- Translocation State (post2b, 50s Subunit)</p> | |
3514 <p class=titleinfo> | |
3515 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/557804563?report=genbank&log$=nuclalign">pdb|3J5E|A</a> | |
3516 <span class=b>Length:</span> 2903 | |
3517 <span class=b>Number of Matches:</span> 4 | |
3518 </p> | |
3519 </div> | |
3520 | |
3521 | |
3522 <div class=hotspot> | |
3523 <p class=range> | |
3524 <span class=range>Range 1: 961 to 976</span> | |
3525 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804563?report=genbank&log$=nuclalign&from=961&to=976">GenBank</a> | |
3526 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804563?report=graph&log$=nuclalign&from=961&to=976">Graphics</a> | |
3527 </p> | |
3528 | |
3529 <table class=hotspotstable> | |
3530 <tr> | |
3531 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
3532 </tr> | |
3533 <tr> | |
3534 <td>32.2 bits(16)</td> | |
3535 <td>0.0</td> | |
3536 <td>16/16(100%)</td> | |
3537 <td>0/16(0%)</td> | |
3538 <td>Plus/Plus</td> | |
3539 </tr> | |
3540 </table> | |
3541 | |
3542 <pre class=alignmentgraphic>Query 1 CGTCCGTCGTGAAGAG 16 | |
3543 |||||||||||||||| | |
3544 Subject 961 CGTCCGTCGTGAAGAG 976</pre> | |
3545 </div> | |
3546 <div class=hotspot> | |
3547 <p class=range> | |
3548 <span class=range>Range 2: 2591 to 2598</span> | |
3549 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804563?report=genbank&log$=nuclalign&from=2591&to=2598">GenBank</a> | |
3550 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804563?report=graph&log$=nuclalign&from=2591&to=2598">Graphics</a> | |
3551 </p> | |
3552 | |
3553 <table class=hotspotstable> | |
3554 <tr> | |
3555 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
3556 </tr> | |
3557 <tr> | |
3558 <td>16.4 bits(8)</td> | |
3559 <td>47.0</td> | |
3560 <td>8/8(100%)</td> | |
3561 <td>0/8(0%)</td> | |
3562 <td>Plus/Plus</td> | |
3563 </tr> | |
3564 </table> | |
3565 | |
3566 <pre class=alignmentgraphic>Query 5 CGTCGTGA 12 | |
3567 |||||||| | |
3568 Subject 2591 CGTCGTGA 2598</pre> | |
3569 </div> | |
3570 <div class=hotspot> | |
3571 <p class=range> | |
3572 <span class=range>Range 3: 839 to 845</span> | |
3573 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804563?report=genbank&log$=nuclalign&from=839&to=845">GenBank</a> | |
3574 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804563?report=graph&log$=nuclalign&from=839&to=845">Graphics</a> | |
3575 </p> | |
3576 | |
3577 <table class=hotspotstable> | |
3578 <tr> | |
3579 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
3580 </tr> | |
3581 <tr> | |
3582 <td>14.4 bits(7)</td> | |
3583 <td>185.8</td> | |
3584 <td>7/7(100%)</td> | |
3585 <td>0/7(0%)</td> | |
3586 <td>Plus/Plus</td> | |
3587 </tr> | |
3588 </table> | |
3589 | |
3590 <pre class=alignmentgraphic>Query 7 TCGTGAA 13 | |
3591 ||||||| | |
3592 Subject 839 TCGTGAA 845</pre> | |
3593 </div> | |
3594 <div class=hotspot> | |
3595 <p class=range> | |
3596 <span class=range>Range 4: 2027 to 2033</span> | |
3597 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804563?report=genbank&log$=nuclalign&from=2027&to=2033">GenBank</a> | |
3598 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804563?report=graph&log$=nuclalign&from=2027&to=2033">Graphics</a> | |
3599 </p> | |
3600 | |
3601 <table class=hotspotstable> | |
3602 <tr> | |
3603 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
3604 </tr> | |
3605 <tr> | |
3606 <td>14.4 bits(7)</td> | |
3607 <td>185.8</td> | |
3608 <td>7/7(100%)</td> | |
3609 <td>0/7(0%)</td> | |
3610 <td>Plus/Plus</td> | |
3611 </tr> | |
3612 </table> | |
3613 | |
3614 <pre class=alignmentgraphic>Query 9 GTGAAGA 15 | |
3615 ||||||| | |
3616 Subject 2027 GTGAAGA 2033</pre> | |
3617 </div> | |
3618 | |
3619 </div> | |
3620 | |
3621 <div class=alignment id=hit5> | |
3622 | |
3623 <div class=linkheader> | |
3624 <div class=right><a href="#description5">Descriptions</a></div> | |
3625 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/557804507?report=genbank&log$=nuclalign">GenBank</a> | |
3626 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/557804507?report=graph&log$=nuclalign">Graphics</a> | |
3627 </div> | |
3628 | |
3629 <div class=title> | |
3630 <p class=hittitle>Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Intermediate Post- Translocation State (post2a, 50s Subunit)</p> | |
3631 <p class=titleinfo> | |
3632 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/557804507?report=genbank&log$=nuclalign">pdb|3J5C|A</a> | |
3633 <span class=b>Length:</span> 2903 | |
3634 <span class=b>Number of Matches:</span> 4 | |
3635 </p> | |
3636 </div> | |
3637 | |
3638 | |
3639 <div class=hotspot> | |
3640 <p class=range> | |
3641 <span class=range>Range 1: 961 to 976</span> | |
3642 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804507?report=genbank&log$=nuclalign&from=961&to=976">GenBank</a> | |
3643 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804507?report=graph&log$=nuclalign&from=961&to=976">Graphics</a> | |
3644 </p> | |
3645 | |
3646 <table class=hotspotstable> | |
3647 <tr> | |
3648 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
3649 </tr> | |
3650 <tr> | |
3651 <td>32.2 bits(16)</td> | |
3652 <td>0.0</td> | |
3653 <td>16/16(100%)</td> | |
3654 <td>0/16(0%)</td> | |
3655 <td>Plus/Plus</td> | |
3656 </tr> | |
3657 </table> | |
3658 | |
3659 <pre class=alignmentgraphic>Query 1 CGTCCGTCGTGAAGAG 16 | |
3660 |||||||||||||||| | |
3661 Subject 961 CGTCCGTCGTGAAGAG 976</pre> | |
3662 </div> | |
3663 <div class=hotspot> | |
3664 <p class=range> | |
3665 <span class=range>Range 2: 2591 to 2598</span> | |
3666 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804507?report=genbank&log$=nuclalign&from=2591&to=2598">GenBank</a> | |
3667 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804507?report=graph&log$=nuclalign&from=2591&to=2598">Graphics</a> | |
3668 </p> | |
3669 | |
3670 <table class=hotspotstable> | |
3671 <tr> | |
3672 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
3673 </tr> | |
3674 <tr> | |
3675 <td>16.4 bits(8)</td> | |
3676 <td>47.0</td> | |
3677 <td>8/8(100%)</td> | |
3678 <td>0/8(0%)</td> | |
3679 <td>Plus/Plus</td> | |
3680 </tr> | |
3681 </table> | |
3682 | |
3683 <pre class=alignmentgraphic>Query 5 CGTCGTGA 12 | |
3684 |||||||| | |
3685 Subject 2591 CGTCGTGA 2598</pre> | |
3686 </div> | |
3687 <div class=hotspot> | |
3688 <p class=range> | |
3689 <span class=range>Range 3: 839 to 845</span> | |
3690 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804507?report=genbank&log$=nuclalign&from=839&to=845">GenBank</a> | |
3691 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804507?report=graph&log$=nuclalign&from=839&to=845">Graphics</a> | |
3692 </p> | |
3693 | |
3694 <table class=hotspotstable> | |
3695 <tr> | |
3696 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
3697 </tr> | |
3698 <tr> | |
3699 <td>14.4 bits(7)</td> | |
3700 <td>185.8</td> | |
3701 <td>7/7(100%)</td> | |
3702 <td>0/7(0%)</td> | |
3703 <td>Plus/Plus</td> | |
3704 </tr> | |
3705 </table> | |
3706 | |
3707 <pre class=alignmentgraphic>Query 7 TCGTGAA 13 | |
3708 ||||||| | |
3709 Subject 839 TCGTGAA 845</pre> | |
3710 </div> | |
3711 <div class=hotspot> | |
3712 <p class=range> | |
3713 <span class=range>Range 4: 2027 to 2033</span> | |
3714 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804507?report=genbank&log$=nuclalign&from=2027&to=2033">GenBank</a> | |
3715 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804507?report=graph&log$=nuclalign&from=2027&to=2033">Graphics</a> | |
3716 </p> | |
3717 | |
3718 <table class=hotspotstable> | |
3719 <tr> | |
3720 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
3721 </tr> | |
3722 <tr> | |
3723 <td>14.4 bits(7)</td> | |
3724 <td>185.8</td> | |
3725 <td>7/7(100%)</td> | |
3726 <td>0/7(0%)</td> | |
3727 <td>Plus/Plus</td> | |
3728 </tr> | |
3729 </table> | |
3730 | |
3731 <pre class=alignmentgraphic>Query 9 GTGAAGA 15 | |
3732 ||||||| | |
3733 Subject 2027 GTGAAGA 2033</pre> | |
3734 </div> | |
3735 | |
3736 </div> | |
3737 | |
3738 <div class=alignment id=hit6> | |
3739 | |
3740 <div class=linkheader> | |
3741 <div class=right><a href="#description6">Descriptions</a></div> | |
3742 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/557804451?report=genbank&log$=nuclalign">GenBank</a> | |
3743 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/557804451?report=graph&log$=nuclalign">Graphics</a> | |
3744 </div> | |
3745 | |
3746 <div class=title> | |
3747 <p class=hittitle>Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Classic Post- Translocation State (post1, 50s Subunit)</p> | |
3748 <p class=titleinfo> | |
3749 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/557804451?report=genbank&log$=nuclalign">pdb|3J5A|A</a> | |
3750 <span class=b>Length:</span> 2903 | |
3751 <span class=b>Number of Matches:</span> 4 | |
3752 </p> | |
3753 </div> | |
3754 | |
3755 | |
3756 <div class=hotspot> | |
3757 <p class=range> | |
3758 <span class=range>Range 1: 961 to 976</span> | |
3759 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804451?report=genbank&log$=nuclalign&from=961&to=976">GenBank</a> | |
3760 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804451?report=graph&log$=nuclalign&from=961&to=976">Graphics</a> | |
3761 </p> | |
3762 | |
3763 <table class=hotspotstable> | |
3764 <tr> | |
3765 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
3766 </tr> | |
3767 <tr> | |
3768 <td>32.2 bits(16)</td> | |
3769 <td>0.0</td> | |
3770 <td>16/16(100%)</td> | |
3771 <td>0/16(0%)</td> | |
3772 <td>Plus/Plus</td> | |
3773 </tr> | |
3774 </table> | |
3775 | |
3776 <pre class=alignmentgraphic>Query 1 CGTCCGTCGTGAAGAG 16 | |
3777 |||||||||||||||| | |
3778 Subject 961 CGTCCGTCGTGAAGAG 976</pre> | |
3779 </div> | |
3780 <div class=hotspot> | |
3781 <p class=range> | |
3782 <span class=range>Range 2: 2591 to 2598</span> | |
3783 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804451?report=genbank&log$=nuclalign&from=2591&to=2598">GenBank</a> | |
3784 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804451?report=graph&log$=nuclalign&from=2591&to=2598">Graphics</a> | |
3785 </p> | |
3786 | |
3787 <table class=hotspotstable> | |
3788 <tr> | |
3789 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
3790 </tr> | |
3791 <tr> | |
3792 <td>16.4 bits(8)</td> | |
3793 <td>47.0</td> | |
3794 <td>8/8(100%)</td> | |
3795 <td>0/8(0%)</td> | |
3796 <td>Plus/Plus</td> | |
3797 </tr> | |
3798 </table> | |
3799 | |
3800 <pre class=alignmentgraphic>Query 5 CGTCGTGA 12 | |
3801 |||||||| | |
3802 Subject 2591 CGTCGTGA 2598</pre> | |
3803 </div> | |
3804 <div class=hotspot> | |
3805 <p class=range> | |
3806 <span class=range>Range 3: 839 to 845</span> | |
3807 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804451?report=genbank&log$=nuclalign&from=839&to=845">GenBank</a> | |
3808 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804451?report=graph&log$=nuclalign&from=839&to=845">Graphics</a> | |
3809 </p> | |
3810 | |
3811 <table class=hotspotstable> | |
3812 <tr> | |
3813 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
3814 </tr> | |
3815 <tr> | |
3816 <td>14.4 bits(7)</td> | |
3817 <td>185.8</td> | |
3818 <td>7/7(100%)</td> | |
3819 <td>0/7(0%)</td> | |
3820 <td>Plus/Plus</td> | |
3821 </tr> | |
3822 </table> | |
3823 | |
3824 <pre class=alignmentgraphic>Query 7 TCGTGAA 13 | |
3825 ||||||| | |
3826 Subject 839 TCGTGAA 845</pre> | |
3827 </div> | |
3828 <div class=hotspot> | |
3829 <p class=range> | |
3830 <span class=range>Range 4: 2027 to 2033</span> | |
3831 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804451?report=genbank&log$=nuclalign&from=2027&to=2033">GenBank</a> | |
3832 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804451?report=graph&log$=nuclalign&from=2027&to=2033">Graphics</a> | |
3833 </p> | |
3834 | |
3835 <table class=hotspotstable> | |
3836 <tr> | |
3837 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
3838 </tr> | |
3839 <tr> | |
3840 <td>14.4 bits(7)</td> | |
3841 <td>185.8</td> | |
3842 <td>7/7(100%)</td> | |
3843 <td>0/7(0%)</td> | |
3844 <td>Plus/Plus</td> | |
3845 </tr> | |
3846 </table> | |
3847 | |
3848 <pre class=alignmentgraphic>Query 9 GTGAAGA 15 | |
3849 ||||||| | |
3850 Subject 2027 GTGAAGA 2033</pre> | |
3851 </div> | |
3852 | |
3853 </div> | |
3854 | |
3855 <div class=alignment id=hit7> | |
3856 | |
3857 <div class=linkheader> | |
3858 <div class=right><a href="#description7">Descriptions</a></div> | |
3859 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/557804395?report=genbank&log$=nuclalign">GenBank</a> | |
3860 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/557804395?report=graph&log$=nuclalign">Graphics</a> | |
3861 </div> | |
3862 | |
3863 <div class=title> | |
3864 <p class=hittitle>Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Hybrid Pre- Translocation State (pre5b, 50s Subunit)</p> | |
3865 <p class=titleinfo> | |
3866 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/557804395?report=genbank&log$=nuclalign">pdb|3J58|A</a> | |
3867 <span class=b>Length:</span> 2903 | |
3868 <span class=b>Number of Matches:</span> 4 | |
3869 </p> | |
3870 </div> | |
3871 | |
3872 | |
3873 <div class=hotspot> | |
3874 <p class=range> | |
3875 <span class=range>Range 1: 961 to 976</span> | |
3876 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804395?report=genbank&log$=nuclalign&from=961&to=976">GenBank</a> | |
3877 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804395?report=graph&log$=nuclalign&from=961&to=976">Graphics</a> | |
3878 </p> | |
3879 | |
3880 <table class=hotspotstable> | |
3881 <tr> | |
3882 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
3883 </tr> | |
3884 <tr> | |
3885 <td>32.2 bits(16)</td> | |
3886 <td>0.0</td> | |
3887 <td>16/16(100%)</td> | |
3888 <td>0/16(0%)</td> | |
3889 <td>Plus/Plus</td> | |
3890 </tr> | |
3891 </table> | |
3892 | |
3893 <pre class=alignmentgraphic>Query 1 CGTCCGTCGTGAAGAG 16 | |
3894 |||||||||||||||| | |
3895 Subject 961 CGTCCGTCGTGAAGAG 976</pre> | |
3896 </div> | |
3897 <div class=hotspot> | |
3898 <p class=range> | |
3899 <span class=range>Range 2: 2591 to 2598</span> | |
3900 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804395?report=genbank&log$=nuclalign&from=2591&to=2598">GenBank</a> | |
3901 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804395?report=graph&log$=nuclalign&from=2591&to=2598">Graphics</a> | |
3902 </p> | |
3903 | |
3904 <table class=hotspotstable> | |
3905 <tr> | |
3906 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
3907 </tr> | |
3908 <tr> | |
3909 <td>16.4 bits(8)</td> | |
3910 <td>47.0</td> | |
3911 <td>8/8(100%)</td> | |
3912 <td>0/8(0%)</td> | |
3913 <td>Plus/Plus</td> | |
3914 </tr> | |
3915 </table> | |
3916 | |
3917 <pre class=alignmentgraphic>Query 5 CGTCGTGA 12 | |
3918 |||||||| | |
3919 Subject 2591 CGTCGTGA 2598</pre> | |
3920 </div> | |
3921 <div class=hotspot> | |
3922 <p class=range> | |
3923 <span class=range>Range 3: 839 to 845</span> | |
3924 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804395?report=genbank&log$=nuclalign&from=839&to=845">GenBank</a> | |
3925 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804395?report=graph&log$=nuclalign&from=839&to=845">Graphics</a> | |
3926 </p> | |
3927 | |
3928 <table class=hotspotstable> | |
3929 <tr> | |
3930 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
3931 </tr> | |
3932 <tr> | |
3933 <td>14.4 bits(7)</td> | |
3934 <td>185.8</td> | |
3935 <td>7/7(100%)</td> | |
3936 <td>0/7(0%)</td> | |
3937 <td>Plus/Plus</td> | |
3938 </tr> | |
3939 </table> | |
3940 | |
3941 <pre class=alignmentgraphic>Query 7 TCGTGAA 13 | |
3942 ||||||| | |
3943 Subject 839 TCGTGAA 845</pre> | |
3944 </div> | |
3945 <div class=hotspot> | |
3946 <p class=range> | |
3947 <span class=range>Range 4: 2027 to 2033</span> | |
3948 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804395?report=genbank&log$=nuclalign&from=2027&to=2033">GenBank</a> | |
3949 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804395?report=graph&log$=nuclalign&from=2027&to=2033">Graphics</a> | |
3950 </p> | |
3951 | |
3952 <table class=hotspotstable> | |
3953 <tr> | |
3954 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
3955 </tr> | |
3956 <tr> | |
3957 <td>14.4 bits(7)</td> | |
3958 <td>185.8</td> | |
3959 <td>7/7(100%)</td> | |
3960 <td>0/7(0%)</td> | |
3961 <td>Plus/Plus</td> | |
3962 </tr> | |
3963 </table> | |
3964 | |
3965 <pre class=alignmentgraphic>Query 9 GTGAAGA 15 | |
3966 ||||||| | |
3967 Subject 2027 GTGAAGA 2033</pre> | |
3968 </div> | |
3969 | |
3970 </div> | |
3971 | |
3972 <div class=alignment id=hit8> | |
3973 | |
3974 <div class=linkheader> | |
3975 <div class=right><a href="#description8">Descriptions</a></div> | |
3976 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/557804339?report=genbank&log$=nuclalign">GenBank</a> | |
3977 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/557804339?report=graph&log$=nuclalign">Graphics</a> | |
3978 </div> | |
3979 | |
3980 <div class=title> | |
3981 <p class=hittitle>Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Hybrid Pre- Translocation State (pre5a, 50s Subunit)</p> | |
3982 <p class=titleinfo> | |
3983 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/557804339?report=genbank&log$=nuclalign">pdb|3J56|A</a> | |
3984 <span class=b>Length:</span> 2903 | |
3985 <span class=b>Number of Matches:</span> 4 | |
3986 </p> | |
3987 </div> | |
3988 | |
3989 | |
3990 <div class=hotspot> | |
3991 <p class=range> | |
3992 <span class=range>Range 1: 961 to 976</span> | |
3993 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804339?report=genbank&log$=nuclalign&from=961&to=976">GenBank</a> | |
3994 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804339?report=graph&log$=nuclalign&from=961&to=976">Graphics</a> | |
3995 </p> | |
3996 | |
3997 <table class=hotspotstable> | |
3998 <tr> | |
3999 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
4000 </tr> | |
4001 <tr> | |
4002 <td>32.2 bits(16)</td> | |
4003 <td>0.0</td> | |
4004 <td>16/16(100%)</td> | |
4005 <td>0/16(0%)</td> | |
4006 <td>Plus/Plus</td> | |
4007 </tr> | |
4008 </table> | |
4009 | |
4010 <pre class=alignmentgraphic>Query 1 CGTCCGTCGTGAAGAG 16 | |
4011 |||||||||||||||| | |
4012 Subject 961 CGTCCGTCGTGAAGAG 976</pre> | |
4013 </div> | |
4014 <div class=hotspot> | |
4015 <p class=range> | |
4016 <span class=range>Range 2: 2591 to 2598</span> | |
4017 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804339?report=genbank&log$=nuclalign&from=2591&to=2598">GenBank</a> | |
4018 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804339?report=graph&log$=nuclalign&from=2591&to=2598">Graphics</a> | |
4019 </p> | |
4020 | |
4021 <table class=hotspotstable> | |
4022 <tr> | |
4023 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
4024 </tr> | |
4025 <tr> | |
4026 <td>16.4 bits(8)</td> | |
4027 <td>47.0</td> | |
4028 <td>8/8(100%)</td> | |
4029 <td>0/8(0%)</td> | |
4030 <td>Plus/Plus</td> | |
4031 </tr> | |
4032 </table> | |
4033 | |
4034 <pre class=alignmentgraphic>Query 5 CGTCGTGA 12 | |
4035 |||||||| | |
4036 Subject 2591 CGTCGTGA 2598</pre> | |
4037 </div> | |
4038 <div class=hotspot> | |
4039 <p class=range> | |
4040 <span class=range>Range 3: 839 to 845</span> | |
4041 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804339?report=genbank&log$=nuclalign&from=839&to=845">GenBank</a> | |
4042 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804339?report=graph&log$=nuclalign&from=839&to=845">Graphics</a> | |
4043 </p> | |
4044 | |
4045 <table class=hotspotstable> | |
4046 <tr> | |
4047 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
4048 </tr> | |
4049 <tr> | |
4050 <td>14.4 bits(7)</td> | |
4051 <td>185.8</td> | |
4052 <td>7/7(100%)</td> | |
4053 <td>0/7(0%)</td> | |
4054 <td>Plus/Plus</td> | |
4055 </tr> | |
4056 </table> | |
4057 | |
4058 <pre class=alignmentgraphic>Query 7 TCGTGAA 13 | |
4059 ||||||| | |
4060 Subject 839 TCGTGAA 845</pre> | |
4061 </div> | |
4062 <div class=hotspot> | |
4063 <p class=range> | |
4064 <span class=range>Range 4: 2027 to 2033</span> | |
4065 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804339?report=genbank&log$=nuclalign&from=2027&to=2033">GenBank</a> | |
4066 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804339?report=graph&log$=nuclalign&from=2027&to=2033">Graphics</a> | |
4067 </p> | |
4068 | |
4069 <table class=hotspotstable> | |
4070 <tr> | |
4071 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
4072 </tr> | |
4073 <tr> | |
4074 <td>14.4 bits(7)</td> | |
4075 <td>185.8</td> | |
4076 <td>7/7(100%)</td> | |
4077 <td>0/7(0%)</td> | |
4078 <td>Plus/Plus</td> | |
4079 </tr> | |
4080 </table> | |
4081 | |
4082 <pre class=alignmentgraphic>Query 9 GTGAAGA 15 | |
4083 ||||||| | |
4084 Subject 2027 GTGAAGA 2033</pre> | |
4085 </div> | |
4086 | |
4087 </div> | |
4088 | |
4089 <div class=alignment id=hit9> | |
4090 | |
4091 <div class=linkheader> | |
4092 <div class=right><a href="#description9">Descriptions</a></div> | |
4093 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/557804283?report=genbank&log$=nuclalign">GenBank</a> | |
4094 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/557804283?report=graph&log$=nuclalign">Graphics</a> | |
4095 </div> | |
4096 | |
4097 <div class=title> | |
4098 <p class=hittitle>Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Hybrid Pre- Translocation State (pre4, 50s Subunit)</p> | |
4099 <p class=titleinfo> | |
4100 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/557804283?report=genbank&log$=nuclalign">pdb|3J54|A</a> | |
4101 <span class=b>Length:</span> 2903 | |
4102 <span class=b>Number of Matches:</span> 4 | |
4103 </p> | |
4104 </div> | |
4105 | |
4106 | |
4107 <div class=hotspot> | |
4108 <p class=range> | |
4109 <span class=range>Range 1: 961 to 976</span> | |
4110 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804283?report=genbank&log$=nuclalign&from=961&to=976">GenBank</a> | |
4111 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804283?report=graph&log$=nuclalign&from=961&to=976">Graphics</a> | |
4112 </p> | |
4113 | |
4114 <table class=hotspotstable> | |
4115 <tr> | |
4116 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
4117 </tr> | |
4118 <tr> | |
4119 <td>32.2 bits(16)</td> | |
4120 <td>0.0</td> | |
4121 <td>16/16(100%)</td> | |
4122 <td>0/16(0%)</td> | |
4123 <td>Plus/Plus</td> | |
4124 </tr> | |
4125 </table> | |
4126 | |
4127 <pre class=alignmentgraphic>Query 1 CGTCCGTCGTGAAGAG 16 | |
4128 |||||||||||||||| | |
4129 Subject 961 CGTCCGTCGTGAAGAG 976</pre> | |
4130 </div> | |
4131 <div class=hotspot> | |
4132 <p class=range> | |
4133 <span class=range>Range 2: 2591 to 2598</span> | |
4134 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804283?report=genbank&log$=nuclalign&from=2591&to=2598">GenBank</a> | |
4135 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804283?report=graph&log$=nuclalign&from=2591&to=2598">Graphics</a> | |
4136 </p> | |
4137 | |
4138 <table class=hotspotstable> | |
4139 <tr> | |
4140 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
4141 </tr> | |
4142 <tr> | |
4143 <td>16.4 bits(8)</td> | |
4144 <td>47.0</td> | |
4145 <td>8/8(100%)</td> | |
4146 <td>0/8(0%)</td> | |
4147 <td>Plus/Plus</td> | |
4148 </tr> | |
4149 </table> | |
4150 | |
4151 <pre class=alignmentgraphic>Query 5 CGTCGTGA 12 | |
4152 |||||||| | |
4153 Subject 2591 CGTCGTGA 2598</pre> | |
4154 </div> | |
4155 <div class=hotspot> | |
4156 <p class=range> | |
4157 <span class=range>Range 3: 839 to 845</span> | |
4158 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804283?report=genbank&log$=nuclalign&from=839&to=845">GenBank</a> | |
4159 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804283?report=graph&log$=nuclalign&from=839&to=845">Graphics</a> | |
4160 </p> | |
4161 | |
4162 <table class=hotspotstable> | |
4163 <tr> | |
4164 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
4165 </tr> | |
4166 <tr> | |
4167 <td>14.4 bits(7)</td> | |
4168 <td>185.8</td> | |
4169 <td>7/7(100%)</td> | |
4170 <td>0/7(0%)</td> | |
4171 <td>Plus/Plus</td> | |
4172 </tr> | |
4173 </table> | |
4174 | |
4175 <pre class=alignmentgraphic>Query 7 TCGTGAA 13 | |
4176 ||||||| | |
4177 Subject 839 TCGTGAA 845</pre> | |
4178 </div> | |
4179 <div class=hotspot> | |
4180 <p class=range> | |
4181 <span class=range>Range 4: 2027 to 2033</span> | |
4182 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804283?report=genbank&log$=nuclalign&from=2027&to=2033">GenBank</a> | |
4183 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804283?report=graph&log$=nuclalign&from=2027&to=2033">Graphics</a> | |
4184 </p> | |
4185 | |
4186 <table class=hotspotstable> | |
4187 <tr> | |
4188 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
4189 </tr> | |
4190 <tr> | |
4191 <td>14.4 bits(7)</td> | |
4192 <td>185.8</td> | |
4193 <td>7/7(100%)</td> | |
4194 <td>0/7(0%)</td> | |
4195 <td>Plus/Plus</td> | |
4196 </tr> | |
4197 </table> | |
4198 | |
4199 <pre class=alignmentgraphic>Query 9 GTGAAGA 15 | |
4200 ||||||| | |
4201 Subject 2027 GTGAAGA 2033</pre> | |
4202 </div> | |
4203 | |
4204 </div> | |
4205 | |
4206 <div class=alignment id=hit10> | |
4207 | |
4208 <div class=linkheader> | |
4209 <div class=right><a href="#description10">Descriptions</a></div> | |
4210 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/557804227?report=genbank&log$=nuclalign">GenBank</a> | |
4211 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/557804227?report=graph&log$=nuclalign">Graphics</a> | |
4212 </div> | |
4213 | |
4214 <div class=title> | |
4215 <p class=hittitle>Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Classic Pre- Translocation State (pre1a, 50s Subunit)</p> | |
4216 <p class=titleinfo> | |
4217 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/557804227?report=genbank&log$=nuclalign">pdb|3J52|A</a> | |
4218 <span class=b>Length:</span> 2903 | |
4219 <span class=b>Number of Matches:</span> 4 | |
4220 </p> | |
4221 </div> | |
4222 | |
4223 | |
4224 <div class=hotspot> | |
4225 <p class=range> | |
4226 <span class=range>Range 1: 961 to 976</span> | |
4227 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804227?report=genbank&log$=nuclalign&from=961&to=976">GenBank</a> | |
4228 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804227?report=graph&log$=nuclalign&from=961&to=976">Graphics</a> | |
4229 </p> | |
4230 | |
4231 <table class=hotspotstable> | |
4232 <tr> | |
4233 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
4234 </tr> | |
4235 <tr> | |
4236 <td>32.2 bits(16)</td> | |
4237 <td>0.0</td> | |
4238 <td>16/16(100%)</td> | |
4239 <td>0/16(0%)</td> | |
4240 <td>Plus/Plus</td> | |
4241 </tr> | |
4242 </table> | |
4243 | |
4244 <pre class=alignmentgraphic>Query 1 CGTCCGTCGTGAAGAG 16 | |
4245 |||||||||||||||| | |
4246 Subject 961 CGTCCGTCGTGAAGAG 976</pre> | |
4247 </div> | |
4248 <div class=hotspot> | |
4249 <p class=range> | |
4250 <span class=range>Range 2: 2591 to 2598</span> | |
4251 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804227?report=genbank&log$=nuclalign&from=2591&to=2598">GenBank</a> | |
4252 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804227?report=graph&log$=nuclalign&from=2591&to=2598">Graphics</a> | |
4253 </p> | |
4254 | |
4255 <table class=hotspotstable> | |
4256 <tr> | |
4257 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
4258 </tr> | |
4259 <tr> | |
4260 <td>16.4 bits(8)</td> | |
4261 <td>47.0</td> | |
4262 <td>8/8(100%)</td> | |
4263 <td>0/8(0%)</td> | |
4264 <td>Plus/Plus</td> | |
4265 </tr> | |
4266 </table> | |
4267 | |
4268 <pre class=alignmentgraphic>Query 5 CGTCGTGA 12 | |
4269 |||||||| | |
4270 Subject 2591 CGTCGTGA 2598</pre> | |
4271 </div> | |
4272 <div class=hotspot> | |
4273 <p class=range> | |
4274 <span class=range>Range 3: 839 to 845</span> | |
4275 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804227?report=genbank&log$=nuclalign&from=839&to=845">GenBank</a> | |
4276 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804227?report=graph&log$=nuclalign&from=839&to=845">Graphics</a> | |
4277 </p> | |
4278 | |
4279 <table class=hotspotstable> | |
4280 <tr> | |
4281 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
4282 </tr> | |
4283 <tr> | |
4284 <td>14.4 bits(7)</td> | |
4285 <td>185.8</td> | |
4286 <td>7/7(100%)</td> | |
4287 <td>0/7(0%)</td> | |
4288 <td>Plus/Plus</td> | |
4289 </tr> | |
4290 </table> | |
4291 | |
4292 <pre class=alignmentgraphic>Query 7 TCGTGAA 13 | |
4293 ||||||| | |
4294 Subject 839 TCGTGAA 845</pre> | |
4295 </div> | |
4296 <div class=hotspot> | |
4297 <p class=range> | |
4298 <span class=range>Range 4: 2027 to 2033</span> | |
4299 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804227?report=genbank&log$=nuclalign&from=2027&to=2033">GenBank</a> | |
4300 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804227?report=graph&log$=nuclalign&from=2027&to=2033">Graphics</a> | |
4301 </p> | |
4302 | |
4303 <table class=hotspotstable> | |
4304 <tr> | |
4305 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
4306 </tr> | |
4307 <tr> | |
4308 <td>14.4 bits(7)</td> | |
4309 <td>185.8</td> | |
4310 <td>7/7(100%)</td> | |
4311 <td>0/7(0%)</td> | |
4312 <td>Plus/Plus</td> | |
4313 </tr> | |
4314 </table> | |
4315 | |
4316 <pre class=alignmentgraphic>Query 9 GTGAAGA 15 | |
4317 ||||||| | |
4318 Subject 2027 GTGAAGA 2033</pre> | |
4319 </div> | |
4320 | |
4321 </div> | |
4322 | |
4323 <div class=alignment id=hit11> | |
4324 | |
4325 <div class=linkheader> | |
4326 <div class=right><a href="#description11">Descriptions</a></div> | |
4327 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/557804195?report=genbank&log$=nuclalign">GenBank</a> | |
4328 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/557804195?report=graph&log$=nuclalign">Graphics</a> | |
4329 </div> | |
4330 | |
4331 <div class=title> | |
4332 <p class=hittitle>Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Intermediate Pre- Translocation State (pre3, 50s Subunit)</p> | |
4333 <p class=titleinfo> | |
4334 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/557804195?report=genbank&log$=nuclalign">pdb|3J51|A</a> | |
4335 <span class=b>Length:</span> 2903 | |
4336 <span class=b>Number of Matches:</span> 4 | |
4337 </p> | |
4338 </div> | |
4339 | |
4340 | |
4341 <div class=hotspot> | |
4342 <p class=range> | |
4343 <span class=range>Range 1: 961 to 976</span> | |
4344 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804195?report=genbank&log$=nuclalign&from=961&to=976">GenBank</a> | |
4345 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804195?report=graph&log$=nuclalign&from=961&to=976">Graphics</a> | |
4346 </p> | |
4347 | |
4348 <table class=hotspotstable> | |
4349 <tr> | |
4350 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
4351 </tr> | |
4352 <tr> | |
4353 <td>32.2 bits(16)</td> | |
4354 <td>0.0</td> | |
4355 <td>16/16(100%)</td> | |
4356 <td>0/16(0%)</td> | |
4357 <td>Plus/Plus</td> | |
4358 </tr> | |
4359 </table> | |
4360 | |
4361 <pre class=alignmentgraphic>Query 1 CGTCCGTCGTGAAGAG 16 | |
4362 |||||||||||||||| | |
4363 Subject 961 CGTCCGTCGTGAAGAG 976</pre> | |
4364 </div> | |
4365 <div class=hotspot> | |
4366 <p class=range> | |
4367 <span class=range>Range 2: 2591 to 2598</span> | |
4368 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804195?report=genbank&log$=nuclalign&from=2591&to=2598">GenBank</a> | |
4369 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804195?report=graph&log$=nuclalign&from=2591&to=2598">Graphics</a> | |
4370 </p> | |
4371 | |
4372 <table class=hotspotstable> | |
4373 <tr> | |
4374 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
4375 </tr> | |
4376 <tr> | |
4377 <td>16.4 bits(8)</td> | |
4378 <td>47.0</td> | |
4379 <td>8/8(100%)</td> | |
4380 <td>0/8(0%)</td> | |
4381 <td>Plus/Plus</td> | |
4382 </tr> | |
4383 </table> | |
4384 | |
4385 <pre class=alignmentgraphic>Query 5 CGTCGTGA 12 | |
4386 |||||||| | |
4387 Subject 2591 CGTCGTGA 2598</pre> | |
4388 </div> | |
4389 <div class=hotspot> | |
4390 <p class=range> | |
4391 <span class=range>Range 3: 839 to 845</span> | |
4392 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804195?report=genbank&log$=nuclalign&from=839&to=845">GenBank</a> | |
4393 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804195?report=graph&log$=nuclalign&from=839&to=845">Graphics</a> | |
4394 </p> | |
4395 | |
4396 <table class=hotspotstable> | |
4397 <tr> | |
4398 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
4399 </tr> | |
4400 <tr> | |
4401 <td>14.4 bits(7)</td> | |
4402 <td>185.8</td> | |
4403 <td>7/7(100%)</td> | |
4404 <td>0/7(0%)</td> | |
4405 <td>Plus/Plus</td> | |
4406 </tr> | |
4407 </table> | |
4408 | |
4409 <pre class=alignmentgraphic>Query 7 TCGTGAA 13 | |
4410 ||||||| | |
4411 Subject 839 TCGTGAA 845</pre> | |
4412 </div> | |
4413 <div class=hotspot> | |
4414 <p class=range> | |
4415 <span class=range>Range 4: 2027 to 2033</span> | |
4416 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804195?report=genbank&log$=nuclalign&from=2027&to=2033">GenBank</a> | |
4417 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804195?report=graph&log$=nuclalign&from=2027&to=2033">Graphics</a> | |
4418 </p> | |
4419 | |
4420 <table class=hotspotstable> | |
4421 <tr> | |
4422 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
4423 </tr> | |
4424 <tr> | |
4425 <td>14.4 bits(7)</td> | |
4426 <td>185.8</td> | |
4427 <td>7/7(100%)</td> | |
4428 <td>0/7(0%)</td> | |
4429 <td>Plus/Plus</td> | |
4430 </tr> | |
4431 </table> | |
4432 | |
4433 <pre class=alignmentgraphic>Query 9 GTGAAGA 15 | |
4434 ||||||| | |
4435 Subject 2027 GTGAAGA 2033</pre> | |
4436 </div> | |
4437 | |
4438 </div> | |
4439 | |
4440 <div class=alignment id=hit12> | |
4441 | |
4442 <div class=linkheader> | |
4443 <div class=right><a href="#description12">Descriptions</a></div> | |
4444 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/557804163?report=genbank&log$=nuclalign">GenBank</a> | |
4445 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/557804163?report=graph&log$=nuclalign">Graphics</a> | |
4446 </div> | |
4447 | |
4448 <div class=title> | |
4449 <p class=hittitle>Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Intermediate Pre- Translocation State (pre2, 50s Subunit)</p> | |
4450 <p class=titleinfo> | |
4451 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/557804163?report=genbank&log$=nuclalign">pdb|3J50|A</a> | |
4452 <span class=b>Length:</span> 2903 | |
4453 <span class=b>Number of Matches:</span> 4 | |
4454 </p> | |
4455 </div> | |
4456 | |
4457 | |
4458 <div class=hotspot> | |
4459 <p class=range> | |
4460 <span class=range>Range 1: 961 to 976</span> | |
4461 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804163?report=genbank&log$=nuclalign&from=961&to=976">GenBank</a> | |
4462 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804163?report=graph&log$=nuclalign&from=961&to=976">Graphics</a> | |
4463 </p> | |
4464 | |
4465 <table class=hotspotstable> | |
4466 <tr> | |
4467 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
4468 </tr> | |
4469 <tr> | |
4470 <td>32.2 bits(16)</td> | |
4471 <td>0.0</td> | |
4472 <td>16/16(100%)</td> | |
4473 <td>0/16(0%)</td> | |
4474 <td>Plus/Plus</td> | |
4475 </tr> | |
4476 </table> | |
4477 | |
4478 <pre class=alignmentgraphic>Query 1 CGTCCGTCGTGAAGAG 16 | |
4479 |||||||||||||||| | |
4480 Subject 961 CGTCCGTCGTGAAGAG 976</pre> | |
4481 </div> | |
4482 <div class=hotspot> | |
4483 <p class=range> | |
4484 <span class=range>Range 2: 2591 to 2598</span> | |
4485 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804163?report=genbank&log$=nuclalign&from=2591&to=2598">GenBank</a> | |
4486 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804163?report=graph&log$=nuclalign&from=2591&to=2598">Graphics</a> | |
4487 </p> | |
4488 | |
4489 <table class=hotspotstable> | |
4490 <tr> | |
4491 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
4492 </tr> | |
4493 <tr> | |
4494 <td>16.4 bits(8)</td> | |
4495 <td>47.0</td> | |
4496 <td>8/8(100%)</td> | |
4497 <td>0/8(0%)</td> | |
4498 <td>Plus/Plus</td> | |
4499 </tr> | |
4500 </table> | |
4501 | |
4502 <pre class=alignmentgraphic>Query 5 CGTCGTGA 12 | |
4503 |||||||| | |
4504 Subject 2591 CGTCGTGA 2598</pre> | |
4505 </div> | |
4506 <div class=hotspot> | |
4507 <p class=range> | |
4508 <span class=range>Range 3: 839 to 845</span> | |
4509 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804163?report=genbank&log$=nuclalign&from=839&to=845">GenBank</a> | |
4510 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804163?report=graph&log$=nuclalign&from=839&to=845">Graphics</a> | |
4511 </p> | |
4512 | |
4513 <table class=hotspotstable> | |
4514 <tr> | |
4515 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
4516 </tr> | |
4517 <tr> | |
4518 <td>14.4 bits(7)</td> | |
4519 <td>185.8</td> | |
4520 <td>7/7(100%)</td> | |
4521 <td>0/7(0%)</td> | |
4522 <td>Plus/Plus</td> | |
4523 </tr> | |
4524 </table> | |
4525 | |
4526 <pre class=alignmentgraphic>Query 7 TCGTGAA 13 | |
4527 ||||||| | |
4528 Subject 839 TCGTGAA 845</pre> | |
4529 </div> | |
4530 <div class=hotspot> | |
4531 <p class=range> | |
4532 <span class=range>Range 4: 2027 to 2033</span> | |
4533 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804163?report=genbank&log$=nuclalign&from=2027&to=2033">GenBank</a> | |
4534 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804163?report=graph&log$=nuclalign&from=2027&to=2033">Graphics</a> | |
4535 </p> | |
4536 | |
4537 <table class=hotspotstable> | |
4538 <tr> | |
4539 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
4540 </tr> | |
4541 <tr> | |
4542 <td>14.4 bits(7)</td> | |
4543 <td>185.8</td> | |
4544 <td>7/7(100%)</td> | |
4545 <td>0/7(0%)</td> | |
4546 <td>Plus/Plus</td> | |
4547 </tr> | |
4548 </table> | |
4549 | |
4550 <pre class=alignmentgraphic>Query 9 GTGAAGA 15 | |
4551 ||||||| | |
4552 Subject 2027 GTGAAGA 2033</pre> | |
4553 </div> | |
4554 | |
4555 </div> | |
4556 | |
4557 <div class=alignment id=hit13> | |
4558 | |
4559 <div class=linkheader> | |
4560 <div class=right><a href="#description13">Descriptions</a></div> | |
4561 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/557804083?report=genbank&log$=nuclalign">GenBank</a> | |
4562 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/557804083?report=graph&log$=nuclalign">Graphics</a> | |
4563 </div> | |
4564 | |
4565 <div class=title> | |
4566 <p class=hittitle>Chain A, E. Coli 70s-fmetval-trnaval-trnafmet Complex In Classic Pre- Translocation State (pre1b, 50s Subunit)</p> | |
4567 <p class=titleinfo> | |
4568 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/557804083?report=genbank&log$=nuclalign">pdb|3J4X|A</a> | |
4569 <span class=b>Length:</span> 2903 | |
4570 <span class=b>Number of Matches:</span> 4 | |
4571 </p> | |
4572 </div> | |
4573 | |
4574 | |
4575 <div class=hotspot> | |
4576 <p class=range> | |
4577 <span class=range>Range 1: 961 to 976</span> | |
4578 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804083?report=genbank&log$=nuclalign&from=961&to=976">GenBank</a> | |
4579 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804083?report=graph&log$=nuclalign&from=961&to=976">Graphics</a> | |
4580 </p> | |
4581 | |
4582 <table class=hotspotstable> | |
4583 <tr> | |
4584 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
4585 </tr> | |
4586 <tr> | |
4587 <td>32.2 bits(16)</td> | |
4588 <td>0.0</td> | |
4589 <td>16/16(100%)</td> | |
4590 <td>0/16(0%)</td> | |
4591 <td>Plus/Plus</td> | |
4592 </tr> | |
4593 </table> | |
4594 | |
4595 <pre class=alignmentgraphic>Query 1 CGTCCGTCGTGAAGAG 16 | |
4596 |||||||||||||||| | |
4597 Subject 961 CGTCCGTCGTGAAGAG 976</pre> | |
4598 </div> | |
4599 <div class=hotspot> | |
4600 <p class=range> | |
4601 <span class=range>Range 2: 2591 to 2598</span> | |
4602 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804083?report=genbank&log$=nuclalign&from=2591&to=2598">GenBank</a> | |
4603 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804083?report=graph&log$=nuclalign&from=2591&to=2598">Graphics</a> | |
4604 </p> | |
4605 | |
4606 <table class=hotspotstable> | |
4607 <tr> | |
4608 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
4609 </tr> | |
4610 <tr> | |
4611 <td>16.4 bits(8)</td> | |
4612 <td>47.0</td> | |
4613 <td>8/8(100%)</td> | |
4614 <td>0/8(0%)</td> | |
4615 <td>Plus/Plus</td> | |
4616 </tr> | |
4617 </table> | |
4618 | |
4619 <pre class=alignmentgraphic>Query 5 CGTCGTGA 12 | |
4620 |||||||| | |
4621 Subject 2591 CGTCGTGA 2598</pre> | |
4622 </div> | |
4623 <div class=hotspot> | |
4624 <p class=range> | |
4625 <span class=range>Range 3: 839 to 845</span> | |
4626 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804083?report=genbank&log$=nuclalign&from=839&to=845">GenBank</a> | |
4627 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804083?report=graph&log$=nuclalign&from=839&to=845">Graphics</a> | |
4628 </p> | |
4629 | |
4630 <table class=hotspotstable> | |
4631 <tr> | |
4632 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
4633 </tr> | |
4634 <tr> | |
4635 <td>14.4 bits(7)</td> | |
4636 <td>185.8</td> | |
4637 <td>7/7(100%)</td> | |
4638 <td>0/7(0%)</td> | |
4639 <td>Plus/Plus</td> | |
4640 </tr> | |
4641 </table> | |
4642 | |
4643 <pre class=alignmentgraphic>Query 7 TCGTGAA 13 | |
4644 ||||||| | |
4645 Subject 839 TCGTGAA 845</pre> | |
4646 </div> | |
4647 <div class=hotspot> | |
4648 <p class=range> | |
4649 <span class=range>Range 4: 2027 to 2033</span> | |
4650 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804083?report=genbank&log$=nuclalign&from=2027&to=2033">GenBank</a> | |
4651 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/557804083?report=graph&log$=nuclalign&from=2027&to=2033">Graphics</a> | |
4652 </p> | |
4653 | |
4654 <table class=hotspotstable> | |
4655 <tr> | |
4656 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
4657 </tr> | |
4658 <tr> | |
4659 <td>14.4 bits(7)</td> | |
4660 <td>185.8</td> | |
4661 <td>7/7(100%)</td> | |
4662 <td>0/7(0%)</td> | |
4663 <td>Plus/Plus</td> | |
4664 </tr> | |
4665 </table> | |
4666 | |
4667 <pre class=alignmentgraphic>Query 9 GTGAAGA 15 | |
4668 ||||||| | |
4669 Subject 2027 GTGAAGA 2033</pre> | |
4670 </div> | |
4671 | |
4672 </div> | |
4673 | |
4674 <div class=alignment id=hit14> | |
4675 | |
4676 <div class=linkheader> | |
4677 <div class=right><a href="#description14">Descriptions</a></div> | |
4678 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/474452808?report=genbank&log$=nuclalign">GenBank</a> | |
4679 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/474452808?report=graph&log$=nuclalign">Graphics</a> | |
4680 </div> | |
4681 | |
4682 <div class=title> | |
4683 <p class=hittitle>Chain A, Tetracycline Resistance Protein Tet(o) Bound To The Ribosome</p> | |
4684 <p class=titleinfo> | |
4685 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/474452808?report=genbank&log$=nuclalign">pdb|3J37|A</a> | |
4686 <span class=b>Length:</span> 2904 | |
4687 <span class=b>Number of Matches:</span> 3 | |
4688 </p> | |
4689 </div> | |
4690 | |
4691 | |
4692 <div class=hotspot> | |
4693 <p class=range> | |
4694 <span class=range>Range 1: 961 to 976</span> | |
4695 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/474452808?report=genbank&log$=nuclalign&from=961&to=976">GenBank</a> | |
4696 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/474452808?report=graph&log$=nuclalign&from=961&to=976">Graphics</a> | |
4697 </p> | |
4698 | |
4699 <table class=hotspotstable> | |
4700 <tr> | |
4701 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
4702 </tr> | |
4703 <tr> | |
4704 <td>32.2 bits(16)</td> | |
4705 <td>0.0</td> | |
4706 <td>16/16(100%)</td> | |
4707 <td>0/16(0%)</td> | |
4708 <td>Plus/Plus</td> | |
4709 </tr> | |
4710 </table> | |
4711 | |
4712 <pre class=alignmentgraphic>Query 1 CGTCCGTCGTGAAGAG 16 | |
4713 |||||||||||||||| | |
4714 Subject 961 CGTCCGTCGTGAAGAG 976</pre> | |
4715 </div> | |
4716 <div class=hotspot> | |
4717 <p class=range> | |
4718 <span class=range>Range 2: 2591 to 2598</span> | |
4719 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/474452808?report=genbank&log$=nuclalign&from=2591&to=2598">GenBank</a> | |
4720 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/474452808?report=graph&log$=nuclalign&from=2591&to=2598">Graphics</a> | |
4721 </p> | |
4722 | |
4723 <table class=hotspotstable> | |
4724 <tr> | |
4725 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
4726 </tr> | |
4727 <tr> | |
4728 <td>16.4 bits(8)</td> | |
4729 <td>47.0</td> | |
4730 <td>8/8(100%)</td> | |
4731 <td>0/8(0%)</td> | |
4732 <td>Plus/Plus</td> | |
4733 </tr> | |
4734 </table> | |
4735 | |
4736 <pre class=alignmentgraphic>Query 5 CGTCGTGA 12 | |
4737 |||||||| | |
4738 Subject 2591 CGTCGTGA 2598</pre> | |
4739 </div> | |
4740 <div class=hotspot> | |
4741 <p class=range> | |
4742 <span class=range>Range 3: 839 to 845</span> | |
4743 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/474452808?report=genbank&log$=nuclalign&from=839&to=845">GenBank</a> | |
4744 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/474452808?report=graph&log$=nuclalign&from=839&to=845">Graphics</a> | |
4745 </p> | |
4746 | |
4747 <table class=hotspotstable> | |
4748 <tr> | |
4749 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
4750 </tr> | |
4751 <tr> | |
4752 <td>14.4 bits(7)</td> | |
4753 <td>185.8</td> | |
4754 <td>7/7(100%)</td> | |
4755 <td>0/7(0%)</td> | |
4756 <td>Plus/Plus</td> | |
4757 </tr> | |
4758 </table> | |
4759 | |
4760 <pre class=alignmentgraphic>Query 7 TCGTGAA 13 | |
4761 ||||||| | |
4762 Subject 839 TCGTGAA 845</pre> | |
4763 </div> | |
4764 | |
4765 </div> | |
4766 | |
4767 <div class=alignment id=hit15> | |
4768 | |
4769 <div class=linkheader> | |
4770 <div class=right><a href="#description15">Descriptions</a></div> | |
4771 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/326634210?report=genbank&log$=nuclalign">GenBank</a> | |
4772 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/326634210?report=graph&log$=nuclalign">Graphics</a> | |
4773 </div> | |
4774 | |
4775 <div class=title> | |
4776 <p class=hittitle>Chain B, Structural Insights Into Cognate Vs. Near-Cognate Discrimination During Decoding. This Entry Contains The Large Subunit Of A Ribosome Programmed With A Near-Cognate Codon. </p> | |
4777 <p class=titleinfo> | |
4778 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/326634210?report=genbank&log$=nuclalign">pdb|3IZT|B</a> | |
4779 <span class=b>Length:</span> 2904 | |
4780 <span class=b>Number of Matches:</span> 3 | |
4781 </p> | |
4782 </div> | |
4783 | |
4784 <a class=showmoretitles onclick="toggle_visibility('moretitles15'); return false;" href=''> | |
4785 See 7 more title(s) | |
4786 </a> | |
4787 | |
4788 <div class=moretitles id=moretitles15 style="display: none"> | |
4789 <div class=title> | |
4790 <p class=hittitle>Chain B, Structural Insights Into Cognate Vs. Near-Cognate Discrimination During Decoding. This Entry Contains The Large Subunit Of A Ribosome Programmed With A Cognate Codon </p> | |
4791 <p class=titleinfo> | |
4792 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/326634243?report=genbank&log$=nuclalign">pdb|3IZU|B</a> | |
4793 </p> | |
4794 </div> | |
4795 <div class=title> | |
4796 <p class=hittitle>Chain B, Structural Characterization Of Mrna-Trna Translocation Intermediates (50s Ribosome Of Class2 Of The Six Classes) </p> | |
4797 <p class=titleinfo> | |
4798 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/380763703?report=genbank&log$=nuclalign">pdb|3J0T|B</a> | |
4799 </p> | |
4800 </div> | |
4801 <div class=title> | |
4802 <p class=hittitle>Chain B, Structural Characterization Of Mrna-Trna Translocation Intermediates (50s Ribosome Of Class 4a Of The Six Classes) </p> | |
4803 <p class=titleinfo> | |
4804 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/380763785?report=genbank&log$=nuclalign">pdb|3J0W|B</a> | |
4805 </p> | |
4806 </div> | |
4807 <div class=title> | |
4808 <p class=hittitle>Chain B, Structural Characterization Of Mrna-Trna Translocation Intermediates (50s Ribosome Of Class 4b Of The Six Classes) </p> | |
4809 <p class=titleinfo> | |
4810 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/380763843?report=genbank&log$=nuclalign">pdb|3J0Y|B</a> | |
4811 </p> | |
4812 </div> | |
4813 <div class=title> | |
4814 <p class=hittitle>Chain B, Structural Characterization Of Mrna-Trna Translocation Intermediates (50s Ribosome Of Class 3 Of The Six Classes) </p> | |
4815 <p class=titleinfo> | |
4816 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/380763925?report=genbank&log$=nuclalign">pdb|3J11|B</a> | |
4817 </p> | |
4818 </div> | |
4819 <div class=title> | |
4820 <p class=hittitle>Chain B, Structural Characterization Of Mrna-Trna Translocation Intermediates (50s Ribosome Of Class 5 Of The Six Classes) </p> | |
4821 <p class=titleinfo> | |
4822 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/380763959?report=genbank&log$=nuclalign">pdb|3J12|B</a> | |
4823 </p> | |
4824 </div> | |
4825 <div class=title> | |
4826 <p class=hittitle>Chain B, Structural Characterization Of Mrna-Trna Translocation Intermediates (50s Ribosome Of Class 6 Of The Six Classes)</p> | |
4827 <p class=titleinfo> | |
4828 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/380764016?report=genbank&log$=nuclalign">pdb|3J14|B</a> | |
4829 </p> | |
4830 </div> | |
4831 </div> | |
4832 | |
4833 <div class=hotspot> | |
4834 <p class=range> | |
4835 <span class=range>Range 1: 961 to 976</span> | |
4836 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/326634210?report=genbank&log$=nuclalign&from=961&to=976">GenBank</a> | |
4837 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/326634210?report=graph&log$=nuclalign&from=961&to=976">Graphics</a> | |
4838 </p> | |
4839 | |
4840 <table class=hotspotstable> | |
4841 <tr> | |
4842 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
4843 </tr> | |
4844 <tr> | |
4845 <td>32.2 bits(16)</td> | |
4846 <td>0.0</td> | |
4847 <td>16/16(100%)</td> | |
4848 <td>0/16(0%)</td> | |
4849 <td>Plus/Plus</td> | |
4850 </tr> | |
4851 </table> | |
4852 | |
4853 <pre class=alignmentgraphic>Query 1 CGTCCGTCGTGAAGAG 16 | |
4854 |||||||||||||||| | |
4855 Subject 961 CGTCCGTCGTGAAGAG 976</pre> | |
4856 </div> | |
4857 <div class=hotspot> | |
4858 <p class=range> | |
4859 <span class=range>Range 2: 2591 to 2598</span> | |
4860 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/326634210?report=genbank&log$=nuclalign&from=2591&to=2598">GenBank</a> | |
4861 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/326634210?report=graph&log$=nuclalign&from=2591&to=2598">Graphics</a> | |
4862 </p> | |
4863 | |
4864 <table class=hotspotstable> | |
4865 <tr> | |
4866 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
4867 </tr> | |
4868 <tr> | |
4869 <td>16.4 bits(8)</td> | |
4870 <td>47.0</td> | |
4871 <td>8/8(100%)</td> | |
4872 <td>0/8(0%)</td> | |
4873 <td>Plus/Plus</td> | |
4874 </tr> | |
4875 </table> | |
4876 | |
4877 <pre class=alignmentgraphic>Query 5 CGTCGTGA 12 | |
4878 |||||||| | |
4879 Subject 2591 CGTCGTGA 2598</pre> | |
4880 </div> | |
4881 <div class=hotspot> | |
4882 <p class=range> | |
4883 <span class=range>Range 3: 839 to 845</span> | |
4884 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/326634210?report=genbank&log$=nuclalign&from=839&to=845">GenBank</a> | |
4885 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/326634210?report=graph&log$=nuclalign&from=839&to=845">Graphics</a> | |
4886 </p> | |
4887 | |
4888 <table class=hotspotstable> | |
4889 <tr> | |
4890 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
4891 </tr> | |
4892 <tr> | |
4893 <td>14.4 bits(7)</td> | |
4894 <td>185.8</td> | |
4895 <td>7/7(100%)</td> | |
4896 <td>0/7(0%)</td> | |
4897 <td>Plus/Plus</td> | |
4898 </tr> | |
4899 </table> | |
4900 | |
4901 <pre class=alignmentgraphic>Query 7 TCGTGAA 13 | |
4902 ||||||| | |
4903 Subject 839 TCGTGAA 845</pre> | |
4904 </div> | |
4905 | |
4906 </div> | |
4907 | |
4908 <div class=alignment id=hit16> | |
4909 | |
4910 <div class=linkheader> | |
4911 <div class=right><a href="#description16">Descriptions</a></div> | |
4912 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/224510767?report=genbank&log$=nuclalign">GenBank</a> | |
4913 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/224510767?report=graph&log$=nuclalign">Graphics</a> | |
4914 </div> | |
4915 | |
4916 <div class=title> | |
4917 <p class=hittitle>Chain B, Ternary Complex-Bound E.Coli 70s Ribosome. This Entry Consists Of The 50s Subunit. </p> | |
4918 <p class=titleinfo> | |
4919 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/224510767?report=genbank&log$=nuclalign">pdb|3FIK|B</a> | |
4920 <span class=b>Length:</span> 2903 | |
4921 <span class=b>Number of Matches:</span> 4 | |
4922 </p> | |
4923 </div> | |
4924 | |
4925 <a class=showmoretitles onclick="toggle_visibility('moretitles16'); return false;" href=''> | |
4926 See 19 more title(s) | |
4927 </a> | |
4928 | |
4929 <div class=moretitles id=moretitles16 style="display: none"> | |
4930 <div class=title> | |
4931 <p class=hittitle>Chain A, Crystal Structure Of The E. Coli 70s Ribosome In An Intermediate State Of Ratcheting </p> | |
4932 <p class=titleinfo> | |
4933 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/257097373?report=genbank&log$=nuclalign">pdb|3I1N|A</a> | |
4934 </p> | |
4935 </div> | |
4936 <div class=title> | |
4937 <p class=hittitle>Chain A, Crystal Structure Of The E. Coli 70s Ribosome In An Intermediate State Of Ratcheting </p> | |
4938 <p class=titleinfo> | |
4939 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/257097425?report=genbank&log$=nuclalign">pdb|3I1P|A</a> | |
4940 </p> | |
4941 </div> | |
4942 <div class=title> | |
4943 <p class=hittitle>Chain A, Crystal Structure Of The E. Coli 70s Ribosome In An Intermediate State Of Ratcheting </p> | |
4944 <p class=titleinfo> | |
4945 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/257097479?report=genbank&log$=nuclalign">pdb|3I1R|A</a> | |
4946 </p> | |
4947 </div> | |
4948 <div class=title> | |
4949 <p class=hittitle>Chain A, Crystal Structure Of The E. Coli 70s Ribosome In An Intermediate State Of Ratcheting </p> | |
4950 <p class=titleinfo> | |
4951 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/257097533?report=genbank&log$=nuclalign">pdb|3I1T|A</a> | |
4952 </p> | |
4953 </div> | |
4954 <div class=title> | |
4955 <p class=hittitle>Chain A, Crystal Structure Of The E. Coli 70s Ribosome In An Intermediate State Of Ratcheting </p> | |
4956 <p class=titleinfo> | |
4957 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/257097588?report=genbank&log$=nuclalign">pdb|3I20|A</a> | |
4958 </p> | |
4959 </div> | |
4960 <div class=title> | |
4961 <p class=hittitle>Chain A, Crystal Structure Of The E. Coli 70s Ribosome In An Intermediate State Of Ratcheting </p> | |
4962 <p class=titleinfo> | |
4963 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/257097643?report=genbank&log$=nuclalign">pdb|3I22|A</a> | |
4964 </p> | |
4965 </div> | |
4966 <div class=title> | |
4967 <p class=hittitle>Chain B, E.Coli 70s Ribosome Stalled During Translation Of Tnac Leader Peptide. This File Contains The 50s, The P-Site Trna And The Tnac Leader Peptide (Part 2 Of 2). </p> | |
4968 <p class=titleinfo> | |
4969 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/294662251?report=genbank&log$=nuclalign">pdb|2WWQ|B</a> | |
4970 </p> | |
4971 </div> | |
4972 <div class=title> | |
4973 <p class=hittitle>Chain A, Crystal Structure Of The E. Coli Ribosome Bound To Chloramphenicol. This File Contains The 50s Subunit Of The First 70s Ribosome With Chloramphenicol Bound. </p> | |
4974 <p class=titleinfo> | |
4975 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/309320065?report=genbank&log$=nuclalign">pdb|3OFC|A</a> | |
4976 </p> | |
4977 </div> | |
4978 <div class=title> | |
4979 <p class=hittitle>Chain A, Crystal Structure Of The E. Coli Ribosome Bound To Clindamycin. This File Contains The 50s Subunit Of The First 70s Ribosome Bound To Clindamycin. </p> | |
4980 <p class=titleinfo> | |
4981 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/309320169?report=genbank&log$=nuclalign">pdb|3OFZ|A</a> | |
4982 </p> | |
4983 </div> | |
4984 <div class=title> | |
4985 <p class=hittitle>Chain A, Crystal Structure Of The E. Coli Ribosome Bound To Clindamycin. This File Contains The 50s Subunit Of The Second 70s Ribosome. </p> | |
4986 <p class=titleinfo> | |
4987 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/309320200?report=genbank&log$=nuclalign">pdb|3OG0|A</a> | |
4988 </p> | |
4989 </div> | |
4990 <div class=title> | |
4991 <p class=hittitle>Chain A, Crystal Structure Of The E. Coli Ribosome Bound To Telithromycin. This File Contains The 50s Subunit Of The Second 70s Ribosome. </p> | |
4992 <p class=titleinfo> | |
4993 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/315113654?report=genbank&log$=nuclalign">pdb|3OAS|A</a> | |
4994 </p> | |
4995 </div> | |
4996 <div class=title> | |
4997 <p class=hittitle>Chain A, Crystal Structure Of The E. Coli Ribosome Bound To Telithromycin. This File Contains The 50s Subunit Of The First 70s Ribosome With Telithromycin Bound. </p> | |
4998 <p class=titleinfo> | |
4999 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/315113685?report=genbank&log$=nuclalign">pdb|3OAT|A</a> | |
5000 </p> | |
5001 </div> | |
5002 <div class=title> | |
5003 <p class=hittitle>Chain A, Structures Of The Bacterial Ribosome In Classical And Hybrid States Of Trna Binding </p> | |
5004 <p class=titleinfo> | |
5005 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/334359437?report=genbank&log$=nuclalign">pdb|3R8S|A</a> | |
5006 </p> | |
5007 </div> | |
5008 <div class=title> | |
5009 <p class=hittitle>Chain A, Structures Of The Bacterial Ribosome In Classical And Hybrid States Of Trna Binding </p> | |
5010 <p class=titleinfo> | |
5011 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/334359468?report=genbank&log$=nuclalign">pdb|3R8T|A</a> | |
5012 </p> | |
5013 </div> | |
5014 <div class=title> | |
5015 <p class=hittitle>Chain A, Crystal Structure Of Release Factor Rf3 Trapped In The Gtp State On A Rotated Conformation Of The Ribosome </p> | |
5016 <p class=titleinfo> | |
5017 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/371927526?report=genbank&log$=nuclalign">pdb|3SGF|A</a> | |
5018 </p> | |
5019 </div> | |
5020 <div class=title> | |
5021 <p class=hittitle>Chain A, Crystal Structure Of Release Factor Rf3 Trapped In The Gtp State On A Rotated Conformation Of The Ribosome (Without Viomycin) </p> | |
5022 <p class=titleinfo> | |
5023 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/371927651?report=genbank&log$=nuclalign">pdb|3UOS|A</a> | |
5024 </p> | |
5025 </div> | |
5026 <div class=title> | |
5027 <p class=hittitle>Chain A, Structure Of The Bacterial Ribosome Complexed By Tmrna-Smpb And Ef-G During Translocation And Mld-Loading (50s Subunit) </p> | |
5028 <p class=titleinfo> | |
5029 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/386783121?report=genbank&log$=nuclalign">pdb|3J19|A</a> | |
5030 </p> | |
5031 </div> | |
5032 <div class=title> | |
5033 <p class=hittitle>Chain A, Structure Of The Ribosome With Elongation Factor G Trapped In The Pre- Translocation State (pre-translocation 70s*trna Structure, 50s Subunit) </p> | |
5034 <p class=titleinfo> | |
5035 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/567754995?report=genbank&log$=nuclalign">pdb|3J5U|A</a> | |
5036 </p> | |
5037 </div> | |
5038 <div class=title> | |
5039 <p class=hittitle>Chain A, Structure Of The Ribosome With Elongation Factor G Trapped In The Pre- Translocation State (pre-translocation 70s*trna*ef-g Structure, 50s Subunit)</p> | |
5040 <p class=titleinfo> | |
5041 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/567755029?report=genbank&log$=nuclalign">pdb|3J5W|A</a> | |
5042 </p> | |
5043 </div> | |
5044 </div> | |
5045 | |
5046 <div class=hotspot> | |
5047 <p class=range> | |
5048 <span class=range>Range 1: 961 to 976</span> | |
5049 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/224510767?report=genbank&log$=nuclalign&from=961&to=976">GenBank</a> | |
5050 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/224510767?report=graph&log$=nuclalign&from=961&to=976">Graphics</a> | |
5051 </p> | |
5052 | |
5053 <table class=hotspotstable> | |
5054 <tr> | |
5055 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
5056 </tr> | |
5057 <tr> | |
5058 <td>32.2 bits(16)</td> | |
5059 <td>0.0</td> | |
5060 <td>16/16(100%)</td> | |
5061 <td>0/16(0%)</td> | |
5062 <td>Plus/Plus</td> | |
5063 </tr> | |
5064 </table> | |
5065 | |
5066 <pre class=alignmentgraphic>Query 1 CGTCCGTCGTGAAGAG 16 | |
5067 |||||||||||||||| | |
5068 Subject 961 CGTCCGTCGTGAAGAG 976</pre> | |
5069 </div> | |
5070 <div class=hotspot> | |
5071 <p class=range> | |
5072 <span class=range>Range 2: 2591 to 2598</span> | |
5073 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/224510767?report=genbank&log$=nuclalign&from=2591&to=2598">GenBank</a> | |
5074 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/224510767?report=graph&log$=nuclalign&from=2591&to=2598">Graphics</a> | |
5075 </p> | |
5076 | |
5077 <table class=hotspotstable> | |
5078 <tr> | |
5079 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
5080 </tr> | |
5081 <tr> | |
5082 <td>16.4 bits(8)</td> | |
5083 <td>47.0</td> | |
5084 <td>8/8(100%)</td> | |
5085 <td>0/8(0%)</td> | |
5086 <td>Plus/Plus</td> | |
5087 </tr> | |
5088 </table> | |
5089 | |
5090 <pre class=alignmentgraphic>Query 5 CGTCGTGA 12 | |
5091 |||||||| | |
5092 Subject 2591 CGTCGTGA 2598</pre> | |
5093 </div> | |
5094 <div class=hotspot> | |
5095 <p class=range> | |
5096 <span class=range>Range 3: 839 to 845</span> | |
5097 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/224510767?report=genbank&log$=nuclalign&from=839&to=845">GenBank</a> | |
5098 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/224510767?report=graph&log$=nuclalign&from=839&to=845">Graphics</a> | |
5099 </p> | |
5100 | |
5101 <table class=hotspotstable> | |
5102 <tr> | |
5103 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
5104 </tr> | |
5105 <tr> | |
5106 <td>14.4 bits(7)</td> | |
5107 <td>185.8</td> | |
5108 <td>7/7(100%)</td> | |
5109 <td>0/7(0%)</td> | |
5110 <td>Plus/Plus</td> | |
5111 </tr> | |
5112 </table> | |
5113 | |
5114 <pre class=alignmentgraphic>Query 7 TCGTGAA 13 | |
5115 ||||||| | |
5116 Subject 839 TCGTGAA 845</pre> | |
5117 </div> | |
5118 <div class=hotspot> | |
5119 <p class=range> | |
5120 <span class=range>Range 4: 2027 to 2033</span> | |
5121 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/224510767?report=genbank&log$=nuclalign&from=2027&to=2033">GenBank</a> | |
5122 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/224510767?report=graph&log$=nuclalign&from=2027&to=2033">Graphics</a> | |
5123 </p> | |
5124 | |
5125 <table class=hotspotstable> | |
5126 <tr> | |
5127 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
5128 </tr> | |
5129 <tr> | |
5130 <td>14.4 bits(7)</td> | |
5131 <td>185.8</td> | |
5132 <td>7/7(100%)</td> | |
5133 <td>0/7(0%)</td> | |
5134 <td>Plus/Plus</td> | |
5135 </tr> | |
5136 </table> | |
5137 | |
5138 <pre class=alignmentgraphic>Query 9 GTGAAGA 15 | |
5139 ||||||| | |
5140 Subject 2027 GTGAAGA 2033</pre> | |
5141 </div> | |
5142 | |
5143 </div> | |
5144 | |
5145 <div class=alignment id=hit17> | |
5146 | |
5147 <div class=linkheader> | |
5148 <div class=right><a href="#description17">Descriptions</a></div> | |
5149 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/256032374?report=genbank&log$=nuclalign">GenBank</a> | |
5150 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/256032374?report=graph&log$=nuclalign">Graphics</a> | |
5151 </div> | |
5152 | |
5153 <div class=title> | |
5154 <p class=hittitle>Chain B, Structure Of The 50s Subunit Of E. Coli Ribosome In Pre-Accommodation State </p> | |
5155 <p class=titleinfo> | |
5156 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/256032374?report=genbank&log$=nuclalign">pdb|3E1B|B</a> | |
5157 <span class=b>Length:</span> 2903 | |
5158 <span class=b>Number of Matches:</span> 4 | |
5159 </p> | |
5160 </div> | |
5161 | |
5162 <a class=showmoretitles onclick="toggle_visibility('moretitles17'); return false;" href=''> | |
5163 See 1 more title(s) | |
5164 </a> | |
5165 | |
5166 <div class=moretitles id=moretitles17 style="display: none"> | |
5167 <div class=title> | |
5168 <p class=hittitle>Chain B, Structure Of The 50s Subunit Of E. Coli Ribosome In Post-Accommodation State</p> | |
5169 <p class=titleinfo> | |
5170 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/256032431?report=genbank&log$=nuclalign">pdb|3E1D|B</a> | |
5171 </p> | |
5172 </div> | |
5173 </div> | |
5174 | |
5175 <div class=hotspot> | |
5176 <p class=range> | |
5177 <span class=range>Range 1: 961 to 976</span> | |
5178 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/256032374?report=genbank&log$=nuclalign&from=961&to=976">GenBank</a> | |
5179 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/256032374?report=graph&log$=nuclalign&from=961&to=976">Graphics</a> | |
5180 </p> | |
5181 | |
5182 <table class=hotspotstable> | |
5183 <tr> | |
5184 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
5185 </tr> | |
5186 <tr> | |
5187 <td>32.2 bits(16)</td> | |
5188 <td>0.0</td> | |
5189 <td>16/16(100%)</td> | |
5190 <td>0/16(0%)</td> | |
5191 <td>Plus/Plus</td> | |
5192 </tr> | |
5193 </table> | |
5194 | |
5195 <pre class=alignmentgraphic>Query 1 CGTCCGTCGTGAAGAG 16 | |
5196 |||||||||||||||| | |
5197 Subject 961 CGTCCGTCGTGAAGAG 976</pre> | |
5198 </div> | |
5199 <div class=hotspot> | |
5200 <p class=range> | |
5201 <span class=range>Range 2: 2591 to 2598</span> | |
5202 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/256032374?report=genbank&log$=nuclalign&from=2591&to=2598">GenBank</a> | |
5203 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/256032374?report=graph&log$=nuclalign&from=2591&to=2598">Graphics</a> | |
5204 </p> | |
5205 | |
5206 <table class=hotspotstable> | |
5207 <tr> | |
5208 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
5209 </tr> | |
5210 <tr> | |
5211 <td>16.4 bits(8)</td> | |
5212 <td>47.0</td> | |
5213 <td>8/8(100%)</td> | |
5214 <td>0/8(0%)</td> | |
5215 <td>Plus/Plus</td> | |
5216 </tr> | |
5217 </table> | |
5218 | |
5219 <pre class=alignmentgraphic>Query 5 CGTCGTGA 12 | |
5220 |||||||| | |
5221 Subject 2591 CGTCGTGA 2598</pre> | |
5222 </div> | |
5223 <div class=hotspot> | |
5224 <p class=range> | |
5225 <span class=range>Range 3: 839 to 845</span> | |
5226 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/256032374?report=genbank&log$=nuclalign&from=839&to=845">GenBank</a> | |
5227 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/256032374?report=graph&log$=nuclalign&from=839&to=845">Graphics</a> | |
5228 </p> | |
5229 | |
5230 <table class=hotspotstable> | |
5231 <tr> | |
5232 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
5233 </tr> | |
5234 <tr> | |
5235 <td>14.4 bits(7)</td> | |
5236 <td>185.8</td> | |
5237 <td>7/7(100%)</td> | |
5238 <td>0/7(0%)</td> | |
5239 <td>Plus/Plus</td> | |
5240 </tr> | |
5241 </table> | |
5242 | |
5243 <pre class=alignmentgraphic>Query 7 TCGTGAA 13 | |
5244 ||||||| | |
5245 Subject 839 TCGTGAA 845</pre> | |
5246 </div> | |
5247 <div class=hotspot> | |
5248 <p class=range> | |
5249 <span class=range>Range 4: 2027 to 2033</span> | |
5250 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/256032374?report=genbank&log$=nuclalign&from=2027&to=2033">GenBank</a> | |
5251 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/256032374?report=graph&log$=nuclalign&from=2027&to=2033">Graphics</a> | |
5252 </p> | |
5253 | |
5254 <table class=hotspotstable> | |
5255 <tr> | |
5256 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
5257 </tr> | |
5258 <tr> | |
5259 <td>14.4 bits(7)</td> | |
5260 <td>185.8</td> | |
5261 <td>7/7(100%)</td> | |
5262 <td>0/7(0%)</td> | |
5263 <td>Plus/Plus</td> | |
5264 </tr> | |
5265 </table> | |
5266 | |
5267 <pre class=alignmentgraphic>Query 9 GTGAAGA 15 | |
5268 ||||||| | |
5269 Subject 2027 GTGAAGA 2033</pre> | |
5270 </div> | |
5271 | |
5272 </div> | |
5273 | |
5274 <div class=alignment id=hit18> | |
5275 | |
5276 <div class=linkheader> | |
5277 <div class=right><a href="#description18">Descriptions</a></div> | |
5278 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/157883716?report=genbank&log$=nuclalign">GenBank</a> | |
5279 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/157883716?report=graph&log$=nuclalign">Graphics</a> | |
5280 </div> | |
5281 | |
5282 <div class=title> | |
5283 <p class=hittitle>Chain 0, Structure Of The 50s Subunit Of A Secm-Stalled E. Coli Ribosome Complex Obtained By Fitting Atomic Models For Rna And Protein Components Into Cryo-Em Map Emd-1143</p> | |
5284 <p class=titleinfo> | |
5285 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/157883716?report=genbank&log$=nuclalign">pdb|2GYC|0</a> | |
5286 <span class=b>Length:</span> 2740 | |
5287 <span class=b>Number of Matches:</span> 4 | |
5288 </p> | |
5289 </div> | |
5290 | |
5291 | |
5292 <div class=hotspot> | |
5293 <p class=range> | |
5294 <span class=range>Range 1: 889 to 904</span> | |
5295 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/157883716?report=genbank&log$=nuclalign&from=889&to=904">GenBank</a> | |
5296 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/157883716?report=graph&log$=nuclalign&from=889&to=904">Graphics</a> | |
5297 </p> | |
5298 | |
5299 <table class=hotspotstable> | |
5300 <tr> | |
5301 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
5302 </tr> | |
5303 <tr> | |
5304 <td>32.2 bits(16)</td> | |
5305 <td>0.0</td> | |
5306 <td>16/16(100%)</td> | |
5307 <td>0/16(0%)</td> | |
5308 <td>Plus/Plus</td> | |
5309 </tr> | |
5310 </table> | |
5311 | |
5312 <pre class=alignmentgraphic>Query 1 CGTCCGTCGTGAAGAG 16 | |
5313 |||||||||||||||| | |
5314 Subject 889 CGTCCGTCGTGAAGAG 904</pre> | |
5315 </div> | |
5316 <div class=hotspot> | |
5317 <p class=range> | |
5318 <span class=range>Range 2: 2453 to 2460</span> | |
5319 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/157883716?report=genbank&log$=nuclalign&from=2453&to=2460">GenBank</a> | |
5320 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/157883716?report=graph&log$=nuclalign&from=2453&to=2460">Graphics</a> | |
5321 </p> | |
5322 | |
5323 <table class=hotspotstable> | |
5324 <tr> | |
5325 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
5326 </tr> | |
5327 <tr> | |
5328 <td>16.4 bits(8)</td> | |
5329 <td>47.0</td> | |
5330 <td>8/8(100%)</td> | |
5331 <td>0/8(0%)</td> | |
5332 <td>Plus/Plus</td> | |
5333 </tr> | |
5334 </table> | |
5335 | |
5336 <pre class=alignmentgraphic>Query 5 CGTCGTGA 12 | |
5337 |||||||| | |
5338 Subject 2453 CGTCGTGA 2460</pre> | |
5339 </div> | |
5340 <div class=hotspot> | |
5341 <p class=range> | |
5342 <span class=range>Range 3: 776 to 782</span> | |
5343 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/157883716?report=genbank&log$=nuclalign&from=776&to=782">GenBank</a> | |
5344 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/157883716?report=graph&log$=nuclalign&from=776&to=782">Graphics</a> | |
5345 </p> | |
5346 | |
5347 <table class=hotspotstable> | |
5348 <tr> | |
5349 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
5350 </tr> | |
5351 <tr> | |
5352 <td>14.4 bits(7)</td> | |
5353 <td>185.8</td> | |
5354 <td>7/7(100%)</td> | |
5355 <td>0/7(0%)</td> | |
5356 <td>Plus/Plus</td> | |
5357 </tr> | |
5358 </table> | |
5359 | |
5360 <pre class=alignmentgraphic>Query 7 TCGTGAA 13 | |
5361 ||||||| | |
5362 Subject 776 TCGTGAA 782</pre> | |
5363 </div> | |
5364 <div class=hotspot> | |
5365 <p class=range> | |
5366 <span class=range>Range 4: 1910 to 1916</span> | |
5367 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/157883716?report=genbank&log$=nuclalign&from=1910&to=1916">GenBank</a> | |
5368 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/157883716?report=graph&log$=nuclalign&from=1910&to=1916">Graphics</a> | |
5369 </p> | |
5370 | |
5371 <table class=hotspotstable> | |
5372 <tr> | |
5373 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
5374 </tr> | |
5375 <tr> | |
5376 <td>14.4 bits(7)</td> | |
5377 <td>185.8</td> | |
5378 <td>7/7(100%)</td> | |
5379 <td>0/7(0%)</td> | |
5380 <td>Plus/Plus</td> | |
5381 </tr> | |
5382 </table> | |
5383 | |
5384 <pre class=alignmentgraphic>Query 9 GTGAAGA 15 | |
5385 ||||||| | |
5386 Subject 1910 GTGAAGA 1916</pre> | |
5387 </div> | |
5388 | |
5389 </div> | |
5390 | |
5391 <div class=alignment id=hit19> | |
5392 | |
5393 <div class=linkheader> | |
5394 <div class=right><a href="#description19">Descriptions</a></div> | |
5395 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/157883710?report=genbank&log$=nuclalign">GenBank</a> | |
5396 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/157883710?report=graph&log$=nuclalign">Graphics</a> | |
5397 </div> | |
5398 | |
5399 <div class=title> | |
5400 <p class=hittitle>Chain 0, Structure Of The 50s Subunit Of A Pre-Translocational E. Coli Ribosome Obtained By Fitting Atomic Models For Rna And Protein Components Into Cryo-Em Map Emd-1056</p> | |
5401 <p class=titleinfo> | |
5402 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/157883710?report=genbank&log$=nuclalign">pdb|2GYA|0</a> | |
5403 <span class=b>Length:</span> 2740 | |
5404 <span class=b>Number of Matches:</span> 4 | |
5405 </p> | |
5406 </div> | |
5407 | |
5408 | |
5409 <div class=hotspot> | |
5410 <p class=range> | |
5411 <span class=range>Range 1: 889 to 904</span> | |
5412 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/157883710?report=genbank&log$=nuclalign&from=889&to=904">GenBank</a> | |
5413 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/157883710?report=graph&log$=nuclalign&from=889&to=904">Graphics</a> | |
5414 </p> | |
5415 | |
5416 <table class=hotspotstable> | |
5417 <tr> | |
5418 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
5419 </tr> | |
5420 <tr> | |
5421 <td>32.2 bits(16)</td> | |
5422 <td>0.0</td> | |
5423 <td>16/16(100%)</td> | |
5424 <td>0/16(0%)</td> | |
5425 <td>Plus/Plus</td> | |
5426 </tr> | |
5427 </table> | |
5428 | |
5429 <pre class=alignmentgraphic>Query 1 CGTCCGTCGTGAAGAG 16 | |
5430 |||||||||||||||| | |
5431 Subject 889 CGTCCGTCGTGAAGAG 904</pre> | |
5432 </div> | |
5433 <div class=hotspot> | |
5434 <p class=range> | |
5435 <span class=range>Range 2: 2453 to 2460</span> | |
5436 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/157883710?report=genbank&log$=nuclalign&from=2453&to=2460">GenBank</a> | |
5437 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/157883710?report=graph&log$=nuclalign&from=2453&to=2460">Graphics</a> | |
5438 </p> | |
5439 | |
5440 <table class=hotspotstable> | |
5441 <tr> | |
5442 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
5443 </tr> | |
5444 <tr> | |
5445 <td>16.4 bits(8)</td> | |
5446 <td>47.0</td> | |
5447 <td>8/8(100%)</td> | |
5448 <td>0/8(0%)</td> | |
5449 <td>Plus/Plus</td> | |
5450 </tr> | |
5451 </table> | |
5452 | |
5453 <pre class=alignmentgraphic>Query 5 CGTCGTGA 12 | |
5454 |||||||| | |
5455 Subject 2453 CGTCGTGA 2460</pre> | |
5456 </div> | |
5457 <div class=hotspot> | |
5458 <p class=range> | |
5459 <span class=range>Range 3: 776 to 782</span> | |
5460 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/157883710?report=genbank&log$=nuclalign&from=776&to=782">GenBank</a> | |
5461 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/157883710?report=graph&log$=nuclalign&from=776&to=782">Graphics</a> | |
5462 </p> | |
5463 | |
5464 <table class=hotspotstable> | |
5465 <tr> | |
5466 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
5467 </tr> | |
5468 <tr> | |
5469 <td>14.4 bits(7)</td> | |
5470 <td>185.8</td> | |
5471 <td>7/7(100%)</td> | |
5472 <td>0/7(0%)</td> | |
5473 <td>Plus/Plus</td> | |
5474 </tr> | |
5475 </table> | |
5476 | |
5477 <pre class=alignmentgraphic>Query 7 TCGTGAA 13 | |
5478 ||||||| | |
5479 Subject 776 TCGTGAA 782</pre> | |
5480 </div> | |
5481 <div class=hotspot> | |
5482 <p class=range> | |
5483 <span class=range>Range 4: 1910 to 1916</span> | |
5484 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/157883710?report=genbank&log$=nuclalign&from=1910&to=1916">GenBank</a> | |
5485 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/157883710?report=graph&log$=nuclalign&from=1910&to=1916">Graphics</a> | |
5486 </p> | |
5487 | |
5488 <table class=hotspotstable> | |
5489 <tr> | |
5490 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
5491 </tr> | |
5492 <tr> | |
5493 <td>14.4 bits(7)</td> | |
5494 <td>185.8</td> | |
5495 <td>7/7(100%)</td> | |
5496 <td>0/7(0%)</td> | |
5497 <td>Plus/Plus</td> | |
5498 </tr> | |
5499 </table> | |
5500 | |
5501 <pre class=alignmentgraphic>Query 9 GTGAAGA 15 | |
5502 ||||||| | |
5503 Subject 1910 GTGAAGA 1916</pre> | |
5504 </div> | |
5505 | |
5506 </div> | |
5507 | |
5508 <div class=alignment id=hit20> | |
5509 | |
5510 <div class=linkheader> | |
5511 <div class=right><a href="#description20">Descriptions</a></div> | |
5512 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/122922257?report=genbank&log$=nuclalign">GenBank</a> | |
5513 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/122922257?report=graph&log$=nuclalign">Graphics</a> | |
5514 </div> | |
5515 | |
5516 <div class=title> | |
5517 <p class=hittitle>Chain B, Crystal Structure Of Ribosome With Messenger Rna And The Anticodon Stem-Loop Of P-Site Trna. This File Contains The 50s Subunit Of One 70s Ribosome. The Entire Crystal Structure Contains Two 70s Ribosomes And Is Described In Remark 400.</p> | |
5518 <p class=titleinfo> | |
5519 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/122922257?report=genbank&log$=nuclalign">pdb|2I2V|B</a> | |
5520 <span class=b>Length:</span> 2904 | |
5521 <span class=b>Number of Matches:</span> 4 | |
5522 </p> | |
5523 </div> | |
5524 | |
5525 | |
5526 <div class=hotspot> | |
5527 <p class=range> | |
5528 <span class=range>Range 1: 961 to 976</span> | |
5529 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/122922257?report=genbank&log$=nuclalign&from=961&to=976">GenBank</a> | |
5530 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/122922257?report=graph&log$=nuclalign&from=961&to=976">Graphics</a> | |
5531 </p> | |
5532 | |
5533 <table class=hotspotstable> | |
5534 <tr> | |
5535 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
5536 </tr> | |
5537 <tr> | |
5538 <td>32.2 bits(16)</td> | |
5539 <td>0.0</td> | |
5540 <td>16/16(100%)</td> | |
5541 <td>0/16(0%)</td> | |
5542 <td>Plus/Plus</td> | |
5543 </tr> | |
5544 </table> | |
5545 | |
5546 <pre class=alignmentgraphic>Query 1 CGTCCGTCGTGAAGAG 16 | |
5547 |||||||||||||||| | |
5548 Subject 961 CGTCCGTCGTGAAGAG 976</pre> | |
5549 </div> | |
5550 <div class=hotspot> | |
5551 <p class=range> | |
5552 <span class=range>Range 2: 2591 to 2598</span> | |
5553 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/122922257?report=genbank&log$=nuclalign&from=2591&to=2598">GenBank</a> | |
5554 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/122922257?report=graph&log$=nuclalign&from=2591&to=2598">Graphics</a> | |
5555 </p> | |
5556 | |
5557 <table class=hotspotstable> | |
5558 <tr> | |
5559 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
5560 </tr> | |
5561 <tr> | |
5562 <td>16.4 bits(8)</td> | |
5563 <td>47.0</td> | |
5564 <td>8/8(100%)</td> | |
5565 <td>0/8(0%)</td> | |
5566 <td>Plus/Plus</td> | |
5567 </tr> | |
5568 </table> | |
5569 | |
5570 <pre class=alignmentgraphic>Query 5 CGTCGTGA 12 | |
5571 |||||||| | |
5572 Subject 2591 CGTCGTGA 2598</pre> | |
5573 </div> | |
5574 <div class=hotspot> | |
5575 <p class=range> | |
5576 <span class=range>Range 3: 839 to 845</span> | |
5577 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/122922257?report=genbank&log$=nuclalign&from=839&to=845">GenBank</a> | |
5578 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/122922257?report=graph&log$=nuclalign&from=839&to=845">Graphics</a> | |
5579 </p> | |
5580 | |
5581 <table class=hotspotstable> | |
5582 <tr> | |
5583 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
5584 </tr> | |
5585 <tr> | |
5586 <td>14.4 bits(7)</td> | |
5587 <td>185.8</td> | |
5588 <td>7/7(100%)</td> | |
5589 <td>0/7(0%)</td> | |
5590 <td>Plus/Plus</td> | |
5591 </tr> | |
5592 </table> | |
5593 | |
5594 <pre class=alignmentgraphic>Query 7 TCGTGAA 13 | |
5595 ||||||| | |
5596 Subject 839 TCGTGAA 845</pre> | |
5597 </div> | |
5598 <div class=hotspot> | |
5599 <p class=range> | |
5600 <span class=range>Range 4: 2027 to 2033</span> | |
5601 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/122922257?report=genbank&log$=nuclalign&from=2027&to=2033">GenBank</a> | |
5602 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/122922257?report=graph&log$=nuclalign&from=2027&to=2033">Graphics</a> | |
5603 </p> | |
5604 | |
5605 <table class=hotspotstable> | |
5606 <tr> | |
5607 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
5608 </tr> | |
5609 <tr> | |
5610 <td>14.4 bits(7)</td> | |
5611 <td>185.8</td> | |
5612 <td>7/7(100%)</td> | |
5613 <td>0/7(0%)</td> | |
5614 <td>Plus/Plus</td> | |
5615 </tr> | |
5616 </table> | |
5617 | |
5618 <pre class=alignmentgraphic>Query 9 GTGAAGA 15 | |
5619 ||||||| | |
5620 Subject 2027 GTGAAGA 2033</pre> | |
5621 </div> | |
5622 | |
5623 </div> | |
5624 | |
5625 <div class=alignment id=hit21> | |
5626 | |
5627 <div class=linkheader> | |
5628 <div class=right><a href="#description21">Descriptions</a></div> | |
5629 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/83754062?report=genbank&log$=nuclalign">GenBank</a> | |
5630 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/83754062?report=graph&log$=nuclalign">Graphics</a> | |
5631 </div> | |
5632 | |
5633 <div class=title> | |
5634 <p class=hittitle>Chain B, Crystal Structure Of The Bacterial Ribosome From Escherichia Coli At 3.5 A Resolution. This File Contains The 50s Subunit Of One 70s Ribosome. The Entire Crystal Structure Contains Two 70s Ribosomes And Is Described In Remark 400. </p> | |
5635 <p class=titleinfo> | |
5636 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/83754062?report=genbank&log$=nuclalign">pdb|2AW4|B</a> | |
5637 <span class=b>Length:</span> 2904 | |
5638 <span class=b>Number of Matches:</span> 4 | |
5639 </p> | |
5640 </div> | |
5641 | |
5642 <a class=showmoretitles onclick="toggle_visibility('moretitles21'); return false;" href=''> | |
5643 See 38 more title(s) | |
5644 </a> | |
5645 | |
5646 <div class=moretitles id=moretitles21 style="display: none"> | |
5647 <div class=title> | |
5648 <p class=hittitle>Chain B, Crystal Structure Of Ribosome With Messenger Rna And The Anticodon Stem-Loop Of P-Site Trna. This File Contains The 50s Subunit Of One 70s Ribosome. The Entire Crystal Structure Contains Two 70s Ribosomes And Is Described In Remark 400. </p> | |
5649 <p class=titleinfo> | |
5650 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/122922241?report=genbank&log$=nuclalign">pdb|2I2T|B</a> | |
5651 </p> | |
5652 </div> | |
5653 <div class=title> | |
5654 <p class=hittitle>Chain B, Crystal Structure Of The Bacterial Ribosome From Escherichia Coli In Complex With Spectinomycin. This File Contains The 50s Subunit Of The First 70s Ribosome. The Entire Crystal Structure Contains Two 70s Ribosomes. </p> | |
5655 <p class=titleinfo> | |
5656 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/157836046?report=genbank&log$=nuclalign">pdb|2QOV|B</a> | |
5657 </p> | |
5658 </div> | |
5659 <div class=title> | |
5660 <p class=hittitle>Chain B, Crystal Structure Of The Bacterial Ribosome From Escherichia Coli In Complex With Spectinomycin. This File Contains The 50s Subunit Of The Second 70s Ribosome. The Entire Crystal Structure Contains Two 70s Ribosomes. </p> | |
5661 <p class=titleinfo> | |
5662 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/157836098?report=genbank&log$=nuclalign">pdb|2QOX|B</a> | |
5663 </p> | |
5664 </div> | |
5665 <div class=title> | |
5666 <p class=hittitle>Chain B, Crystal Structure Of The Bacterial Ribosome From Escherichia Coli In Complex With Spectinomycin And Neomycin. This File Contains The 50s Subunit Of The First 70s Ribosome, With Neomycin Bound. The Entire Crystal Structure Contains Two 70s Ribosomes. </p> | |
5667 <p class=titleinfo> | |
5668 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/157836150?report=genbank&log$=nuclalign">pdb|2QOZ|B</a> | |
5669 </p> | |
5670 </div> | |
5671 <div class=title> | |
5672 <p class=hittitle>Chain B, Crystal Structure Of The Bacterial Ribosome From Escherichia Coli In Complex With Spectinomycin And Neomycin. This File Contains The 50s Subunit Of The Second 70s Ribosome, With Neomycin Bound. The Entire Crystal Structure Contains Two 70s Ribosomes. </p> | |
5673 <p class=titleinfo> | |
5674 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/157836202?report=genbank&log$=nuclalign">pdb|2QP1|B</a> | |
5675 </p> | |
5676 </div> | |
5677 <div class=title> | |
5678 <p class=hittitle>Chain B, Crystal Structure Of The Bacterial Ribosome From Escherichia Coli In Complex With Neomycin. This File Contains The 50s Subunit Of The First 70s Ribosome, With Neomycin Bound. The Entire Crystal Structure Contains Two 70s Ribosomes And Is Described In Remark 400. </p> | |
5679 <p class=titleinfo> | |
5680 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/158429721?report=genbank&log$=nuclalign">pdb|2QAM|B</a> | |
5681 </p> | |
5682 </div> | |
5683 <div class=title> | |
5684 <p class=hittitle>Chain B, Crystal Structure Of The Bacterial Ribosome From Escherichia Coli In Complex With Neomycin. This File Contains The 50s Subunit Of The Second 70s Ribosome, With Neomycin Bound. The Entire Crystal Structure Contains Two 70s Ribosomes And Is Described In Remark 400. </p> | |
5685 <p class=titleinfo> | |
5686 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/158429773?report=genbank&log$=nuclalign">pdb|2QAO|B</a> | |
5687 </p> | |
5688 </div> | |
5689 <div class=title> | |
5690 <p class=hittitle>Chain B, Crystal Structure Of The Bacterial Ribosome From Escherichia Coli In Complex With Gentamicin. This File Contains The 50s Subunit Of The First 70s Ribosome, With Gentamicin Bound. The Entire Crystal Structure Contains Two 70s Ribosomes And Is Described In Remark 400. </p> | |
5691 <p class=titleinfo> | |
5692 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/158429831?report=genbank&log$=nuclalign">pdb|2QBA|B</a> | |
5693 </p> | |
5694 </div> | |
5695 <div class=title> | |
5696 <p class=hittitle>Chain B, Crystal Structure Of The Bacterial Ribosome From Escherichia Coli In Complex With Gentamicin. This File Contains The 50s Subunit Of The Second 70s Ribosome, With Gentamicin Bound. The Entire Crystal Structure Contains Two 70s Ribosomes And Is Described In Remark 400. </p> | |
5697 <p class=titleinfo> | |
5698 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/158429883?report=genbank&log$=nuclalign">pdb|2QBC|B</a> | |
5699 </p> | |
5700 </div> | |
5701 <div class=title> | |
5702 <p class=hittitle>Chain B, Crystal Structure Of The Bacterial Ribosome From Escherichia Coli In Complex With Ribosome Recycling Factor (Rrf). This File Contains The 50s Subunit Of The First 70s Ribosome, With Rrf Bound. The Entire Crystal Structure Contains Two 70s Ribosomes And Is Described In Remark 400. </p> | |
5703 <p class=titleinfo> | |
5704 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/158429935?report=genbank&log$=nuclalign">pdb|2QBE|B</a> | |
5705 </p> | |
5706 </div> | |
5707 <div class=title> | |
5708 <p class=hittitle>Chain B, Crystal Structure Of The Bacterial Ribosome From Escherichia Coli In Complex With Ribosome Recycling Factor (Rrf). This File Contains The 50s Subunit Of The Second 70s Ribosome, With Rrf Bound. The Entire Crystal Structure Contains Two 70s Ribosomes And Is Described In Remark 400. </p> | |
5709 <p class=titleinfo> | |
5710 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/158429988?report=genbank&log$=nuclalign">pdb|2QBG|B</a> | |
5711 </p> | |
5712 </div> | |
5713 <div class=title> | |
5714 <p class=hittitle>Chain B, Crystal Structure Of The Bacterial Ribosome From Escherichia Coli In Complex With Gentamicin And Ribosome Recycling Factor (Rrf). This File Contains The 50s Subunit Of The First 70s Ribosome, With Gentamicin And Rrf Bound. The Entire Crystal Structure Contains Two 70s Ribosomes And Is Described In Remark 400. </p> | |
5715 <p class=titleinfo> | |
5716 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/158430041?report=genbank&log$=nuclalign">pdb|2QBI|B</a> | |
5717 </p> | |
5718 </div> | |
5719 <div class=title> | |
5720 <p class=hittitle>Chain B, Crystal Structure Of The Bacterial Ribosome From Escherichia Coli In Complex With Gentamicin And Ribosome Recycling Factor (Rrf). This File Contains The 50s Subunit Of The Second 70s Ribosome, With Gentamicin And Rrf Bound. The Entire Crystal Structure Contains Two 70s Ribosomes And Is Described In Remark 400. </p> | |
5721 <p class=titleinfo> | |
5722 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/158430094?report=genbank&log$=nuclalign">pdb|2QBK|B</a> | |
5723 </p> | |
5724 </div> | |
5725 <div class=title> | |
5726 <p class=hittitle>Chain B, Crystal Structure Of The Bacterial Ribosome From Escherichia Coli In Complex With Paromomycin And Ribosome Recycling Factor (Rrf). This File Contains The 50s Subunit Of The First 70s Ribosome, With Paromomycin And Rrf Bound. The Entire Crystal Structure Contains Two 70s Ribosomes And Is Described In Remark 400. </p> | |
5727 <p class=titleinfo> | |
5728 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/158431394?report=genbank&log$=nuclalign">pdb|2Z4L|B</a> | |
5729 </p> | |
5730 </div> | |
5731 <div class=title> | |
5732 <p class=hittitle>Chain B, Crystal Structure Of The Bacterial Ribosome From Escherichia Coli In Complex With Paromomycin And Ribosome Recycling Factor (Rrf). This File Contains The 50s Subunit Of The Second 70s Ribosome, With Paromomycin And Rrf Bound. The Entire Crystal Structure Contains Two 70s Ribosomes And Is Described In Remark 400. </p> | |
5733 <p class=titleinfo> | |
5734 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/158431447?report=genbank&log$=nuclalign">pdb|2Z4N|B</a> | |
5735 </p> | |
5736 </div> | |
5737 <div class=title> | |
5738 <p class=hittitle>Chain B, Structure Of Pdf Binding Helix In Complex With The Ribosome (Part 1 Of 4) </p> | |
5739 <p class=titleinfo> | |
5740 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/168988732?report=genbank&log$=nuclalign">pdb|2VHM|B</a> | |
5741 </p> | |
5742 </div> | |
5743 <div class=title> | |
5744 <p class=hittitle>Chain B, Structure Of Pdf Binding Helix In Complex With The Ribosome. (Part 2 Of 4) </p> | |
5745 <p class=titleinfo> | |
5746 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/168988763?report=genbank&log$=nuclalign">pdb|2VHN|B</a> | |
5747 </p> | |
5748 </div> | |
5749 <div class=title> | |
5750 <p class=hittitle>Chain B, 50s Subunit With Ef-G(Gdpnp) And Rrf Bound </p> | |
5751 <p class=titleinfo> | |
5752 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/169404603?report=genbank&log$=nuclalign">pdb|2RDO|B</a> | |
5753 </p> | |
5754 </div> | |
5755 <div class=title> | |
5756 <p class=hittitle>Chain B, Crystal Structure Of The Bacterial Ribosome From Escherichia Coli In Complex With Hygromycin B. This File Contains The 50s Subunit Of The First 70s Ribosome. The Entire Crystal Structure Contains Two 70s Ribosomes. </p> | |
5757 <p class=titleinfo> | |
5758 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/197107301?report=genbank&log$=nuclalign">pdb|3DF2|B</a> | |
5759 </p> | |
5760 </div> | |
5761 <div class=title> | |
5762 <p class=hittitle>Chain B, Crystal Structure Of The Bacterial Ribosome From Escherichia Coli In Complex With Hygromycin B. This File Contains The 50s Subunit Of The Second 70s Ribosome. The Entire Crystal Structure Contains Two 70s Ribosomes. </p> | |
5763 <p class=titleinfo> | |
5764 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/197107353?report=genbank&log$=nuclalign">pdb|3DF4|B</a> | |
5765 </p> | |
5766 </div> | |
5767 <div class=title> | |
5768 <p class=hittitle>Chain 8, Ribosome-Secy Complex. This Entry 3kcr Contains 50s Ribosomal Subnit. The 30s Ribosomal Subunit Can Be Found In Pdb Entry 3kc4 </p> | |
5769 <p class=titleinfo> | |
5770 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/290560329?report=genbank&log$=nuclalign">pdb|3KCR|8</a> | |
5771 </p> | |
5772 </div> | |
5773 <div class=title> | |
5774 <p class=hittitle>Chain A, Crystal Structure Of The E. Coli Ribosome Bound To Cem-101. This File Contains The 50s Subunit Of The First 70s Ribosome Bound To Cem-101. </p> | |
5775 <p class=titleinfo> | |
5776 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/308198729?report=genbank&log$=nuclalign">pdb|3ORB|A</a> | |
5777 </p> | |
5778 </div> | |
5779 <div class=title> | |
5780 <p class=hittitle>Chain A, Crystal Structure Of The E. Coli Ribosome Bound To Erythromycin. This File Contains The 50s Subunit Of The Second 70s Ribosome. </p> | |
5781 <p class=titleinfo> | |
5782 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/308388007?report=genbank&log$=nuclalign">pdb|3OFQ|A</a> | |
5783 </p> | |
5784 </div> | |
5785 <div class=title> | |
5786 <p class=hittitle>Chain A, Crystal Structure Of The E. Coli Ribosome Bound To Erythromycin. This File Contains The 50s Subunit Of The First 70s Ribosome With Erthromycin Bound. </p> | |
5787 <p class=titleinfo> | |
5788 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/308388038?report=genbank&log$=nuclalign">pdb|3OFR|A</a> | |
5789 </p> | |
5790 </div> | |
5791 <div class=title> | |
5792 <p class=hittitle>Chain A, Crystal Structure Of The E. Coli Ribosome Bound To Chloramphenicol. This File Contains The 50s Subunit Of The Second 70s Ribosome. </p> | |
5793 <p class=titleinfo> | |
5794 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/309320096?report=genbank&log$=nuclalign">pdb|3OFD|A</a> | |
5795 </p> | |
5796 </div> | |
5797 <div class=title> | |
5798 <p class=hittitle>Chain 8, Structure Of The Ribosome-Secye Complex In The Membrane Environment </p> | |
5799 <p class=titleinfo> | |
5800 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/329666014?report=genbank&log$=nuclalign">pdb|3J01|8</a> | |
5801 </p> | |
5802 </div> | |
5803 <div class=title> | |
5804 <p class=hittitle>Chain A, Allosteric Control Of The Ribosome By Small-Molecule Antibiotics </p> | |
5805 <p class=titleinfo> | |
5806 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/402550607?report=genbank&log$=nuclalign">pdb|4GAR|A</a> | |
5807 </p> | |
5808 </div> | |
5809 <div class=title> | |
5810 <p class=hittitle>Chain A, Allosteric Control Of The Ribosome By Small-Molecule Antibiotics </p> | |
5811 <p class=titleinfo> | |
5812 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/402550662?report=genbank&log$=nuclalign">pdb|4GAU|A</a> | |
5813 </p> | |
5814 </div> | |
5815 <div class=title> | |
5816 <p class=hittitle>Chain A, Control Of Ribosomal Subunit Rotation By Elongation Factor G </p> | |
5817 <p class=titleinfo> | |
5818 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/524934273?report=genbank&log$=nuclalign">pdb|4KIX|A</a> | |
5819 </p> | |
5820 </div> | |
5821 <div class=title> | |
5822 <p class=hittitle>Chain A, Control Of Ribosomal Subunit Rotation By Elongation Factor G </p> | |
5823 <p class=titleinfo> | |
5824 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/524934341?report=genbank&log$=nuclalign">pdb|4KIZ|A</a> | |
5825 </p> | |
5826 </div> | |
5827 <div class=title> | |
5828 <p class=hittitle>Chain A, Control Of Ribosomal Subunit Rotation By Elongation Factor G </p> | |
5829 <p class=titleinfo> | |
5830 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/524934404?report=genbank&log$=nuclalign">pdb|4KJ1|A</a> | |
5831 </p> | |
5832 </div> | |
5833 <div class=title> | |
5834 <p class=hittitle>Chain A, Control Of Ribosomal Subunit Rotation By Elongation Factor G </p> | |
5835 <p class=titleinfo> | |
5836 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/524934483?report=genbank&log$=nuclalign">pdb|4KJ3|A</a> | |
5837 </p> | |
5838 </div> | |
5839 <div class=title> | |
5840 <p class=hittitle>Chain A, Control Of Ribosomal Subunit Rotation By Elongation Factor G </p> | |
5841 <p class=titleinfo> | |
5842 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/524934551?report=genbank&log$=nuclalign">pdb|4KJ5|A</a> | |
5843 </p> | |
5844 </div> | |
5845 <div class=title> | |
5846 <p class=hittitle>Chain A, Control Of Ribosomal Subunit Rotation By Elongation Factor G </p> | |
5847 <p class=titleinfo> | |
5848 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/524934613?report=genbank&log$=nuclalign">pdb|4KJ7|A</a> | |
5849 </p> | |
5850 </div> | |
5851 <div class=title> | |
5852 <p class=hittitle>Chain A, Control Of Ribosomal Subunit Rotation By Elongation Factor G </p> | |
5853 <p class=titleinfo> | |
5854 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/524934678?report=genbank&log$=nuclalign">pdb|4KJ9|A</a> | |
5855 </p> | |
5856 </div> | |
5857 <div class=title> | |
5858 <p class=hittitle>Chain A, Control Of Ribosomal Subunit Rotation By Elongation Factor G </p> | |
5859 <p class=titleinfo> | |
5860 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/524934740?report=genbank&log$=nuclalign">pdb|4KJB|A</a> | |
5861 </p> | |
5862 </div> | |
5863 <div class=title> | |
5864 <p class=hittitle>Chain A, Visualization Of Two Trnas Trapped In Transit During Ef-g-mediated Translocation (50s Subunit) </p> | |
5865 <p class=titleinfo> | |
5866 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/564730763?report=genbank&log$=nuclalign">pdb|3J5O|A</a> | |
5867 </p> | |
5868 </div> | |
5869 <div class=title> | |
5870 <p class=hittitle>Chain A, Structure Of The E. Coli 50s Subunit With Ermbl Nascent Chain</p> | |
5871 <p class=titleinfo> | |
5872 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/597959819?report=genbank&log$=nuclalign">pdb|3J5L|A</a> | |
5873 </p> | |
5874 </div> | |
5875 </div> | |
5876 | |
5877 <div class=hotspot> | |
5878 <p class=range> | |
5879 <span class=range>Range 1: 961 to 976</span> | |
5880 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/83754062?report=genbank&log$=nuclalign&from=961&to=976">GenBank</a> | |
5881 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/83754062?report=graph&log$=nuclalign&from=961&to=976">Graphics</a> | |
5882 </p> | |
5883 | |
5884 <table class=hotspotstable> | |
5885 <tr> | |
5886 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
5887 </tr> | |
5888 <tr> | |
5889 <td>32.2 bits(16)</td> | |
5890 <td>0.0</td> | |
5891 <td>16/16(100%)</td> | |
5892 <td>0/16(0%)</td> | |
5893 <td>Plus/Plus</td> | |
5894 </tr> | |
5895 </table> | |
5896 | |
5897 <pre class=alignmentgraphic>Query 1 CGTCCGTCGTGAAGAG 16 | |
5898 |||||||||||||||| | |
5899 Subject 961 CGTCCGTCGTGAAGAG 976</pre> | |
5900 </div> | |
5901 <div class=hotspot> | |
5902 <p class=range> | |
5903 <span class=range>Range 2: 2591 to 2598</span> | |
5904 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/83754062?report=genbank&log$=nuclalign&from=2591&to=2598">GenBank</a> | |
5905 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/83754062?report=graph&log$=nuclalign&from=2591&to=2598">Graphics</a> | |
5906 </p> | |
5907 | |
5908 <table class=hotspotstable> | |
5909 <tr> | |
5910 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
5911 </tr> | |
5912 <tr> | |
5913 <td>16.4 bits(8)</td> | |
5914 <td>47.0</td> | |
5915 <td>8/8(100%)</td> | |
5916 <td>0/8(0%)</td> | |
5917 <td>Plus/Plus</td> | |
5918 </tr> | |
5919 </table> | |
5920 | |
5921 <pre class=alignmentgraphic>Query 5 CGTCGTGA 12 | |
5922 |||||||| | |
5923 Subject 2591 CGTCGTGA 2598</pre> | |
5924 </div> | |
5925 <div class=hotspot> | |
5926 <p class=range> | |
5927 <span class=range>Range 3: 839 to 845</span> | |
5928 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/83754062?report=genbank&log$=nuclalign&from=839&to=845">GenBank</a> | |
5929 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/83754062?report=graph&log$=nuclalign&from=839&to=845">Graphics</a> | |
5930 </p> | |
5931 | |
5932 <table class=hotspotstable> | |
5933 <tr> | |
5934 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
5935 </tr> | |
5936 <tr> | |
5937 <td>14.4 bits(7)</td> | |
5938 <td>185.8</td> | |
5939 <td>7/7(100%)</td> | |
5940 <td>0/7(0%)</td> | |
5941 <td>Plus/Plus</td> | |
5942 </tr> | |
5943 </table> | |
5944 | |
5945 <pre class=alignmentgraphic>Query 7 TCGTGAA 13 | |
5946 ||||||| | |
5947 Subject 839 TCGTGAA 845</pre> | |
5948 </div> | |
5949 <div class=hotspot> | |
5950 <p class=range> | |
5951 <span class=range>Range 4: 2027 to 2033</span> | |
5952 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/83754062?report=genbank&log$=nuclalign&from=2027&to=2033">GenBank</a> | |
5953 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/83754062?report=graph&log$=nuclalign&from=2027&to=2033">Graphics</a> | |
5954 </p> | |
5955 | |
5956 <table class=hotspotstable> | |
5957 <tr> | |
5958 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
5959 </tr> | |
5960 <tr> | |
5961 <td>14.4 bits(7)</td> | |
5962 <td>185.8</td> | |
5963 <td>7/7(100%)</td> | |
5964 <td>0/7(0%)</td> | |
5965 <td>Plus/Plus</td> | |
5966 </tr> | |
5967 </table> | |
5968 | |
5969 <pre class=alignmentgraphic>Query 9 GTGAAGA 15 | |
5970 ||||||| | |
5971 Subject 2027 GTGAAGA 2033</pre> | |
5972 </div> | |
5973 | |
5974 </div> | |
5975 | |
5976 <div class=alignment id=hit22> | |
5977 | |
5978 <div class=linkheader> | |
5979 <div class=right><a href="#description22">Descriptions</a></div> | |
5980 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/83754118?report=genbank&log$=nuclalign">GenBank</a> | |
5981 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/83754118?report=graph&log$=nuclalign">Graphics</a> | |
5982 </div> | |
5983 | |
5984 <div class=title> | |
5985 <p class=hittitle>Chain B, Crystal Structure Of The Bacterial Ribosome From Escherichia Coli At 3.5 A Resolution. This File Contains The 50s Subunit Of The Second 70s Ribosome. The Entire Crystal Structure Contains Two 70s Ribosomes And Is Described In Remark 400. </p> | |
5986 <p class=titleinfo> | |
5987 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/83754118?report=genbank&log$=nuclalign">pdb|2AWB|B</a> | |
5988 <span class=b>Length:</span> 2904 | |
5989 <span class=b>Number of Matches:</span> 4 | |
5990 </p> | |
5991 </div> | |
5992 | |
5993 <a class=showmoretitles onclick="toggle_visibility('moretitles22'); return false;" href=''> | |
5994 See 2 more title(s) | |
5995 </a> | |
5996 | |
5997 <div class=moretitles id=moretitles22 style="display: none"> | |
5998 <div class=title> | |
5999 <p class=hittitle>Chain B, Model Of E. Coli Srp Bound To 70s Rncs </p> | |
6000 <p class=titleinfo> | |
6001 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/126031747?report=genbank&log$=nuclalign">pdb|2J28|B</a> | |
6002 </p> | |
6003 </div> | |
6004 <div class=title> | |
6005 <p class=hittitle>Chain B, Crystal Structure Of The Bacterial Ribosome From Escherichia Coli In Complex With The Antibiotic Kasugamyin At 3.5a Resolution. This File Contains The 50s Subunit Of One 70s Ribosome. The Entire Crystal Structure Contains Two 70s Ribosomes And Is Described In Remark 400.</p> | |
6006 <p class=titleinfo> | |
6007 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/157880574?report=genbank&log$=nuclalign">pdb|1VS8|B</a> | |
6008 </p> | |
6009 </div> | |
6010 </div> | |
6011 | |
6012 <div class=hotspot> | |
6013 <p class=range> | |
6014 <span class=range>Range 1: 961 to 976</span> | |
6015 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/83754118?report=genbank&log$=nuclalign&from=961&to=976">GenBank</a> | |
6016 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/83754118?report=graph&log$=nuclalign&from=961&to=976">Graphics</a> | |
6017 </p> | |
6018 | |
6019 <table class=hotspotstable> | |
6020 <tr> | |
6021 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
6022 </tr> | |
6023 <tr> | |
6024 <td>32.2 bits(16)</td> | |
6025 <td>0.0</td> | |
6026 <td>16/16(100%)</td> | |
6027 <td>0/16(0%)</td> | |
6028 <td>Plus/Plus</td> | |
6029 </tr> | |
6030 </table> | |
6031 | |
6032 <pre class=alignmentgraphic>Query 1 CGTCCGTCGTGAAGAG 16 | |
6033 |||||||||||||||| | |
6034 Subject 961 CGTCCGTCGTGAAGAG 976</pre> | |
6035 </div> | |
6036 <div class=hotspot> | |
6037 <p class=range> | |
6038 <span class=range>Range 2: 2591 to 2598</span> | |
6039 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/83754118?report=genbank&log$=nuclalign&from=2591&to=2598">GenBank</a> | |
6040 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/83754118?report=graph&log$=nuclalign&from=2591&to=2598">Graphics</a> | |
6041 </p> | |
6042 | |
6043 <table class=hotspotstable> | |
6044 <tr> | |
6045 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
6046 </tr> | |
6047 <tr> | |
6048 <td>16.4 bits(8)</td> | |
6049 <td>47.0</td> | |
6050 <td>8/8(100%)</td> | |
6051 <td>0/8(0%)</td> | |
6052 <td>Plus/Plus</td> | |
6053 </tr> | |
6054 </table> | |
6055 | |
6056 <pre class=alignmentgraphic>Query 5 CGTCGTGA 12 | |
6057 |||||||| | |
6058 Subject 2591 CGTCGTGA 2598</pre> | |
6059 </div> | |
6060 <div class=hotspot> | |
6061 <p class=range> | |
6062 <span class=range>Range 3: 839 to 845</span> | |
6063 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/83754118?report=genbank&log$=nuclalign&from=839&to=845">GenBank</a> | |
6064 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/83754118?report=graph&log$=nuclalign&from=839&to=845">Graphics</a> | |
6065 </p> | |
6066 | |
6067 <table class=hotspotstable> | |
6068 <tr> | |
6069 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
6070 </tr> | |
6071 <tr> | |
6072 <td>14.4 bits(7)</td> | |
6073 <td>185.8</td> | |
6074 <td>7/7(100%)</td> | |
6075 <td>0/7(0%)</td> | |
6076 <td>Plus/Plus</td> | |
6077 </tr> | |
6078 </table> | |
6079 | |
6080 <pre class=alignmentgraphic>Query 7 TCGTGAA 13 | |
6081 ||||||| | |
6082 Subject 839 TCGTGAA 845</pre> | |
6083 </div> | |
6084 <div class=hotspot> | |
6085 <p class=range> | |
6086 <span class=range>Range 4: 2027 to 2033</span> | |
6087 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/83754118?report=genbank&log$=nuclalign&from=2027&to=2033">GenBank</a> | |
6088 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/83754118?report=graph&log$=nuclalign&from=2027&to=2033">Graphics</a> | |
6089 </p> | |
6090 | |
6091 <table class=hotspotstable> | |
6092 <tr> | |
6093 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
6094 </tr> | |
6095 <tr> | |
6096 <td>14.4 bits(7)</td> | |
6097 <td>185.8</td> | |
6098 <td>7/7(100%)</td> | |
6099 <td>0/7(0%)</td> | |
6100 <td>Plus/Plus</td> | |
6101 </tr> | |
6102 </table> | |
6103 | |
6104 <pre class=alignmentgraphic>Query 9 GTGAAGA 15 | |
6105 ||||||| | |
6106 Subject 2027 GTGAAGA 2033</pre> | |
6107 </div> | |
6108 | |
6109 </div> | |
6110 | |
6111 <div class=alignment id=hit23> | |
6112 | |
6113 <div class=linkheader> | |
6114 <div class=right><a href="#description23">Descriptions</a></div> | |
6115 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/157880571?report=genbank&log$=nuclalign">GenBank</a> | |
6116 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/157880571?report=graph&log$=nuclalign">Graphics</a> | |
6117 </div> | |
6118 | |
6119 <div class=title> | |
6120 <p class=hittitle>Chain B, Crystal Structure Of The Bacterial Ribosome From Escherichia Coli In Complex With The Antibiotic Kasugamyin At 3.5a Resolution. This File Contains The 50s Subunit Of One 70s Ribosome. The Entire Crystal Structure Contains Two 70s Ribosomes And Is Described In Remark 400. </p> | |
6121 <p class=titleinfo> | |
6122 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/157880571?report=genbank&log$=nuclalign">pdb|1VS6|B</a> | |
6123 <span class=b>Length:</span> 2904 | |
6124 <span class=b>Number of Matches:</span> 4 | |
6125 </p> | |
6126 </div> | |
6127 | |
6128 <a class=showmoretitles onclick="toggle_visibility('moretitles23'); return false;" href=''> | |
6129 See 6 more title(s) | |
6130 </a> | |
6131 | |
6132 <div class=moretitles id=moretitles23 style="display: none"> | |
6133 <div class=title> | |
6134 <p class=hittitle>Chain B, The Hsp15 Protein Fitted Into The Low Resolution Cryo-Em Map 50s.Nc-Trna.Hsp15 Complex </p> | |
6135 <p class=titleinfo> | |
6136 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/209870354?report=genbank&log$=nuclalign">pdb|3BBX|B</a> | |
6137 </p> | |
6138 </div> | |
6139 <div class=title> | |
6140 <p class=hittitle>Chain B, Coordinates Of 16s And 23s Rrnas Fitted Into The Cryo-Em Map Of Ef-G-Bound Translocation Complex </p> | |
6141 <p class=titleinfo> | |
6142 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/222447037?report=genbank&log$=nuclalign">pdb|3DG0|B</a> | |
6143 </p> | |
6144 </div> | |
6145 <div class=title> | |
6146 <p class=hittitle>Chain B, Coordinates Of 16s And 23s Rrnas Fitted Into The Cryo-Em Map Of A Pretranslocation Complex </p> | |
6147 <p class=titleinfo> | |
6148 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/222447039?report=genbank&log$=nuclalign">pdb|3DG2|B</a> | |
6149 </p> | |
6150 </div> | |
6151 <div class=title> | |
6152 <p class=hittitle>Chain B, Coordinates Of 16s And 23s Rrnas Fitted Into The Cryo-Em Map Of Rf1-Bound Termination Complex </p> | |
6153 <p class=titleinfo> | |
6154 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/222447041?report=genbank&log$=nuclalign">pdb|3DG4|B</a> | |
6155 </p> | |
6156 </div> | |
6157 <div class=title> | |
6158 <p class=hittitle>Chain B, Coordinates Of 16s And 23s Rrnas Fitted Into The Cryo-Em Map Of Rf3-Bound Termination Complex </p> | |
6159 <p class=titleinfo> | |
6160 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/222447043?report=genbank&log$=nuclalign">pdb|3DG5|B</a> | |
6161 </p> | |
6162 </div> | |
6163 <div class=title> | |
6164 <p class=hittitle>Chain A, Crystal Structure Of The E. Coli Ribosome Bound To Cem-101. This File Contains The 50s Subunit Of The Second 70s Ribosome.</p> | |
6165 <p class=titleinfo> | |
6166 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/308198355?report=genbank&log$=nuclalign">pdb|1VT2|A</a> | |
6167 </p> | |
6168 </div> | |
6169 </div> | |
6170 | |
6171 <div class=hotspot> | |
6172 <p class=range> | |
6173 <span class=range>Range 1: 961 to 976</span> | |
6174 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/157880571?report=genbank&log$=nuclalign&from=961&to=976">GenBank</a> | |
6175 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/157880571?report=graph&log$=nuclalign&from=961&to=976">Graphics</a> | |
6176 </p> | |
6177 | |
6178 <table class=hotspotstable> | |
6179 <tr> | |
6180 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
6181 </tr> | |
6182 <tr> | |
6183 <td>32.2 bits(16)</td> | |
6184 <td>0.0</td> | |
6185 <td>16/16(100%)</td> | |
6186 <td>0/16(0%)</td> | |
6187 <td>Plus/Plus</td> | |
6188 </tr> | |
6189 </table> | |
6190 | |
6191 <pre class=alignmentgraphic>Query 1 CGTCCGTCGTGAAGAG 16 | |
6192 |||||||||||||||| | |
6193 Subject 961 CGTCCGTCGTGAAGAG 976</pre> | |
6194 </div> | |
6195 <div class=hotspot> | |
6196 <p class=range> | |
6197 <span class=range>Range 2: 2591 to 2598</span> | |
6198 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/157880571?report=genbank&log$=nuclalign&from=2591&to=2598">GenBank</a> | |
6199 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/157880571?report=graph&log$=nuclalign&from=2591&to=2598">Graphics</a> | |
6200 </p> | |
6201 | |
6202 <table class=hotspotstable> | |
6203 <tr> | |
6204 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
6205 </tr> | |
6206 <tr> | |
6207 <td>16.4 bits(8)</td> | |
6208 <td>47.0</td> | |
6209 <td>8/8(100%)</td> | |
6210 <td>0/8(0%)</td> | |
6211 <td>Plus/Plus</td> | |
6212 </tr> | |
6213 </table> | |
6214 | |
6215 <pre class=alignmentgraphic>Query 5 CGTCGTGA 12 | |
6216 |||||||| | |
6217 Subject 2591 CGTCGTGA 2598</pre> | |
6218 </div> | |
6219 <div class=hotspot> | |
6220 <p class=range> | |
6221 <span class=range>Range 3: 839 to 845</span> | |
6222 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/157880571?report=genbank&log$=nuclalign&from=839&to=845">GenBank</a> | |
6223 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/157880571?report=graph&log$=nuclalign&from=839&to=845">Graphics</a> | |
6224 </p> | |
6225 | |
6226 <table class=hotspotstable> | |
6227 <tr> | |
6228 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
6229 </tr> | |
6230 <tr> | |
6231 <td>14.4 bits(7)</td> | |
6232 <td>185.8</td> | |
6233 <td>7/7(100%)</td> | |
6234 <td>0/7(0%)</td> | |
6235 <td>Plus/Plus</td> | |
6236 </tr> | |
6237 </table> | |
6238 | |
6239 <pre class=alignmentgraphic>Query 7 TCGTGAA 13 | |
6240 ||||||| | |
6241 Subject 839 TCGTGAA 845</pre> | |
6242 </div> | |
6243 <div class=hotspot> | |
6244 <p class=range> | |
6245 <span class=range>Range 4: 2027 to 2033</span> | |
6246 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/157880571?report=genbank&log$=nuclalign&from=2027&to=2033">GenBank</a> | |
6247 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/157880571?report=graph&log$=nuclalign&from=2027&to=2033">Graphics</a> | |
6248 </p> | |
6249 | |
6250 <table class=hotspotstable> | |
6251 <tr> | |
6252 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
6253 </tr> | |
6254 <tr> | |
6255 <td>14.4 bits(7)</td> | |
6256 <td>185.8</td> | |
6257 <td>7/7(100%)</td> | |
6258 <td>0/7(0%)</td> | |
6259 <td>Plus/Plus</td> | |
6260 </tr> | |
6261 </table> | |
6262 | |
6263 <pre class=alignmentgraphic>Query 9 GTGAAGA 15 | |
6264 ||||||| | |
6265 Subject 2027 GTGAAGA 2033</pre> | |
6266 </div> | |
6267 | |
6268 </div> | |
6269 | |
6270 <div class=alignment id=hit24> | |
6271 | |
6272 <div class=linkheader> | |
6273 <div class=right><a href="#description24">Descriptions</a></div> | |
6274 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/33357900?report=genbank&log$=nuclalign">GenBank</a> | |
6275 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/33357900?report=graph&log$=nuclalign">Graphics</a> | |
6276 </div> | |
6277 | |
6278 <div class=title> | |
6279 <p class=hittitle>Chain 0, Real Space Refined Coordinates Of The 50s Subunit Fitted Into The Low Resolution Cryo-Em Map Of The Ef-G.Gtp State Of E. Coli 70s Ribosome </p> | |
6280 <p class=titleinfo> | |
6281 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/33357900?report=genbank&log$=nuclalign">pdb|1P85|0</a> | |
6282 <span class=b>Length:</span> 2904 | |
6283 <span class=b>Number of Matches:</span> 4 | |
6284 </p> | |
6285 </div> | |
6286 | |
6287 <a class=showmoretitles onclick="toggle_visibility('moretitles24'); return false;" href=''> | |
6288 See 1 more title(s) | |
6289 </a> | |
6290 | |
6291 <div class=moretitles id=moretitles24 style="display: none"> | |
6292 <div class=title> | |
6293 <p class=hittitle>Chain 0, Real Space Refined Coordinates Of The 50s Subunit Fitted Into The Low Resolution Cryo-Em Map Of The Initiation-Like State Of E. Coli 70s Ribosome</p> | |
6294 <p class=titleinfo> | |
6295 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/33357927?report=genbank&log$=nuclalign">pdb|1P86|0</a> | |
6296 </p> | |
6297 </div> | |
6298 </div> | |
6299 | |
6300 <div class=hotspot> | |
6301 <p class=range> | |
6302 <span class=range>Range 1: 961 to 976</span> | |
6303 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/33357900?report=genbank&log$=nuclalign&from=961&to=976">GenBank</a> | |
6304 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/33357900?report=graph&log$=nuclalign&from=961&to=976">Graphics</a> | |
6305 </p> | |
6306 | |
6307 <table class=hotspotstable> | |
6308 <tr> | |
6309 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
6310 </tr> | |
6311 <tr> | |
6312 <td>32.2 bits(16)</td> | |
6313 <td>0.0</td> | |
6314 <td>16/16(100%)</td> | |
6315 <td>0/16(0%)</td> | |
6316 <td>Plus/Plus</td> | |
6317 </tr> | |
6318 </table> | |
6319 | |
6320 <pre class=alignmentgraphic>Query 1 CGTCCGTCGTGAAGAG 16 | |
6321 |||||||||||||||| | |
6322 Subject 961 CGTCCGTCGTGAAGAG 976</pre> | |
6323 </div> | |
6324 <div class=hotspot> | |
6325 <p class=range> | |
6326 <span class=range>Range 2: 2591 to 2598</span> | |
6327 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/33357900?report=genbank&log$=nuclalign&from=2591&to=2598">GenBank</a> | |
6328 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/33357900?report=graph&log$=nuclalign&from=2591&to=2598">Graphics</a> | |
6329 </p> | |
6330 | |
6331 <table class=hotspotstable> | |
6332 <tr> | |
6333 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
6334 </tr> | |
6335 <tr> | |
6336 <td>16.4 bits(8)</td> | |
6337 <td>47.0</td> | |
6338 <td>8/8(100%)</td> | |
6339 <td>0/8(0%)</td> | |
6340 <td>Plus/Plus</td> | |
6341 </tr> | |
6342 </table> | |
6343 | |
6344 <pre class=alignmentgraphic>Query 5 CGTCGTGA 12 | |
6345 |||||||| | |
6346 Subject 2591 CGTCGTGA 2598</pre> | |
6347 </div> | |
6348 <div class=hotspot> | |
6349 <p class=range> | |
6350 <span class=range>Range 3: 839 to 845</span> | |
6351 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/33357900?report=genbank&log$=nuclalign&from=839&to=845">GenBank</a> | |
6352 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/33357900?report=graph&log$=nuclalign&from=839&to=845">Graphics</a> | |
6353 </p> | |
6354 | |
6355 <table class=hotspotstable> | |
6356 <tr> | |
6357 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
6358 </tr> | |
6359 <tr> | |
6360 <td>14.4 bits(7)</td> | |
6361 <td>185.8</td> | |
6362 <td>7/7(100%)</td> | |
6363 <td>0/7(0%)</td> | |
6364 <td>Plus/Plus</td> | |
6365 </tr> | |
6366 </table> | |
6367 | |
6368 <pre class=alignmentgraphic>Query 7 TCGTGAA 13 | |
6369 ||||||| | |
6370 Subject 839 TCGTGAA 845</pre> | |
6371 </div> | |
6372 <div class=hotspot> | |
6373 <p class=range> | |
6374 <span class=range>Range 4: 2027 to 2033</span> | |
6375 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/33357900?report=genbank&log$=nuclalign&from=2027&to=2033">GenBank</a> | |
6376 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/33357900?report=graph&log$=nuclalign&from=2027&to=2033">Graphics</a> | |
6377 </p> | |
6378 | |
6379 <table class=hotspotstable> | |
6380 <tr> | |
6381 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
6382 </tr> | |
6383 <tr> | |
6384 <td>14.4 bits(7)</td> | |
6385 <td>185.8</td> | |
6386 <td>7/7(100%)</td> | |
6387 <td>0/7(0%)</td> | |
6388 <td>Plus/Plus</td> | |
6389 </tr> | |
6390 </table> | |
6391 | |
6392 <pre class=alignmentgraphic>Query 9 GTGAAGA 15 | |
6393 ||||||| | |
6394 Subject 2027 GTGAAGA 2033</pre> | |
6395 </div> | |
6396 | |
6397 </div> | |
6398 | |
6399 <div class=alignment id=hit25> | |
6400 | |
6401 <div class=linkheader> | |
6402 <div class=right><a href="#description25">Descriptions</a></div> | |
6403 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/7767146?report=genbank&log$=nuclalign">GenBank</a> | |
6404 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/7767146?report=graph&log$=nuclalign">Graphics</a> | |
6405 </div> | |
6406 | |
6407 <div class=title> | |
6408 <p class=hittitle>Chain B, 23s Rrna Structure Fitted To A Cryo-Electron Microscopic Map At 7.5 Angstroms Resolution</p> | |
6409 <p class=titleinfo> | |
6410 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/7767146?report=genbank&log$=nuclalign">pdb|1C2W|B</a> | |
6411 <span class=b>Length:</span> 2904 | |
6412 <span class=b>Number of Matches:</span> 2 | |
6413 </p> | |
6414 </div> | |
6415 | |
6416 | |
6417 <div class=hotspot> | |
6418 <p class=range> | |
6419 <span class=range>Range 1: 961 to 973</span> | |
6420 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/7767146?report=genbank&log$=nuclalign&from=961&to=973">GenBank</a> | |
6421 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/7767146?report=graph&log$=nuclalign&from=961&to=973">Graphics</a> | |
6422 </p> | |
6423 | |
6424 <table class=hotspotstable> | |
6425 <tr> | |
6426 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
6427 </tr> | |
6428 <tr> | |
6429 <td>26.3 bits(13)</td> | |
6430 <td>0.0</td> | |
6431 <td>13/13(100%)</td> | |
6432 <td>0/13(0%)</td> | |
6433 <td>Plus/Plus</td> | |
6434 </tr> | |
6435 </table> | |
6436 | |
6437 <pre class=alignmentgraphic>Query 1 CGTCCGTCGTGAA 13 | |
6438 ||||||||||||| | |
6439 Subject 961 CGTCCGTCGTGAA 973</pre> | |
6440 </div> | |
6441 <div class=hotspot> | |
6442 <p class=range> | |
6443 <span class=range>Range 2: 839 to 845</span> | |
6444 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/7767146?report=genbank&log$=nuclalign&from=839&to=845">GenBank</a> | |
6445 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/7767146?report=graph&log$=nuclalign&from=839&to=845">Graphics</a> | |
6446 </p> | |
6447 | |
6448 <table class=hotspotstable> | |
6449 <tr> | |
6450 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
6451 </tr> | |
6452 <tr> | |
6453 <td>14.4 bits(7)</td> | |
6454 <td>185.8</td> | |
6455 <td>7/7(100%)</td> | |
6456 <td>0/7(0%)</td> | |
6457 <td>Plus/Plus</td> | |
6458 </tr> | |
6459 </table> | |
6460 | |
6461 <pre class=alignmentgraphic>Query 7 TCGTGAA 13 | |
6462 ||||||| | |
6463 Subject 839 TCGTGAA 845</pre> | |
6464 </div> | |
6465 | |
6466 </div> | |
6467 | |
6468 <div class=alignment id=hit30> | |
6469 | |
6470 <div class=linkheader> | |
6471 <div class=right><a href="#description30">Descriptions</a></div> | |
6472 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/551701574?report=genbank&log$=nuclalign">GenBank</a> | |
6473 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/551701574?report=graph&log$=nuclalign">Graphics</a> | |
6474 </div> | |
6475 | |
6476 <div class=title> | |
6477 <p class=hittitle>Chain 1, Structure Of The Methanococcus Jannaschii Ribosome-secyebeta Channel Complex (50s Ribosomal Subunit)</p> | |
6478 <p class=titleinfo> | |
6479 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/551701574?report=genbank&log$=nuclalign">pdb|3J44|1</a> | |
6480 <span class=b>Length:</span> 3049 | |
6481 <span class=b>Number of Matches:</span> 2 | |
6482 </p> | |
6483 </div> | |
6484 | |
6485 | |
6486 <div class=hotspot> | |
6487 <p class=range> | |
6488 <span class=range>Range 1: 651 to 663</span> | |
6489 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/551701574?report=genbank&log$=nuclalign&from=651&to=663">GenBank</a> | |
6490 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/551701574?report=graph&log$=nuclalign&from=651&to=663">Graphics</a> | |
6491 </p> | |
6492 | |
6493 <table class=hotspotstable> | |
6494 <tr> | |
6495 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
6496 </tr> | |
6497 <tr> | |
6498 <td>18.3 bits(9)</td> | |
6499 <td>11.9</td> | |
6500 <td>12/13(92%)</td> | |
6501 <td>0/13(0%)</td> | |
6502 <td>Plus/Plus</td> | |
6503 </tr> | |
6504 </table> | |
6505 | |
6506 <pre class=alignmentgraphic>Query 1 CGTCCGTCGTGAA 13 | |
6507 |||||||| |||| | |
6508 Subject 651 CGTCCGTCTTGAA 663</pre> | |
6509 </div> | |
6510 <div class=hotspot> | |
6511 <p class=range> | |
6512 <span class=range>Range 2: 2705 to 2713</span> | |
6513 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/551701574?report=genbank&log$=nuclalign&from=2705&to=2713">GenBank</a> | |
6514 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/551701574?report=graph&log$=nuclalign&from=2705&to=2713">Graphics</a> | |
6515 </p> | |
6516 | |
6517 <table class=hotspotstable> | |
6518 <tr> | |
6519 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
6520 </tr> | |
6521 <tr> | |
6522 <td>18.3 bits(9)</td> | |
6523 <td>11.9</td> | |
6524 <td>9/9(100%)</td> | |
6525 <td>0/9(0%)</td> | |
6526 <td>Plus/Plus</td> | |
6527 </tr> | |
6528 </table> | |
6529 | |
6530 <pre class=alignmentgraphic>Query 4 CCGTCGTGA 12 | |
6531 ||||||||| | |
6532 Subject 2705 CCGTCGTGA 2713</pre> | |
6533 </div> | |
6534 | |
6535 </div> | |
6536 | |
6537 <div class=alignment id=hit35> | |
6538 | |
6539 <div class=linkheader> | |
6540 <div class=right><a href="#description35">Descriptions</a></div> | |
6541 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/428697991?report=genbank&log$=nuclalign">GenBank</a> | |
6542 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/428697991?report=graph&log$=nuclalign">Graphics</a> | |
6543 </div> | |
6544 | |
6545 <div class=title> | |
6546 <p class=hittitle>Chain 1, Promiscuous Behavior Of Proteins In Archaeal Ribosomes Revealed By Cryo-em: Implications For Evolution Of Eukaryotic Ribosomes (50s Ribosomal Rna)</p> | |
6547 <p class=titleinfo> | |
6548 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/428697991?report=genbank&log$=nuclalign">pdb|3J2L|1</a> | |
6549 <span class=b>Length:</span> 3049 | |
6550 <span class=b>Number of Matches:</span> 2 | |
6551 </p> | |
6552 </div> | |
6553 | |
6554 | |
6555 <div class=hotspot> | |
6556 <p class=range> | |
6557 <span class=range>Range 1: 651 to 663</span> | |
6558 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/428697991?report=genbank&log$=nuclalign&from=651&to=663">GenBank</a> | |
6559 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/428697991?report=graph&log$=nuclalign&from=651&to=663">Graphics</a> | |
6560 </p> | |
6561 | |
6562 <table class=hotspotstable> | |
6563 <tr> | |
6564 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
6565 </tr> | |
6566 <tr> | |
6567 <td>18.3 bits(9)</td> | |
6568 <td>11.9</td> | |
6569 <td>12/13(92%)</td> | |
6570 <td>0/13(0%)</td> | |
6571 <td>Plus/Plus</td> | |
6572 </tr> | |
6573 </table> | |
6574 | |
6575 <pre class=alignmentgraphic>Query 1 CGTCCGTCGTGAA 13 | |
6576 |||||||| |||| | |
6577 Subject 651 CGTCCGTCTTGAA 663</pre> | |
6578 </div> | |
6579 <div class=hotspot> | |
6580 <p class=range> | |
6581 <span class=range>Range 2: 2705 to 2713</span> | |
6582 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/428697991?report=genbank&log$=nuclalign&from=2705&to=2713">GenBank</a> | |
6583 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/428697991?report=graph&log$=nuclalign&from=2705&to=2713">Graphics</a> | |
6584 </p> | |
6585 | |
6586 <table class=hotspotstable> | |
6587 <tr> | |
6588 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
6589 </tr> | |
6590 <tr> | |
6591 <td>18.3 bits(9)</td> | |
6592 <td>11.9</td> | |
6593 <td>9/9(100%)</td> | |
6594 <td>0/9(0%)</td> | |
6595 <td>Plus/Plus</td> | |
6596 </tr> | |
6597 </table> | |
6598 | |
6599 <pre class=alignmentgraphic>Query 4 CCGTCGTGA 12 | |
6600 ||||||||| | |
6601 Subject 2705 CCGTCGTGA 2713</pre> | |
6602 </div> | |
6603 | |
6604 </div> | |
6605 | |
6606 <div class=alignment id=hit26> | |
6607 | |
6608 <div class=linkheader> | |
6609 <div class=right><a href="#description26">Descriptions</a></div> | |
6610 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/582044940?report=genbank&log$=nuclalign">GenBank</a> | |
6611 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/582044940?report=graph&log$=nuclalign">Graphics</a> | |
6612 </div> | |
6613 | |
6614 <div class=title> | |
6615 <p class=hittitle>Chain a, Model Of The Large Subunit Rna Based On A 5.5 A Cryo-em Map Of Triticum Aestivum Translating 80s Ribosome</p> | |
6616 <p class=titleinfo> | |
6617 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/582044940?report=genbank&log$=nuclalign">pdb|3J62|AA</a> | |
6618 <span class=b>Length:</span> 3391 | |
6619 <span class=b>Number of Matches:</span> 5 | |
6620 </p> | |
6621 </div> | |
6622 | |
6623 | |
6624 <div class=hotspot> | |
6625 <p class=range> | |
6626 <span class=range>Range 1: 2961 to 2969</span> | |
6627 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/582044940?report=genbank&log$=nuclalign&from=2961&to=2969">GenBank</a> | |
6628 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/582044940?report=graph&log$=nuclalign&from=2961&to=2969">Graphics</a> | |
6629 </p> | |
6630 | |
6631 <table class=hotspotstable> | |
6632 <tr> | |
6633 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
6634 </tr> | |
6635 <tr> | |
6636 <td>18.3 bits(9)</td> | |
6637 <td>11.9</td> | |
6638 <td>9/9(100%)</td> | |
6639 <td>0/9(0%)</td> | |
6640 <td>Plus/Plus</td> | |
6641 </tr> | |
6642 </table> | |
6643 | |
6644 <pre class=alignmentgraphic>Query 4 CCGTCGTGA 12 | |
6645 ||||||||| | |
6646 Subject 2961 CCGTCGTGA 2969</pre> | |
6647 </div> | |
6648 <div class=hotspot> | |
6649 <p class=range> | |
6650 <span class=range>Range 2: 177 to 170</span> | |
6651 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/582044940?report=genbank&log$=nuclalign&from=177&to=170">GenBank</a> | |
6652 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/582044940?report=graph&log$=nuclalign&from=177&to=170">Graphics</a> | |
6653 </p> | |
6654 | |
6655 <table class=hotspotstable> | |
6656 <tr> | |
6657 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
6658 </tr> | |
6659 <tr> | |
6660 <td>16.4 bits(8)</td> | |
6661 <td>47.0</td> | |
6662 <td>8/8(100%)</td> | |
6663 <td>0/8(0%)</td> | |
6664 <td>Plus/Minus</td> | |
6665 </tr> | |
6666 </table> | |
6667 | |
6668 <pre class=alignmentgraphic>Query 2 GTCCGTCG 9 | |
6669 |||||||| | |
6670 Subject 177 GTCCGTCG 170</pre> | |
6671 </div> | |
6672 <div class=hotspot> | |
6673 <p class=range> | |
6674 <span class=range>Range 3: 553 to 559</span> | |
6675 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/582044940?report=genbank&log$=nuclalign&from=553&to=559">GenBank</a> | |
6676 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/582044940?report=graph&log$=nuclalign&from=553&to=559">Graphics</a> | |
6677 </p> | |
6678 | |
6679 <table class=hotspotstable> | |
6680 <tr> | |
6681 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
6682 </tr> | |
6683 <tr> | |
6684 <td>14.4 bits(7)</td> | |
6685 <td>185.8</td> | |
6686 <td>7/7(100%)</td> | |
6687 <td>0/7(0%)</td> | |
6688 <td>Plus/Plus</td> | |
6689 </tr> | |
6690 </table> | |
6691 | |
6692 <pre class=alignmentgraphic>Query 4 CCGTCGT 10 | |
6693 ||||||| | |
6694 Subject 553 CCGTCGT 559</pre> | |
6695 </div> | |
6696 <div class=hotspot> | |
6697 <p class=range> | |
6698 <span class=range>Range 4: 2048 to 2042</span> | |
6699 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/582044940?report=genbank&log$=nuclalign&from=2048&to=2042">GenBank</a> | |
6700 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/582044940?report=graph&log$=nuclalign&from=2048&to=2042">Graphics</a> | |
6701 </p> | |
6702 | |
6703 <table class=hotspotstable> | |
6704 <tr> | |
6705 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
6706 </tr> | |
6707 <tr> | |
6708 <td>14.4 bits(7)</td> | |
6709 <td>185.8</td> | |
6710 <td>7/7(100%)</td> | |
6711 <td>0/7(0%)</td> | |
6712 <td>Plus/Minus</td> | |
6713 </tr> | |
6714 </table> | |
6715 | |
6716 <pre class=alignmentgraphic>Query 2 GTCCGTC 8 | |
6717 ||||||| | |
6718 Subject 2048 GTCCGTC 2042</pre> | |
6719 </div> | |
6720 <div class=hotspot> | |
6721 <p class=range> | |
6722 <span class=range>Range 5: 2211 to 2217</span> | |
6723 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/582044940?report=genbank&log$=nuclalign&from=2211&to=2217">GenBank</a> | |
6724 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/582044940?report=graph&log$=nuclalign&from=2211&to=2217">Graphics</a> | |
6725 </p> | |
6726 | |
6727 <table class=hotspotstable> | |
6728 <tr> | |
6729 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
6730 </tr> | |
6731 <tr> | |
6732 <td>14.4 bits(7)</td> | |
6733 <td>185.8</td> | |
6734 <td>7/7(100%)</td> | |
6735 <td>0/7(0%)</td> | |
6736 <td>Plus/Plus</td> | |
6737 </tr> | |
6738 </table> | |
6739 | |
6740 <pre class=alignmentgraphic>Query 9 GTGAAGA 15 | |
6741 ||||||| | |
6742 Subject 2211 GTGAAGA 2217</pre> | |
6743 </div> | |
6744 | |
6745 </div> | |
6746 | |
6747 <div class=alignment id=hit27> | |
6748 | |
6749 <div class=linkheader> | |
6750 <div class=right><a href="#description27">Descriptions</a></div> | |
6751 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/567755268?report=genbank&log$=nuclalign">GenBank</a> | |
6752 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/567755268?report=graph&log$=nuclalign">Graphics</a> | |
6753 </div> | |
6754 | |
6755 <div class=title> | |
6756 <p class=hittitle>Chain A, 39s Large Subunit Of The Porcine Mitochondrial Ribosome</p> | |
6757 <p class=titleinfo> | |
6758 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/567755268?report=genbank&log$=nuclalign">pdb|4CE4|A</a> | |
6759 <span class=b>Length:</span> 1570 | |
6760 <span class=b>Number of Matches:</span> 1 | |
6761 </p> | |
6762 </div> | |
6763 | |
6764 | |
6765 <div class=hotspot> | |
6766 <p class=range> | |
6767 <span class=range>Range 1: 1020 to 1028</span> | |
6768 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/567755268?report=genbank&log$=nuclalign&from=1020&to=1028">GenBank</a> | |
6769 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/567755268?report=graph&log$=nuclalign&from=1020&to=1028">Graphics</a> | |
6770 </p> | |
6771 | |
6772 <table class=hotspotstable> | |
6773 <tr> | |
6774 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
6775 </tr> | |
6776 <tr> | |
6777 <td>18.3 bits(9)</td> | |
6778 <td>11.9</td> | |
6779 <td>9/9(100%)</td> | |
6780 <td>0/9(0%)</td> | |
6781 <td>Plus/Plus</td> | |
6782 </tr> | |
6783 </table> | |
6784 | |
6785 <pre class=alignmentgraphic>Query 8 CGTGAAGAG 16 | |
6786 ||||||||| | |
6787 Subject 1020 CGTGAAGAG 1028</pre> | |
6788 </div> | |
6789 | |
6790 </div> | |
6791 | |
6792 <div class=alignment id=hit28> | |
6793 | |
6794 <div class=linkheader> | |
6795 <div class=right><a href="#description28">Descriptions</a></div> | |
6796 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/558704783?report=genbank&log$=nuclalign">GenBank</a> | |
6797 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/558704783?report=graph&log$=nuclalign">Graphics</a> | |
6798 </div> | |
6799 | |
6800 <div class=title> | |
6801 <p class=hittitle>Chain 5, Cryo-em Reconstruction Of The 80s-eif5b-met-itrnamet Eukaryotic Translation Initiation Complex</p> | |
6802 <p class=titleinfo> | |
6803 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/558704783?report=genbank&log$=nuclalign">pdb|4BYP|5</a> | |
6804 <span class=b>Length:</span> 3396 | |
6805 <span class=b>Number of Matches:</span> 5 | |
6806 </p> | |
6807 </div> | |
6808 | |
6809 | |
6810 <div class=hotspot> | |
6811 <p class=range> | |
6812 <span class=range>Range 1: 2959 to 2967</span> | |
6813 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/558704783?report=genbank&log$=nuclalign&from=2959&to=2967">GenBank</a> | |
6814 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/558704783?report=graph&log$=nuclalign&from=2959&to=2967">Graphics</a> | |
6815 </p> | |
6816 | |
6817 <table class=hotspotstable> | |
6818 <tr> | |
6819 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
6820 </tr> | |
6821 <tr> | |
6822 <td>18.3 bits(9)</td> | |
6823 <td>11.9</td> | |
6824 <td>9/9(100%)</td> | |
6825 <td>0/9(0%)</td> | |
6826 <td>Plus/Plus</td> | |
6827 </tr> | |
6828 </table> | |
6829 | |
6830 <pre class=alignmentgraphic>Query 4 CCGTCGTGA 12 | |
6831 ||||||||| | |
6832 Subject 2959 CCGTCGTGA 2967</pre> | |
6833 </div> | |
6834 <div class=hotspot> | |
6835 <p class=range> | |
6836 <span class=range>Range 2: 1634 to 1627</span> | |
6837 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/558704783?report=genbank&log$=nuclalign&from=1634&to=1627">GenBank</a> | |
6838 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/558704783?report=graph&log$=nuclalign&from=1634&to=1627">Graphics</a> | |
6839 </p> | |
6840 | |
6841 <table class=hotspotstable> | |
6842 <tr> | |
6843 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
6844 </tr> | |
6845 <tr> | |
6846 <td>16.4 bits(8)</td> | |
6847 <td>47.0</td> | |
6848 <td>8/8(100%)</td> | |
6849 <td>0/8(0%)</td> | |
6850 <td>Plus/Minus</td> | |
6851 </tr> | |
6852 </table> | |
6853 | |
6854 <pre class=alignmentgraphic>Query 8 CGTGAAGA 15 | |
6855 |||||||| | |
6856 Subject 1634 CGTGAAGA 1627</pre> | |
6857 </div> | |
6858 <div class=hotspot> | |
6859 <p class=range> | |
6860 <span class=range>Range 3: 2435 to 2442</span> | |
6861 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/558704783?report=genbank&log$=nuclalign&from=2435&to=2442">GenBank</a> | |
6862 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/558704783?report=graph&log$=nuclalign&from=2435&to=2442">Graphics</a> | |
6863 </p> | |
6864 | |
6865 <table class=hotspotstable> | |
6866 <tr> | |
6867 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
6868 </tr> | |
6869 <tr> | |
6870 <td>16.4 bits(8)</td> | |
6871 <td>47.0</td> | |
6872 <td>8/8(100%)</td> | |
6873 <td>0/8(0%)</td> | |
6874 <td>Plus/Plus</td> | |
6875 </tr> | |
6876 </table> | |
6877 | |
6878 <pre class=alignmentgraphic>Query 9 GTGAAGAG 16 | |
6879 |||||||| | |
6880 Subject 2435 GTGAAGAG 2442</pre> | |
6881 </div> | |
6882 <div class=hotspot> | |
6883 <p class=range> | |
6884 <span class=range>Range 4: 1100 to 1106</span> | |
6885 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/558704783?report=genbank&log$=nuclalign&from=1100&to=1106">GenBank</a> | |
6886 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/558704783?report=graph&log$=nuclalign&from=1100&to=1106">Graphics</a> | |
6887 </p> | |
6888 | |
6889 <table class=hotspotstable> | |
6890 <tr> | |
6891 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
6892 </tr> | |
6893 <tr> | |
6894 <td>14.4 bits(7)</td> | |
6895 <td>185.8</td> | |
6896 <td>7/7(100%)</td> | |
6897 <td>0/7(0%)</td> | |
6898 <td>Plus/Plus</td> | |
6899 </tr> | |
6900 </table> | |
6901 | |
6902 <pre class=alignmentgraphic>Query 10 TGAAGAG 16 | |
6903 ||||||| | |
6904 Subject 1100 TGAAGAG 1106</pre> | |
6905 </div> | |
6906 <div class=hotspot> | |
6907 <p class=range> | |
6908 <span class=range>Range 5: 2216 to 2222</span> | |
6909 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/558704783?report=genbank&log$=nuclalign&from=2216&to=2222">GenBank</a> | |
6910 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/558704783?report=graph&log$=nuclalign&from=2216&to=2222">Graphics</a> | |
6911 </p> | |
6912 | |
6913 <table class=hotspotstable> | |
6914 <tr> | |
6915 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
6916 </tr> | |
6917 <tr> | |
6918 <td>14.4 bits(7)</td> | |
6919 <td>185.8</td> | |
6920 <td>7/7(100%)</td> | |
6921 <td>0/7(0%)</td> | |
6922 <td>Plus/Plus</td> | |
6923 </tr> | |
6924 </table> | |
6925 | |
6926 <pre class=alignmentgraphic>Query 9 GTGAAGA 15 | |
6927 ||||||| | |
6928 Subject 2216 GTGAAGA 2222</pre> | |
6929 </div> | |
6930 | |
6931 </div> | |
6932 | |
6933 <div class=alignment id=hit29> | |
6934 | |
6935 <div class=linkheader> | |
6936 <div class=right><a href="#description29">Descriptions</a></div> | |
6937 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/558704825?report=genbank&log$=nuclalign">GenBank</a> | |
6938 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/558704825?report=graph&log$=nuclalign">Graphics</a> | |
6939 </div> | |
6940 | |
6941 <div class=title> | |
6942 <p class=hittitle>Chain 5, Cryo-em Reconstruction Of The 80s-eif5b-met-itrnamet Eukaryotic Translation Initiation Complex</p> | |
6943 <p class=titleinfo> | |
6944 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/558704825?report=genbank&log$=nuclalign">pdb|4BYW|5</a> | |
6945 <span class=b>Length:</span> 3396 | |
6946 <span class=b>Number of Matches:</span> 5 | |
6947 </p> | |
6948 </div> | |
6949 | |
6950 | |
6951 <div class=hotspot> | |
6952 <p class=range> | |
6953 <span class=range>Range 1: 2959 to 2967</span> | |
6954 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/558704825?report=genbank&log$=nuclalign&from=2959&to=2967">GenBank</a> | |
6955 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/558704825?report=graph&log$=nuclalign&from=2959&to=2967">Graphics</a> | |
6956 </p> | |
6957 | |
6958 <table class=hotspotstable> | |
6959 <tr> | |
6960 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
6961 </tr> | |
6962 <tr> | |
6963 <td>18.3 bits(9)</td> | |
6964 <td>11.9</td> | |
6965 <td>9/9(100%)</td> | |
6966 <td>0/9(0%)</td> | |
6967 <td>Plus/Plus</td> | |
6968 </tr> | |
6969 </table> | |
6970 | |
6971 <pre class=alignmentgraphic>Query 4 CCGTCGTGA 12 | |
6972 ||||||||| | |
6973 Subject 2959 CCGTCGTGA 2967</pre> | |
6974 </div> | |
6975 <div class=hotspot> | |
6976 <p class=range> | |
6977 <span class=range>Range 2: 1634 to 1627</span> | |
6978 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/558704825?report=genbank&log$=nuclalign&from=1634&to=1627">GenBank</a> | |
6979 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/558704825?report=graph&log$=nuclalign&from=1634&to=1627">Graphics</a> | |
6980 </p> | |
6981 | |
6982 <table class=hotspotstable> | |
6983 <tr> | |
6984 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
6985 </tr> | |
6986 <tr> | |
6987 <td>16.4 bits(8)</td> | |
6988 <td>47.0</td> | |
6989 <td>8/8(100%)</td> | |
6990 <td>0/8(0%)</td> | |
6991 <td>Plus/Minus</td> | |
6992 </tr> | |
6993 </table> | |
6994 | |
6995 <pre class=alignmentgraphic>Query 8 CGTGAAGA 15 | |
6996 |||||||| | |
6997 Subject 1634 CGTGAAGA 1627</pre> | |
6998 </div> | |
6999 <div class=hotspot> | |
7000 <p class=range> | |
7001 <span class=range>Range 3: 2435 to 2442</span> | |
7002 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/558704825?report=genbank&log$=nuclalign&from=2435&to=2442">GenBank</a> | |
7003 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/558704825?report=graph&log$=nuclalign&from=2435&to=2442">Graphics</a> | |
7004 </p> | |
7005 | |
7006 <table class=hotspotstable> | |
7007 <tr> | |
7008 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
7009 </tr> | |
7010 <tr> | |
7011 <td>16.4 bits(8)</td> | |
7012 <td>47.0</td> | |
7013 <td>8/8(100%)</td> | |
7014 <td>0/8(0%)</td> | |
7015 <td>Plus/Plus</td> | |
7016 </tr> | |
7017 </table> | |
7018 | |
7019 <pre class=alignmentgraphic>Query 9 GTGAAGAG 16 | |
7020 |||||||| | |
7021 Subject 2435 GTGAAGAG 2442</pre> | |
7022 </div> | |
7023 <div class=hotspot> | |
7024 <p class=range> | |
7025 <span class=range>Range 4: 1100 to 1106</span> | |
7026 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/558704825?report=genbank&log$=nuclalign&from=1100&to=1106">GenBank</a> | |
7027 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/558704825?report=graph&log$=nuclalign&from=1100&to=1106">Graphics</a> | |
7028 </p> | |
7029 | |
7030 <table class=hotspotstable> | |
7031 <tr> | |
7032 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
7033 </tr> | |
7034 <tr> | |
7035 <td>14.4 bits(7)</td> | |
7036 <td>185.8</td> | |
7037 <td>7/7(100%)</td> | |
7038 <td>0/7(0%)</td> | |
7039 <td>Plus/Plus</td> | |
7040 </tr> | |
7041 </table> | |
7042 | |
7043 <pre class=alignmentgraphic>Query 10 TGAAGAG 16 | |
7044 ||||||| | |
7045 Subject 1100 TGAAGAG 1106</pre> | |
7046 </div> | |
7047 <div class=hotspot> | |
7048 <p class=range> | |
7049 <span class=range>Range 5: 2216 to 2222</span> | |
7050 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/558704825?report=genbank&log$=nuclalign&from=2216&to=2222">GenBank</a> | |
7051 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/558704825?report=graph&log$=nuclalign&from=2216&to=2222">Graphics</a> | |
7052 </p> | |
7053 | |
7054 <table class=hotspotstable> | |
7055 <tr> | |
7056 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
7057 </tr> | |
7058 <tr> | |
7059 <td>14.4 bits(7)</td> | |
7060 <td>185.8</td> | |
7061 <td>7/7(100%)</td> | |
7062 <td>0/7(0%)</td> | |
7063 <td>Plus/Plus</td> | |
7064 </tr> | |
7065 </table> | |
7066 | |
7067 <pre class=alignmentgraphic>Query 9 GTGAAGA 15 | |
7068 ||||||| | |
7069 Subject 2216 GTGAAGA 2222</pre> | |
7070 </div> | |
7071 | |
7072 </div> | |
7073 | |
7074 <div class=alignment id=hit31> | |
7075 | |
7076 <div class=linkheader> | |
7077 <div class=right><a href="#description31">Descriptions</a></div> | |
7078 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/508123724?report=genbank&log$=nuclalign">GenBank</a> | |
7079 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/508123724?report=graph&log$=nuclalign">Graphics</a> | |
7080 </div> | |
7081 | |
7082 <div class=title> | |
7083 <p class=hittitle>Chain 0, The Re-refined Crystal Structure Of The Haloarcula Marismortui Large Ribosomal Subunit At 2.4 Angstrom Resolution: More Complete Structure Of The L7/l12 And L1 Stalk, L5 And Lx Proteins</p> | |
7084 <p class=titleinfo> | |
7085 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/508123724?report=genbank&log$=nuclalign">pdb|4HUB|0</a> | |
7086 <span class=b>Length:</span> 2910 | |
7087 <span class=b>Number of Matches:</span> 3 | |
7088 </p> | |
7089 </div> | |
7090 | |
7091 | |
7092 <div class=hotspot> | |
7093 <p class=range> | |
7094 <span class=range>Range 1: 298 to 290</span> | |
7095 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/508123724?report=genbank&log$=nuclalign&from=298&to=290">GenBank</a> | |
7096 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/508123724?report=graph&log$=nuclalign&from=298&to=290">Graphics</a> | |
7097 </p> | |
7098 | |
7099 <table class=hotspotstable> | |
7100 <tr> | |
7101 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
7102 </tr> | |
7103 <tr> | |
7104 <td>18.3 bits(9)</td> | |
7105 <td>11.9</td> | |
7106 <td>9/9(100%)</td> | |
7107 <td>0/9(0%)</td> | |
7108 <td>Plus/Minus</td> | |
7109 </tr> | |
7110 </table> | |
7111 | |
7112 <pre class=alignmentgraphic>Query 7 TCGTGAAGA 15 | |
7113 ||||||||| | |
7114 Subject 298 TCGTGAAGA 290</pre> | |
7115 </div> | |
7116 <div class=hotspot> | |
7117 <p class=range> | |
7118 <span class=range>Range 2: 2618 to 2626</span> | |
7119 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/508123724?report=genbank&log$=nuclalign&from=2618&to=2626">GenBank</a> | |
7120 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/508123724?report=graph&log$=nuclalign&from=2618&to=2626">Graphics</a> | |
7121 </p> | |
7122 | |
7123 <table class=hotspotstable> | |
7124 <tr> | |
7125 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
7126 </tr> | |
7127 <tr> | |
7128 <td>18.3 bits(9)</td> | |
7129 <td>11.9</td> | |
7130 <td>9/9(100%)</td> | |
7131 <td>0/9(0%)</td> | |
7132 <td>Plus/Plus</td> | |
7133 </tr> | |
7134 </table> | |
7135 | |
7136 <pre class=alignmentgraphic>Query 4 CCGTCGTGA 12 | |
7137 ||||||||| | |
7138 Subject 2618 CCGTCGTGA 2626</pre> | |
7139 </div> | |
7140 <div class=hotspot> | |
7141 <p class=range> | |
7142 <span class=range>Range 3: 2599 to 2605</span> | |
7143 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/508123724?report=genbank&log$=nuclalign&from=2599&to=2605">GenBank</a> | |
7144 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/508123724?report=graph&log$=nuclalign&from=2599&to=2605">Graphics</a> | |
7145 </p> | |
7146 | |
7147 <table class=hotspotstable> | |
7148 <tr> | |
7149 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
7150 </tr> | |
7151 <tr> | |
7152 <td>14.4 bits(7)</td> | |
7153 <td>185.8</td> | |
7154 <td>7/7(100%)</td> | |
7155 <td>0/7(0%)</td> | |
7156 <td>Plus/Plus</td> | |
7157 </tr> | |
7158 </table> | |
7159 | |
7160 <pre class=alignmentgraphic>Query 6 GTCGTGA 12 | |
7161 ||||||| | |
7162 Subject 2599 GTCGTGA 2605</pre> | |
7163 </div> | |
7164 | |
7165 </div> | |
7166 | |
7167 <div class=alignment id=hit32> | |
7168 | |
7169 <div class=linkheader> | |
7170 <div class=right><a href="#description32">Descriptions</a></div> | |
7171 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/485601478?report=genbank&log$=nuclalign">GenBank</a> | |
7172 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/485601478?report=graph&log$=nuclalign">Graphics</a> | |
7173 </div> | |
7174 | |
7175 <div class=title> | |
7176 <p class=hittitle>Chain 5, Structure Of The H. Sapiens 60s Rrna</p> | |
7177 <p class=titleinfo> | |
7178 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/485601478?report=genbank&log$=nuclalign">pdb|3J3F|5</a> | |
7179 <span class=b>Length:</span> 5070 | |
7180 <span class=b>Number of Matches:</span> 8 | |
7181 </p> | |
7182 </div> | |
7183 | |
7184 | |
7185 <div class=hotspot> | |
7186 <p class=range> | |
7187 <span class=range>Range 1: 4536 to 4544</span> | |
7188 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/485601478?report=genbank&log$=nuclalign&from=4536&to=4544">GenBank</a> | |
7189 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/485601478?report=graph&log$=nuclalign&from=4536&to=4544">Graphics</a> | |
7190 </p> | |
7191 | |
7192 <table class=hotspotstable> | |
7193 <tr> | |
7194 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
7195 </tr> | |
7196 <tr> | |
7197 <td>18.3 bits(9)</td> | |
7198 <td>11.9</td> | |
7199 <td>9/9(100%)</td> | |
7200 <td>0/9(0%)</td> | |
7201 <td>Plus/Plus</td> | |
7202 </tr> | |
7203 </table> | |
7204 | |
7205 <pre class=alignmentgraphic>Query 4 CCGTCGTGA 12 | |
7206 ||||||||| | |
7207 Subject 4536 CCGTCGTGA 4544</pre> | |
7208 </div> | |
7209 <div class=hotspot> | |
7210 <p class=range> | |
7211 <span class=range>Range 2: 765 to 772</span> | |
7212 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/485601478?report=genbank&log$=nuclalign&from=765&to=772">GenBank</a> | |
7213 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/485601478?report=graph&log$=nuclalign&from=765&to=772">Graphics</a> | |
7214 </p> | |
7215 | |
7216 <table class=hotspotstable> | |
7217 <tr> | |
7218 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
7219 </tr> | |
7220 <tr> | |
7221 <td>16.4 bits(8)</td> | |
7222 <td>47.0</td> | |
7223 <td>8/8(100%)</td> | |
7224 <td>0/8(0%)</td> | |
7225 <td>Plus/Plus</td> | |
7226 </tr> | |
7227 </table> | |
7228 | |
7229 <pre class=alignmentgraphic>Query 1 CGTCCGTC 8 | |
7230 |||||||| | |
7231 Subject 765 CGTCCGTC 772</pre> | |
7232 </div> | |
7233 <div class=hotspot> | |
7234 <p class=range> | |
7235 <span class=range>Range 3: 769 to 776</span> | |
7236 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/485601478?report=genbank&log$=nuclalign&from=769&to=776">GenBank</a> | |
7237 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/485601478?report=graph&log$=nuclalign&from=769&to=776">Graphics</a> | |
7238 </p> | |
7239 | |
7240 <table class=hotspotstable> | |
7241 <tr> | |
7242 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
7243 </tr> | |
7244 <tr> | |
7245 <td>16.4 bits(8)</td> | |
7246 <td>47.0</td> | |
7247 <td>8/8(100%)</td> | |
7248 <td>0/8(0%)</td> | |
7249 <td>Plus/Plus</td> | |
7250 </tr> | |
7251 </table> | |
7252 | |
7253 <pre class=alignmentgraphic>Query 1 CGTCCGTC 8 | |
7254 |||||||| | |
7255 Subject 769 CGTCCGTC 776</pre> | |
7256 </div> | |
7257 <div class=hotspot> | |
7258 <p class=range> | |
7259 <span class=range>Range 4: 773 to 780</span> | |
7260 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/485601478?report=genbank&log$=nuclalign&from=773&to=780">GenBank</a> | |
7261 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/485601478?report=graph&log$=nuclalign&from=773&to=780">Graphics</a> | |
7262 </p> | |
7263 | |
7264 <table class=hotspotstable> | |
7265 <tr> | |
7266 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
7267 </tr> | |
7268 <tr> | |
7269 <td>16.4 bits(8)</td> | |
7270 <td>47.0</td> | |
7271 <td>8/8(100%)</td> | |
7272 <td>0/8(0%)</td> | |
7273 <td>Plus/Plus</td> | |
7274 </tr> | |
7275 </table> | |
7276 | |
7277 <pre class=alignmentgraphic>Query 1 CGTCCGTC 8 | |
7278 |||||||| | |
7279 Subject 773 CGTCCGTC 780</pre> | |
7280 </div> | |
7281 <div class=hotspot> | |
7282 <p class=range> | |
7283 <span class=range>Range 5: 777 to 784</span> | |
7284 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/485601478?report=genbank&log$=nuclalign&from=777&to=784">GenBank</a> | |
7285 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/485601478?report=graph&log$=nuclalign&from=777&to=784">Graphics</a> | |
7286 </p> | |
7287 | |
7288 <table class=hotspotstable> | |
7289 <tr> | |
7290 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
7291 </tr> | |
7292 <tr> | |
7293 <td>16.4 bits(8)</td> | |
7294 <td>47.0</td> | |
7295 <td>8/8(100%)</td> | |
7296 <td>0/8(0%)</td> | |
7297 <td>Plus/Plus</td> | |
7298 </tr> | |
7299 </table> | |
7300 | |
7301 <pre class=alignmentgraphic>Query 1 CGTCCGTC 8 | |
7302 |||||||| | |
7303 Subject 777 CGTCCGTC 784</pre> | |
7304 </div> | |
7305 <div class=hotspot> | |
7306 <p class=range> | |
7307 <span class=range>Range 6: 3939 to 3946</span> | |
7308 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/485601478?report=genbank&log$=nuclalign&from=3939&to=3946">GenBank</a> | |
7309 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/485601478?report=graph&log$=nuclalign&from=3939&to=3946">Graphics</a> | |
7310 </p> | |
7311 | |
7312 <table class=hotspotstable> | |
7313 <tr> | |
7314 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
7315 </tr> | |
7316 <tr> | |
7317 <td>16.4 bits(8)</td> | |
7318 <td>47.0</td> | |
7319 <td>8/8(100%)</td> | |
7320 <td>0/8(0%)</td> | |
7321 <td>Plus/Plus</td> | |
7322 </tr> | |
7323 </table> | |
7324 | |
7325 <pre class=alignmentgraphic>Query 9 GTGAAGAG 16 | |
7326 |||||||| | |
7327 Subject 3939 GTGAAGAG 3946</pre> | |
7328 </div> | |
7329 <div class=hotspot> | |
7330 <p class=range> | |
7331 <span class=range>Range 7: 393 to 399</span> | |
7332 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/485601478?report=genbank&log$=nuclalign&from=393&to=399">GenBank</a> | |
7333 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/485601478?report=graph&log$=nuclalign&from=393&to=399">Graphics</a> | |
7334 </p> | |
7335 | |
7336 <table class=hotspotstable> | |
7337 <tr> | |
7338 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
7339 </tr> | |
7340 <tr> | |
7341 <td>14.4 bits(7)</td> | |
7342 <td>185.8</td> | |
7343 <td>7/7(100%)</td> | |
7344 <td>0/7(0%)</td> | |
7345 <td>Plus/Plus</td> | |
7346 </tr> | |
7347 </table> | |
7348 | |
7349 <pre class=alignmentgraphic>Query 10 TGAAGAG 16 | |
7350 ||||||| | |
7351 Subject 393 TGAAGAG 399</pre> | |
7352 </div> | |
7353 <div class=hotspot> | |
7354 <p class=range> | |
7355 <span class=range>Range 8: 3720 to 3726</span> | |
7356 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/485601478?report=genbank&log$=nuclalign&from=3720&to=3726">GenBank</a> | |
7357 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/485601478?report=graph&log$=nuclalign&from=3720&to=3726">Graphics</a> | |
7358 </p> | |
7359 | |
7360 <table class=hotspotstable> | |
7361 <tr> | |
7362 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
7363 </tr> | |
7364 <tr> | |
7365 <td>14.4 bits(7)</td> | |
7366 <td>185.8</td> | |
7367 <td>7/7(100%)</td> | |
7368 <td>0/7(0%)</td> | |
7369 <td>Plus/Plus</td> | |
7370 </tr> | |
7371 </table> | |
7372 | |
7373 <pre class=alignmentgraphic>Query 9 GTGAAGA 15 | |
7374 ||||||| | |
7375 Subject 3720 GTGAAGA 3726</pre> | |
7376 </div> | |
7377 | |
7378 </div> | |
7379 | |
7380 <div class=alignment id=hit33> | |
7381 | |
7382 <div class=linkheader> | |
7383 <div class=right><a href="#description33">Descriptions</a></div> | |
7384 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/485601474?report=genbank&log$=nuclalign">GenBank</a> | |
7385 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/485601474?report=graph&log$=nuclalign">Graphics</a> | |
7386 </div> | |
7387 | |
7388 <div class=title> | |
7389 <p class=hittitle>Chain 5, Structure Of The D. Melanogaster 60s Rrna</p> | |
7390 <p class=titleinfo> | |
7391 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/485601474?report=genbank&log$=nuclalign">pdb|3J3E|5</a> | |
7392 <span class=b>Length:</span> 3970 | |
7393 <span class=b>Number of Matches:</span> 4 | |
7394 </p> | |
7395 </div> | |
7396 | |
7397 | |
7398 <div class=hotspot> | |
7399 <p class=range> | |
7400 <span class=range>Range 1: 3490 to 3498</span> | |
7401 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/485601474?report=genbank&log$=nuclalign&from=3490&to=3498">GenBank</a> | |
7402 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/485601474?report=graph&log$=nuclalign&from=3490&to=3498">Graphics</a> | |
7403 </p> | |
7404 | |
7405 <table class=hotspotstable> | |
7406 <tr> | |
7407 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
7408 </tr> | |
7409 <tr> | |
7410 <td>18.3 bits(9)</td> | |
7411 <td>11.9</td> | |
7412 <td>9/9(100%)</td> | |
7413 <td>0/9(0%)</td> | |
7414 <td>Plus/Plus</td> | |
7415 </tr> | |
7416 </table> | |
7417 | |
7418 <pre class=alignmentgraphic>Query 4 CCGTCGTGA 12 | |
7419 ||||||||| | |
7420 Subject 3490 CCGTCGTGA 3498</pre> | |
7421 </div> | |
7422 <div class=hotspot> | |
7423 <p class=range> | |
7424 <span class=range>Range 2: 2177 to 2184</span> | |
7425 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/485601474?report=genbank&log$=nuclalign&from=2177&to=2184">GenBank</a> | |
7426 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/485601474?report=graph&log$=nuclalign&from=2177&to=2184">Graphics</a> | |
7427 </p> | |
7428 | |
7429 <table class=hotspotstable> | |
7430 <tr> | |
7431 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
7432 </tr> | |
7433 <tr> | |
7434 <td>16.4 bits(8)</td> | |
7435 <td>47.0</td> | |
7436 <td>8/8(100%)</td> | |
7437 <td>0/8(0%)</td> | |
7438 <td>Plus/Plus</td> | |
7439 </tr> | |
7440 </table> | |
7441 | |
7442 <pre class=alignmentgraphic>Query 9 GTGAAGAG 16 | |
7443 |||||||| | |
7444 Subject 2177 GTGAAGAG 2184</pre> | |
7445 </div> | |
7446 <div class=hotspot> | |
7447 <p class=range> | |
7448 <span class=range>Range 3: 2594 to 2600</span> | |
7449 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/485601474?report=genbank&log$=nuclalign&from=2594&to=2600">GenBank</a> | |
7450 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/485601474?report=graph&log$=nuclalign&from=2594&to=2600">Graphics</a> | |
7451 </p> | |
7452 | |
7453 <table class=hotspotstable> | |
7454 <tr> | |
7455 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
7456 </tr> | |
7457 <tr> | |
7458 <td>14.4 bits(7)</td> | |
7459 <td>185.8</td> | |
7460 <td>7/7(100%)</td> | |
7461 <td>0/7(0%)</td> | |
7462 <td>Plus/Plus</td> | |
7463 </tr> | |
7464 </table> | |
7465 | |
7466 <pre class=alignmentgraphic>Query 9 GTGAAGA 15 | |
7467 ||||||| | |
7468 Subject 2594 GTGAAGA 2600</pre> | |
7469 </div> | |
7470 <div class=hotspot> | |
7471 <p class=range> | |
7472 <span class=range>Range 4: 3627 to 3633</span> | |
7473 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/485601474?report=genbank&log$=nuclalign&from=3627&to=3633">GenBank</a> | |
7474 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/485601474?report=graph&log$=nuclalign&from=3627&to=3633">Graphics</a> | |
7475 </p> | |
7476 | |
7477 <table class=hotspotstable> | |
7478 <tr> | |
7479 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
7480 </tr> | |
7481 <tr> | |
7482 <td>14.4 bits(7)</td> | |
7483 <td>185.8</td> | |
7484 <td>7/7(100%)</td> | |
7485 <td>0/7(0%)</td> | |
7486 <td>Plus/Plus</td> | |
7487 </tr> | |
7488 </table> | |
7489 | |
7490 <pre class=alignmentgraphic>Query 1 CGTCCGT 7 | |
7491 ||||||| | |
7492 Subject 3627 CGTCCGT 3633</pre> | |
7493 </div> | |
7494 | |
7495 </div> | |
7496 | |
7497 <div class=alignment id=hit34> | |
7498 | |
7499 <div class=linkheader> | |
7500 <div class=right><a href="#description34">Descriptions</a></div> | |
7501 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/449802187?report=genbank&log$=nuclalign">GenBank</a> | |
7502 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/449802187?report=graph&log$=nuclalign">Graphics</a> | |
7503 </div> | |
7504 | |
7505 <div class=title> | |
7506 <p class=hittitle>Chain B, High_resolution Cryo-electron Microscopy Structure Of The Trypanosoma Brucei Ribosome</p> | |
7507 <p class=titleinfo> | |
7508 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/449802187?report=genbank&log$=nuclalign">pdb|3ZEX|B</a> | |
7509 <span class=b>Length:</span> 1465 | |
7510 <span class=b>Number of Matches:</span> 2 | |
7511 </p> | |
7512 </div> | |
7513 | |
7514 | |
7515 <div class=hotspot> | |
7516 <p class=range> | |
7517 <span class=range>Range 1: 1334 to 1342</span> | |
7518 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/449802187?report=genbank&log$=nuclalign&from=1334&to=1342">GenBank</a> | |
7519 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/449802187?report=graph&log$=nuclalign&from=1334&to=1342">Graphics</a> | |
7520 </p> | |
7521 | |
7522 <table class=hotspotstable> | |
7523 <tr> | |
7524 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
7525 </tr> | |
7526 <tr> | |
7527 <td>18.3 bits(9)</td> | |
7528 <td>11.9</td> | |
7529 <td>9/9(100%)</td> | |
7530 <td>0/9(0%)</td> | |
7531 <td>Plus/Plus</td> | |
7532 </tr> | |
7533 </table> | |
7534 | |
7535 <pre class=alignmentgraphic>Query 4 CCGTCGTGA 12 | |
7536 ||||||||| | |
7537 Subject 1334 CCGTCGTGA 1342</pre> | |
7538 </div> | |
7539 <div class=hotspot> | |
7540 <p class=range> | |
7541 <span class=range>Range 2: 705 to 711</span> | |
7542 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/449802187?report=genbank&log$=nuclalign&from=705&to=711">GenBank</a> | |
7543 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/449802187?report=graph&log$=nuclalign&from=705&to=711">Graphics</a> | |
7544 </p> | |
7545 | |
7546 <table class=hotspotstable> | |
7547 <tr> | |
7548 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
7549 </tr> | |
7550 <tr> | |
7551 <td>14.4 bits(7)</td> | |
7552 <td>185.8</td> | |
7553 <td>7/7(100%)</td> | |
7554 <td>0/7(0%)</td> | |
7555 <td>Plus/Plus</td> | |
7556 </tr> | |
7557 </table> | |
7558 | |
7559 <pre class=alignmentgraphic>Query 10 TGAAGAG 16 | |
7560 ||||||| | |
7561 Subject 705 TGAAGAG 711</pre> | |
7562 </div> | |
7563 | |
7564 </div> | |
7565 | |
7566 <div class=alignment id=hit36> | |
7567 | |
7568 <div class=linkheader> | |
7569 <div class=right><a href="#description36">Descriptions</a></div> | |
7570 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/392311504?report=genbank&log$=nuclalign">GenBank</a> | |
7571 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/392311504?report=graph&log$=nuclalign">Graphics</a> | |
7572 </div> | |
7573 | |
7574 <div class=title> | |
7575 <p class=hittitle>Chain 0, Crystal Structure Of Enhanced Macrolide Bound To 50s Ribosomal Subunit</p> | |
7576 <p class=titleinfo> | |
7577 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/392311504?report=genbank&log$=nuclalign">pdb|3OW2|0</a> | |
7578 <span class=b>Length:</span> 2902 | |
7579 <span class=b>Number of Matches:</span> 2 | |
7580 </p> | |
7581 </div> | |
7582 | |
7583 | |
7584 <div class=hotspot> | |
7585 <p class=range> | |
7586 <span class=range>Range 1: 2613 to 2621</span> | |
7587 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/392311504?report=genbank&log$=nuclalign&from=2613&to=2621">GenBank</a> | |
7588 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/392311504?report=graph&log$=nuclalign&from=2613&to=2621">Graphics</a> | |
7589 </p> | |
7590 | |
7591 <table class=hotspotstable> | |
7592 <tr> | |
7593 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
7594 </tr> | |
7595 <tr> | |
7596 <td>18.3 bits(9)</td> | |
7597 <td>11.9</td> | |
7598 <td>9/9(100%)</td> | |
7599 <td>0/9(0%)</td> | |
7600 <td>Plus/Plus</td> | |
7601 </tr> | |
7602 </table> | |
7603 | |
7604 <pre class=alignmentgraphic>Query 4 CCGTCGTGA 12 | |
7605 ||||||||| | |
7606 Subject 2613 CCGTCGTGA 2621</pre> | |
7607 </div> | |
7608 <div class=hotspot> | |
7609 <p class=range> | |
7610 <span class=range>Range 2: 2594 to 2600</span> | |
7611 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/392311504?report=genbank&log$=nuclalign&from=2594&to=2600">GenBank</a> | |
7612 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/392311504?report=graph&log$=nuclalign&from=2594&to=2600">Graphics</a> | |
7613 </p> | |
7614 | |
7615 <table class=hotspotstable> | |
7616 <tr> | |
7617 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
7618 </tr> | |
7619 <tr> | |
7620 <td>14.4 bits(7)</td> | |
7621 <td>185.8</td> | |
7622 <td>7/7(100%)</td> | |
7623 <td>0/7(0%)</td> | |
7624 <td>Plus/Plus</td> | |
7625 </tr> | |
7626 </table> | |
7627 | |
7628 <pre class=alignmentgraphic>Query 6 GTCGTGA 12 | |
7629 ||||||| | |
7630 Subject 2594 GTCGTGA 2600</pre> | |
7631 </div> | |
7632 | |
7633 </div> | |
7634 | |
7635 <div class=alignment id=hit37> | |
7636 | |
7637 <div class=linkheader> | |
7638 <div class=right><a href="#description37">Descriptions</a></div> | |
7639 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/374977932?report=genbank&log$=nuclalign">GenBank</a> | |
7640 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/374977932?report=graph&log$=nuclalign">Graphics</a> | |
7641 </div> | |
7642 | |
7643 <div class=title> | |
7644 <p class=hittitle>Chain 0, The Cryo-em Structure Of The Archaeal 50s Ribosomal Subunit In Complex With Initiation Factor 6</p> | |
7645 <p class=titleinfo> | |
7646 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/374977932?report=genbank&log$=nuclalign">pdb|4ADX|0</a> | |
7647 <span class=b>Length:</span> 2923 | |
7648 <span class=b>Number of Matches:</span> 3 | |
7649 </p> | |
7650 </div> | |
7651 | |
7652 | |
7653 <div class=hotspot> | |
7654 <p class=range> | |
7655 <span class=range>Range 1: 305 to 297</span> | |
7656 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/374977932?report=genbank&log$=nuclalign&from=305&to=297">GenBank</a> | |
7657 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/374977932?report=graph&log$=nuclalign&from=305&to=297">Graphics</a> | |
7658 </p> | |
7659 | |
7660 <table class=hotspotstable> | |
7661 <tr> | |
7662 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
7663 </tr> | |
7664 <tr> | |
7665 <td>18.3 bits(9)</td> | |
7666 <td>11.9</td> | |
7667 <td>9/9(100%)</td> | |
7668 <td>0/9(0%)</td> | |
7669 <td>Plus/Minus</td> | |
7670 </tr> | |
7671 </table> | |
7672 | |
7673 <pre class=alignmentgraphic>Query 7 TCGTGAAGA 15 | |
7674 ||||||||| | |
7675 Subject 305 TCGTGAAGA 297</pre> | |
7676 </div> | |
7677 <div class=hotspot> | |
7678 <p class=range> | |
7679 <span class=range>Range 2: 2625 to 2633</span> | |
7680 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/374977932?report=genbank&log$=nuclalign&from=2625&to=2633">GenBank</a> | |
7681 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/374977932?report=graph&log$=nuclalign&from=2625&to=2633">Graphics</a> | |
7682 </p> | |
7683 | |
7684 <table class=hotspotstable> | |
7685 <tr> | |
7686 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
7687 </tr> | |
7688 <tr> | |
7689 <td>18.3 bits(9)</td> | |
7690 <td>11.9</td> | |
7691 <td>9/9(100%)</td> | |
7692 <td>0/9(0%)</td> | |
7693 <td>Plus/Plus</td> | |
7694 </tr> | |
7695 </table> | |
7696 | |
7697 <pre class=alignmentgraphic>Query 4 CCGTCGTGA 12 | |
7698 ||||||||| | |
7699 Subject 2625 CCGTCGTGA 2633</pre> | |
7700 </div> | |
7701 <div class=hotspot> | |
7702 <p class=range> | |
7703 <span class=range>Range 3: 2606 to 2612</span> | |
7704 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/374977932?report=genbank&log$=nuclalign&from=2606&to=2612">GenBank</a> | |
7705 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/374977932?report=graph&log$=nuclalign&from=2606&to=2612">Graphics</a> | |
7706 </p> | |
7707 | |
7708 <table class=hotspotstable> | |
7709 <tr> | |
7710 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
7711 </tr> | |
7712 <tr> | |
7713 <td>14.4 bits(7)</td> | |
7714 <td>185.8</td> | |
7715 <td>7/7(100%)</td> | |
7716 <td>0/7(0%)</td> | |
7717 <td>Plus/Plus</td> | |
7718 </tr> | |
7719 </table> | |
7720 | |
7721 <pre class=alignmentgraphic>Query 6 GTCGTGA 12 | |
7722 ||||||| | |
7723 Subject 2606 GTCGTGA 2612</pre> | |
7724 </div> | |
7725 | |
7726 </div> | |
7727 | |
7728 <div class=alignment id=hit38> | |
7729 | |
7730 <div class=linkheader> | |
7731 <div class=right><a href="#description38">Descriptions</a></div> | |
7732 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/364506133?report=genbank&log$=nuclalign">GenBank</a> | |
7733 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/364506133?report=graph&log$=nuclalign">Graphics</a> | |
7734 </div> | |
7735 | |
7736 <div class=title> | |
7737 <p class=hittitle>Chain 6, The Structure Of The Eukaryotic Ribosome At 3.0 A Resolution. This Entry Contains Ribosomal Rna And Ions Of The 40s Subunit, Ribosome B</p> | |
7738 <p class=titleinfo> | |
7739 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/364506133?report=genbank&log$=nuclalign">pdb|3U5F|6</a> | |
7740 <span class=b>Length:</span> 1800 | |
7741 <span class=b>Number of Matches:</span> 3 | |
7742 </p> | |
7743 </div> | |
7744 | |
7745 | |
7746 <div class=hotspot> | |
7747 <p class=range> | |
7748 <span class=range>Range 1: 1528 to 1536</span> | |
7749 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/364506133?report=genbank&log$=nuclalign&from=1528&to=1536">GenBank</a> | |
7750 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/364506133?report=graph&log$=nuclalign&from=1528&to=1536">Graphics</a> | |
7751 </p> | |
7752 | |
7753 <table class=hotspotstable> | |
7754 <tr> | |
7755 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
7756 </tr> | |
7757 <tr> | |
7758 <td>18.3 bits(9)</td> | |
7759 <td>11.9</td> | |
7760 <td>9/9(100%)</td> | |
7761 <td>0/9(0%)</td> | |
7762 <td>Plus/Plus</td> | |
7763 </tr> | |
7764 </table> | |
7765 | |
7766 <pre class=alignmentgraphic>Query 3 TCCGTCGTG 11 | |
7767 ||||||||| | |
7768 Subject 1528 TCCGTCGTG 1536</pre> | |
7769 </div> | |
7770 <div class=hotspot> | |
7771 <p class=range> | |
7772 <span class=range>Range 2: 1006 to 1012</span> | |
7773 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/364506133?report=genbank&log$=nuclalign&from=1006&to=1012">GenBank</a> | |
7774 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/364506133?report=graph&log$=nuclalign&from=1006&to=1012">Graphics</a> | |
7775 </p> | |
7776 | |
7777 <table class=hotspotstable> | |
7778 <tr> | |
7779 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
7780 </tr> | |
7781 <tr> | |
7782 <td>14.4 bits(7)</td> | |
7783 <td>185.8</td> | |
7784 <td>7/7(100%)</td> | |
7785 <td>0/7(0%)</td> | |
7786 <td>Plus/Plus</td> | |
7787 </tr> | |
7788 </table> | |
7789 | |
7790 <pre class=alignmentgraphic>Query 4 CCGTCGT 10 | |
7791 ||||||| | |
7792 Subject 1006 CCGTCGT 1012</pre> | |
7793 </div> | |
7794 <div class=hotspot> | |
7795 <p class=range> | |
7796 <span class=range>Range 3: 1569 to 1563</span> | |
7797 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/364506133?report=genbank&log$=nuclalign&from=1569&to=1563">GenBank</a> | |
7798 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/364506133?report=graph&log$=nuclalign&from=1569&to=1563">Graphics</a> | |
7799 </p> | |
7800 | |
7801 <table class=hotspotstable> | |
7802 <tr> | |
7803 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
7804 </tr> | |
7805 <tr> | |
7806 <td>14.4 bits(7)</td> | |
7807 <td>185.8</td> | |
7808 <td>7/7(100%)</td> | |
7809 <td>0/7(0%)</td> | |
7810 <td>Plus/Minus</td> | |
7811 </tr> | |
7812 </table> | |
7813 | |
7814 <pre class=alignmentgraphic>Query 10 TGAAGAG 16 | |
7815 ||||||| | |
7816 Subject 1569 TGAAGAG 1563</pre> | |
7817 </div> | |
7818 | |
7819 </div> | |
7820 | |
7821 <div class=alignment id=hit39> | |
7822 | |
7823 <div class=linkheader> | |
7824 <div class=right><a href="#description39">Descriptions</a></div> | |
7825 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/364506095?report=genbank&log$=nuclalign">GenBank</a> | |
7826 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/364506095?report=graph&log$=nuclalign">Graphics</a> | |
7827 </div> | |
7828 | |
7829 <div class=title> | |
7830 <p class=hittitle>Chain 2, The Structure Of The Eukaryotic Ribosome At 3.0 A Resolution. This Entry Contains Ribosomal Rna And Ions Of The 40s Subunit, Ribosome A </p> | |
7831 <p class=titleinfo> | |
7832 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/364506095?report=genbank&log$=nuclalign">pdb|3U5B|2</a> | |
7833 <span class=b>Length:</span> 1800 | |
7834 <span class=b>Number of Matches:</span> 3 | |
7835 </p> | |
7836 </div> | |
7837 | |
7838 <a class=showmoretitles onclick="toggle_visibility('moretitles39'); return false;" href=''> | |
7839 See 2 more title(s) | |
7840 </a> | |
7841 | |
7842 <div class=moretitles id=moretitles39 style="display: none"> | |
7843 <div class=title> | |
7844 <p class=hittitle>Chain 2, Cryo-em Reconstruction Of The 80s-eif5b-met-itrnamet Eukaryotic Translation Initiation Complex </p> | |
7845 <p class=titleinfo> | |
7846 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/558704782?report=genbank&log$=nuclalign">pdb|4BYO|2</a> | |
7847 </p> | |
7848 </div> | |
7849 <div class=title> | |
7850 <p class=hittitle>Chain 2, Cryo-em Reconstruction Of The 80s-eif5b-met-itrnamet Eukaryotic Translation Initiation Complex</p> | |
7851 <p class=titleinfo> | |
7852 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/558704824?report=genbank&log$=nuclalign">pdb|4BYV|2</a> | |
7853 </p> | |
7854 </div> | |
7855 </div> | |
7856 | |
7857 <div class=hotspot> | |
7858 <p class=range> | |
7859 <span class=range>Range 1: 1528 to 1536</span> | |
7860 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/364506095?report=genbank&log$=nuclalign&from=1528&to=1536">GenBank</a> | |
7861 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/364506095?report=graph&log$=nuclalign&from=1528&to=1536">Graphics</a> | |
7862 </p> | |
7863 | |
7864 <table class=hotspotstable> | |
7865 <tr> | |
7866 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
7867 </tr> | |
7868 <tr> | |
7869 <td>18.3 bits(9)</td> | |
7870 <td>11.9</td> | |
7871 <td>9/9(100%)</td> | |
7872 <td>0/9(0%)</td> | |
7873 <td>Plus/Plus</td> | |
7874 </tr> | |
7875 </table> | |
7876 | |
7877 <pre class=alignmentgraphic>Query 3 TCCGTCGTG 11 | |
7878 ||||||||| | |
7879 Subject 1528 TCCGTCGTG 1536</pre> | |
7880 </div> | |
7881 <div class=hotspot> | |
7882 <p class=range> | |
7883 <span class=range>Range 2: 1006 to 1012</span> | |
7884 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/364506095?report=genbank&log$=nuclalign&from=1006&to=1012">GenBank</a> | |
7885 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/364506095?report=graph&log$=nuclalign&from=1006&to=1012">Graphics</a> | |
7886 </p> | |
7887 | |
7888 <table class=hotspotstable> | |
7889 <tr> | |
7890 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
7891 </tr> | |
7892 <tr> | |
7893 <td>14.4 bits(7)</td> | |
7894 <td>185.8</td> | |
7895 <td>7/7(100%)</td> | |
7896 <td>0/7(0%)</td> | |
7897 <td>Plus/Plus</td> | |
7898 </tr> | |
7899 </table> | |
7900 | |
7901 <pre class=alignmentgraphic>Query 4 CCGTCGT 10 | |
7902 ||||||| | |
7903 Subject 1006 CCGTCGT 1012</pre> | |
7904 </div> | |
7905 <div class=hotspot> | |
7906 <p class=range> | |
7907 <span class=range>Range 3: 1569 to 1563</span> | |
7908 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/364506095?report=genbank&log$=nuclalign&from=1569&to=1563">GenBank</a> | |
7909 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/364506095?report=graph&log$=nuclalign&from=1569&to=1563">Graphics</a> | |
7910 </p> | |
7911 | |
7912 <table class=hotspotstable> | |
7913 <tr> | |
7914 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
7915 </tr> | |
7916 <tr> | |
7917 <td>14.4 bits(7)</td> | |
7918 <td>185.8</td> | |
7919 <td>7/7(100%)</td> | |
7920 <td>0/7(0%)</td> | |
7921 <td>Plus/Minus</td> | |
7922 </tr> | |
7923 </table> | |
7924 | |
7925 <pre class=alignmentgraphic>Query 10 TGAAGAG 16 | |
7926 ||||||| | |
7927 Subject 1569 TGAAGAG 1563</pre> | |
7928 </div> | |
7929 | |
7930 </div> | |
7931 | |
7932 <div class=alignment id=hit40> | |
7933 | |
7934 <div class=linkheader> | |
7935 <div class=right><a href="#description40">Descriptions</a></div> | |
7936 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/358440203?report=genbank&log$=nuclalign">GenBank</a> | |
7937 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/358440203?report=graph&log$=nuclalign">Graphics</a> | |
7938 </div> | |
7939 | |
7940 <div class=title> | |
7941 <p class=hittitle>Chain 1, T.Thermophila 60s Ribosomal Subunit In Complex With Initiation Factor 6. This File Contains 26s Rrna And Proteins Of Molecule 4.</p> | |
7942 <p class=titleinfo> | |
7943 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/358440203?report=genbank&log$=nuclalign">pdb|4A1D|1</a> | |
7944 <span class=b>Length:</span> 3119 | |
7945 <span class=b>Number of Matches:</span> 3 | |
7946 </p> | |
7947 </div> | |
7948 | |
7949 | |
7950 <div class=hotspot> | |
7951 <p class=range> | |
7952 <span class=range>Range 1: 2280 to 2288</span> | |
7953 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/358440203?report=genbank&log$=nuclalign&from=2280&to=2288">GenBank</a> | |
7954 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/358440203?report=graph&log$=nuclalign&from=2280&to=2288">Graphics</a> | |
7955 </p> | |
7956 | |
7957 <table class=hotspotstable> | |
7958 <tr> | |
7959 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
7960 </tr> | |
7961 <tr> | |
7962 <td>18.3 bits(9)</td> | |
7963 <td>11.9</td> | |
7964 <td>9/9(100%)</td> | |
7965 <td>0/9(0%)</td> | |
7966 <td>Plus/Plus</td> | |
7967 </tr> | |
7968 </table> | |
7969 | |
7970 <pre class=alignmentgraphic>Query 7 TCGTGAAGA 15 | |
7971 ||||||||| | |
7972 Subject 2280 TCGTGAAGA 2288</pre> | |
7973 </div> | |
7974 <div class=hotspot> | |
7975 <p class=range> | |
7976 <span class=range>Range 2: 2714 to 2722</span> | |
7977 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/358440203?report=genbank&log$=nuclalign&from=2714&to=2722">GenBank</a> | |
7978 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/358440203?report=graph&log$=nuclalign&from=2714&to=2722">Graphics</a> | |
7979 </p> | |
7980 | |
7981 <table class=hotspotstable> | |
7982 <tr> | |
7983 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
7984 </tr> | |
7985 <tr> | |
7986 <td>18.3 bits(9)</td> | |
7987 <td>11.9</td> | |
7988 <td>9/9(100%)</td> | |
7989 <td>0/9(0%)</td> | |
7990 <td>Plus/Plus</td> | |
7991 </tr> | |
7992 </table> | |
7993 | |
7994 <pre class=alignmentgraphic>Query 4 CCGTCGTGA 12 | |
7995 ||||||||| | |
7996 Subject 2714 CCGTCGTGA 2722</pre> | |
7997 </div> | |
7998 <div class=hotspot> | |
7999 <p class=range> | |
8000 <span class=range>Range 3: 2838 to 2844</span> | |
8001 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/358440203?report=genbank&log$=nuclalign&from=2838&to=2844">GenBank</a> | |
8002 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/358440203?report=graph&log$=nuclalign&from=2838&to=2844">Graphics</a> | |
8003 </p> | |
8004 | |
8005 <table class=hotspotstable> | |
8006 <tr> | |
8007 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
8008 </tr> | |
8009 <tr> | |
8010 <td>14.4 bits(7)</td> | |
8011 <td>185.8</td> | |
8012 <td>7/7(100%)</td> | |
8013 <td>0/7(0%)</td> | |
8014 <td>Plus/Plus</td> | |
8015 </tr> | |
8016 </table> | |
8017 | |
8018 <pre class=alignmentgraphic>Query 8 CGTGAAG 14 | |
8019 ||||||| | |
8020 Subject 2838 CGTGAAG 2844</pre> | |
8021 </div> | |
8022 | |
8023 </div> | |
8024 | |
8025 <div class=alignment id=hit41> | |
8026 | |
8027 <div class=linkheader> | |
8028 <div class=right><a href="#description41">Descriptions</a></div> | |
8029 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/358440111?report=genbank&log$=nuclalign">GenBank</a> | |
8030 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/358440111?report=graph&log$=nuclalign">Graphics</a> | |
8031 </div> | |
8032 | |
8033 <div class=title> | |
8034 <p class=hittitle>Chain 1, T.Thermophila 60s Ribosomal Subunit In Complex With Initiation Factor 6. This File Contains 26s Rrna And Proteins Of Molecule 1</p> | |
8035 <p class=titleinfo> | |
8036 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/358440111?report=genbank&log$=nuclalign">pdb|4A18|1</a> | |
8037 <span class=b>Length:</span> 3354 | |
8038 <span class=b>Number of Matches:</span> 3 | |
8039 </p> | |
8040 </div> | |
8041 | |
8042 | |
8043 <div class=hotspot> | |
8044 <p class=range> | |
8045 <span class=range>Range 1: 2513 to 2521</span> | |
8046 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/358440111?report=genbank&log$=nuclalign&from=2513&to=2521">GenBank</a> | |
8047 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/358440111?report=graph&log$=nuclalign&from=2513&to=2521">Graphics</a> | |
8048 </p> | |
8049 | |
8050 <table class=hotspotstable> | |
8051 <tr> | |
8052 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
8053 </tr> | |
8054 <tr> | |
8055 <td>18.3 bits(9)</td> | |
8056 <td>11.9</td> | |
8057 <td>9/9(100%)</td> | |
8058 <td>0/9(0%)</td> | |
8059 <td>Plus/Plus</td> | |
8060 </tr> | |
8061 </table> | |
8062 | |
8063 <pre class=alignmentgraphic>Query 7 TCGTGAAGA 15 | |
8064 ||||||||| | |
8065 Subject 2513 TCGTGAAGA 2521</pre> | |
8066 </div> | |
8067 <div class=hotspot> | |
8068 <p class=range> | |
8069 <span class=range>Range 2: 2947 to 2955</span> | |
8070 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/358440111?report=genbank&log$=nuclalign&from=2947&to=2955">GenBank</a> | |
8071 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/358440111?report=graph&log$=nuclalign&from=2947&to=2955">Graphics</a> | |
8072 </p> | |
8073 | |
8074 <table class=hotspotstable> | |
8075 <tr> | |
8076 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
8077 </tr> | |
8078 <tr> | |
8079 <td>18.3 bits(9)</td> | |
8080 <td>11.9</td> | |
8081 <td>9/9(100%)</td> | |
8082 <td>0/9(0%)</td> | |
8083 <td>Plus/Plus</td> | |
8084 </tr> | |
8085 </table> | |
8086 | |
8087 <pre class=alignmentgraphic>Query 4 CCGTCGTGA 12 | |
8088 ||||||||| | |
8089 Subject 2947 CCGTCGTGA 2955</pre> | |
8090 </div> | |
8091 <div class=hotspot> | |
8092 <p class=range> | |
8093 <span class=range>Range 3: 3071 to 3077</span> | |
8094 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/358440111?report=genbank&log$=nuclalign&from=3071&to=3077">GenBank</a> | |
8095 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/358440111?report=graph&log$=nuclalign&from=3071&to=3077">Graphics</a> | |
8096 </p> | |
8097 | |
8098 <table class=hotspotstable> | |
8099 <tr> | |
8100 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
8101 </tr> | |
8102 <tr> | |
8103 <td>14.4 bits(7)</td> | |
8104 <td>185.8</td> | |
8105 <td>7/7(100%)</td> | |
8106 <td>0/7(0%)</td> | |
8107 <td>Plus/Plus</td> | |
8108 </tr> | |
8109 </table> | |
8110 | |
8111 <pre class=alignmentgraphic>Query 8 CGTGAAG 14 | |
8112 ||||||| | |
8113 Subject 3071 CGTGAAG 3077</pre> | |
8114 </div> | |
8115 | |
8116 </div> | |
8117 | |
8118 <div class=alignment id=hit42> | |
8119 | |
8120 <div class=linkheader> | |
8121 <div class=right><a href="#description42">Descriptions</a></div> | |
8122 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/358440157?report=genbank&log$=nuclalign">GenBank</a> | |
8123 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/358440157?report=graph&log$=nuclalign">Graphics</a> | |
8124 </div> | |
8125 | |
8126 <div class=title> | |
8127 <p class=hittitle>Chain 1, T.Thermophila 60s Ribosomal Subunit In Complex With Initiation Factor 6. This File Contains 26s Rrna And Proteins Of Molecule 3. </p> | |
8128 <p class=titleinfo> | |
8129 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/358440157?report=genbank&log$=nuclalign">pdb|4A1B|1</a> | |
8130 <span class=b>Length:</span> 3354 | |
8131 <span class=b>Number of Matches:</span> 3 | |
8132 </p> | |
8133 </div> | |
8134 | |
8135 <a class=showmoretitles onclick="toggle_visibility('moretitles42'); return false;" href=''> | |
8136 See 1 more title(s) | |
8137 </a> | |
8138 | |
8139 <div class=moretitles id=moretitles42 style="display: none"> | |
8140 <div class=title> | |
8141 <p class=hittitle>Chain 1, T.Thermophila 60s Ribosomal Subunit In Complex With Initiation Factor 6. This File Contains 26s Rrna And Proteins Of Molecule 2.</p> | |
8142 <p class=titleinfo> | |
8143 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/359807703?report=genbank&log$=nuclalign">pdb|4A19|1</a> | |
8144 </p> | |
8145 </div> | |
8146 </div> | |
8147 | |
8148 <div class=hotspot> | |
8149 <p class=range> | |
8150 <span class=range>Range 1: 2513 to 2521</span> | |
8151 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/358440157?report=genbank&log$=nuclalign&from=2513&to=2521">GenBank</a> | |
8152 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/358440157?report=graph&log$=nuclalign&from=2513&to=2521">Graphics</a> | |
8153 </p> | |
8154 | |
8155 <table class=hotspotstable> | |
8156 <tr> | |
8157 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
8158 </tr> | |
8159 <tr> | |
8160 <td>18.3 bits(9)</td> | |
8161 <td>11.9</td> | |
8162 <td>9/9(100%)</td> | |
8163 <td>0/9(0%)</td> | |
8164 <td>Plus/Plus</td> | |
8165 </tr> | |
8166 </table> | |
8167 | |
8168 <pre class=alignmentgraphic>Query 7 TCGTGAAGA 15 | |
8169 ||||||||| | |
8170 Subject 2513 TCGTGAAGA 2521</pre> | |
8171 </div> | |
8172 <div class=hotspot> | |
8173 <p class=range> | |
8174 <span class=range>Range 2: 2947 to 2955</span> | |
8175 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/358440157?report=genbank&log$=nuclalign&from=2947&to=2955">GenBank</a> | |
8176 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/358440157?report=graph&log$=nuclalign&from=2947&to=2955">Graphics</a> | |
8177 </p> | |
8178 | |
8179 <table class=hotspotstable> | |
8180 <tr> | |
8181 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
8182 </tr> | |
8183 <tr> | |
8184 <td>18.3 bits(9)</td> | |
8185 <td>11.9</td> | |
8186 <td>9/9(100%)</td> | |
8187 <td>0/9(0%)</td> | |
8188 <td>Plus/Plus</td> | |
8189 </tr> | |
8190 </table> | |
8191 | |
8192 <pre class=alignmentgraphic>Query 4 CCGTCGTGA 12 | |
8193 ||||||||| | |
8194 Subject 2947 CCGTCGTGA 2955</pre> | |
8195 </div> | |
8196 <div class=hotspot> | |
8197 <p class=range> | |
8198 <span class=range>Range 3: 3071 to 3077</span> | |
8199 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/358440157?report=genbank&log$=nuclalign&from=3071&to=3077">GenBank</a> | |
8200 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/358440157?report=graph&log$=nuclalign&from=3071&to=3077">Graphics</a> | |
8201 </p> | |
8202 | |
8203 <table class=hotspotstable> | |
8204 <tr> | |
8205 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
8206 </tr> | |
8207 <tr> | |
8208 <td>14.4 bits(7)</td> | |
8209 <td>185.8</td> | |
8210 <td>7/7(100%)</td> | |
8211 <td>0/7(0%)</td> | |
8212 <td>Plus/Plus</td> | |
8213 </tr> | |
8214 </table> | |
8215 | |
8216 <pre class=alignmentgraphic>Query 8 CGTGAAG 14 | |
8217 ||||||| | |
8218 Subject 3071 CGTGAAG 3077</pre> | |
8219 </div> | |
8220 | |
8221 </div> | |
8222 | |
8223 <div class=alignment id=hit43> | |
8224 | |
8225 <div class=linkheader> | |
8226 <div class=right><a href="#description43">Descriptions</a></div> | |
8227 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/357380452?report=genbank&log$=nuclalign">GenBank</a> | |
8228 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/357380452?report=graph&log$=nuclalign">Graphics</a> | |
8229 </div> | |
8230 | |
8231 <div class=title> | |
8232 <p class=hittitle>Chain 8, Core Of Mammalian 80s Pre-Ribosome In Complex With Trnas Fitted To A 9.8a Cryo-Em Map: Classic Pre State 1</p> | |
8233 <p class=titleinfo> | |
8234 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/357380452?report=genbank&log$=nuclalign">pdb|3J0L|8</a> | |
8235 <span class=b>Length:</span> 20 | |
8236 <span class=b>Number of Matches:</span> 1 | |
8237 </p> | |
8238 </div> | |
8239 | |
8240 | |
8241 <div class=hotspot> | |
8242 <p class=range> | |
8243 <span class=range>Range 1: 3 to 11</span> | |
8244 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/357380452?report=genbank&log$=nuclalign&from=3&to=11">GenBank</a> | |
8245 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/357380452?report=graph&log$=nuclalign&from=3&to=11">Graphics</a> | |
8246 </p> | |
8247 | |
8248 <table class=hotspotstable> | |
8249 <tr> | |
8250 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
8251 </tr> | |
8252 <tr> | |
8253 <td>18.3 bits(9)</td> | |
8254 <td>11.9</td> | |
8255 <td>9/9(100%)</td> | |
8256 <td>0/9(0%)</td> | |
8257 <td>Plus/Plus</td> | |
8258 </tr> | |
8259 </table> | |
8260 | |
8261 <pre class=alignmentgraphic>Query 4 CCGTCGTGA 12 | |
8262 ||||||||| | |
8263 Subject 3 CCGTCGTGA 11</pre> | |
8264 </div> | |
8265 | |
8266 </div> | |
8267 | |
8268 <div class=alignment id=hit44> | |
8269 | |
8270 <div class=linkheader> | |
8271 <div class=right><a href="#description44">Descriptions</a></div> | |
8272 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/357380483?report=genbank&log$=nuclalign">GenBank</a> | |
8273 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/357380483?report=graph&log$=nuclalign">Graphics</a> | |
8274 </div> | |
8275 | |
8276 <div class=title> | |
8277 <p class=hittitle>Chain 8, Core Of Mammalian 80s Pre-Ribosome In Complex With Trnas Fitted To A 9a Cryo-Em Map: Classic Pre State 2</p> | |
8278 <p class=titleinfo> | |
8279 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/357380483?report=genbank&log$=nuclalign">pdb|3J0O|8</a> | |
8280 <span class=b>Length:</span> 20 | |
8281 <span class=b>Number of Matches:</span> 1 | |
8282 </p> | |
8283 </div> | |
8284 | |
8285 | |
8286 <div class=hotspot> | |
8287 <p class=range> | |
8288 <span class=range>Range 1: 3 to 11</span> | |
8289 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/357380483?report=genbank&log$=nuclalign&from=3&to=11">GenBank</a> | |
8290 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/357380483?report=graph&log$=nuclalign&from=3&to=11">Graphics</a> | |
8291 </p> | |
8292 | |
8293 <table class=hotspotstable> | |
8294 <tr> | |
8295 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
8296 </tr> | |
8297 <tr> | |
8298 <td>18.3 bits(9)</td> | |
8299 <td>11.9</td> | |
8300 <td>9/9(100%)</td> | |
8301 <td>0/9(0%)</td> | |
8302 <td>Plus/Plus</td> | |
8303 </tr> | |
8304 </table> | |
8305 | |
8306 <pre class=alignmentgraphic>Query 4 CCGTCGTGA 12 | |
8307 ||||||||| | |
8308 Subject 3 CCGTCGTGA 11</pre> | |
8309 </div> | |
8310 | |
8311 </div> | |
8312 | |
8313 <div class=alignment id=hit45> | |
8314 | |
8315 <div class=linkheader> | |
8316 <div class=right><a href="#description45">Descriptions</a></div> | |
8317 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/315113523?report=genbank&log$=nuclalign">GenBank</a> | |
8318 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/315113523?report=graph&log$=nuclalign">Graphics</a> | |
8319 </div> | |
8320 | |
8321 <div class=title> | |
8322 <p class=hittitle>Chain 1, Yeast 80s Ribosome. This Entry Consists Of The 60s Subunit Of The First 80s In The Asymmetric Unit. </p> | |
8323 <p class=titleinfo> | |
8324 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/315113523?report=genbank&log$=nuclalign">pdb|3O58|1</a> | |
8325 <span class=b>Length:</span> 3396 | |
8326 <span class=b>Number of Matches:</span> 5 | |
8327 </p> | |
8328 </div> | |
8329 | |
8330 <a class=showmoretitles onclick="toggle_visibility('moretitles45'); return false;" href=''> | |
8331 See 2 more title(s) | |
8332 </a> | |
8333 | |
8334 <div class=moretitles id=moretitles45 style="display: none"> | |
8335 <div class=title> | |
8336 <p class=hittitle>Chain 5, Cryo-Em Structure Of The 60s Ribosomal Subunit In Complex With Arx1 And Rei1 </p> | |
8337 <p class=titleinfo> | |
8338 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/418837761?report=genbank&log$=nuclalign">pdb|4B6B|5</a> | |
8339 </p> | |
8340 </div> | |
8341 <div class=title> | |
8342 <p class=hittitle>Chain 1, Arx1 Pre-60s Particle. This Entry Contains The Rrna.</p> | |
8343 <p class=titleinfo> | |
8344 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/597959861?report=genbank&log$=nuclalign">pdb|3J64|1</a> | |
8345 </p> | |
8346 </div> | |
8347 </div> | |
8348 | |
8349 <div class=hotspot> | |
8350 <p class=range> | |
8351 <span class=range>Range 1: 2959 to 2967</span> | |
8352 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/315113523?report=genbank&log$=nuclalign&from=2959&to=2967">GenBank</a> | |
8353 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/315113523?report=graph&log$=nuclalign&from=2959&to=2967">Graphics</a> | |
8354 </p> | |
8355 | |
8356 <table class=hotspotstable> | |
8357 <tr> | |
8358 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
8359 </tr> | |
8360 <tr> | |
8361 <td>18.3 bits(9)</td> | |
8362 <td>11.9</td> | |
8363 <td>9/9(100%)</td> | |
8364 <td>0/9(0%)</td> | |
8365 <td>Plus/Plus</td> | |
8366 </tr> | |
8367 </table> | |
8368 | |
8369 <pre class=alignmentgraphic>Query 4 CCGTCGTGA 12 | |
8370 ||||||||| | |
8371 Subject 2959 CCGTCGTGA 2967</pre> | |
8372 </div> | |
8373 <div class=hotspot> | |
8374 <p class=range> | |
8375 <span class=range>Range 2: 1634 to 1627</span> | |
8376 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/315113523?report=genbank&log$=nuclalign&from=1634&to=1627">GenBank</a> | |
8377 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/315113523?report=graph&log$=nuclalign&from=1634&to=1627">Graphics</a> | |
8378 </p> | |
8379 | |
8380 <table class=hotspotstable> | |
8381 <tr> | |
8382 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
8383 </tr> | |
8384 <tr> | |
8385 <td>16.4 bits(8)</td> | |
8386 <td>47.0</td> | |
8387 <td>8/8(100%)</td> | |
8388 <td>0/8(0%)</td> | |
8389 <td>Plus/Minus</td> | |
8390 </tr> | |
8391 </table> | |
8392 | |
8393 <pre class=alignmentgraphic>Query 8 CGTGAAGA 15 | |
8394 |||||||| | |
8395 Subject 1634 CGTGAAGA 1627</pre> | |
8396 </div> | |
8397 <div class=hotspot> | |
8398 <p class=range> | |
8399 <span class=range>Range 3: 2435 to 2442</span> | |
8400 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/315113523?report=genbank&log$=nuclalign&from=2435&to=2442">GenBank</a> | |
8401 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/315113523?report=graph&log$=nuclalign&from=2435&to=2442">Graphics</a> | |
8402 </p> | |
8403 | |
8404 <table class=hotspotstable> | |
8405 <tr> | |
8406 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
8407 </tr> | |
8408 <tr> | |
8409 <td>16.4 bits(8)</td> | |
8410 <td>47.0</td> | |
8411 <td>8/8(100%)</td> | |
8412 <td>0/8(0%)</td> | |
8413 <td>Plus/Plus</td> | |
8414 </tr> | |
8415 </table> | |
8416 | |
8417 <pre class=alignmentgraphic>Query 9 GTGAAGAG 16 | |
8418 |||||||| | |
8419 Subject 2435 GTGAAGAG 2442</pre> | |
8420 </div> | |
8421 <div class=hotspot> | |
8422 <p class=range> | |
8423 <span class=range>Range 4: 1100 to 1106</span> | |
8424 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/315113523?report=genbank&log$=nuclalign&from=1100&to=1106">GenBank</a> | |
8425 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/315113523?report=graph&log$=nuclalign&from=1100&to=1106">Graphics</a> | |
8426 </p> | |
8427 | |
8428 <table class=hotspotstable> | |
8429 <tr> | |
8430 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
8431 </tr> | |
8432 <tr> | |
8433 <td>14.4 bits(7)</td> | |
8434 <td>185.8</td> | |
8435 <td>7/7(100%)</td> | |
8436 <td>0/7(0%)</td> | |
8437 <td>Plus/Plus</td> | |
8438 </tr> | |
8439 </table> | |
8440 | |
8441 <pre class=alignmentgraphic>Query 10 TGAAGAG 16 | |
8442 ||||||| | |
8443 Subject 1100 TGAAGAG 1106</pre> | |
8444 </div> | |
8445 <div class=hotspot> | |
8446 <p class=range> | |
8447 <span class=range>Range 5: 2216 to 2222</span> | |
8448 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/315113523?report=genbank&log$=nuclalign&from=2216&to=2222">GenBank</a> | |
8449 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/315113523?report=graph&log$=nuclalign&from=2216&to=2222">Graphics</a> | |
8450 </p> | |
8451 | |
8452 <table class=hotspotstable> | |
8453 <tr> | |
8454 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
8455 </tr> | |
8456 <tr> | |
8457 <td>14.4 bits(7)</td> | |
8458 <td>185.8</td> | |
8459 <td>7/7(100%)</td> | |
8460 <td>0/7(0%)</td> | |
8461 <td>Plus/Plus</td> | |
8462 </tr> | |
8463 </table> | |
8464 | |
8465 <pre class=alignmentgraphic>Query 9 GTGAAGA 15 | |
8466 ||||||| | |
8467 Subject 2216 GTGAAGA 2222</pre> | |
8468 </div> | |
8469 | |
8470 </div> | |
8471 | |
8472 <div class=alignment id=hit46> | |
8473 | |
8474 <div class=linkheader> | |
8475 <div class=right><a href="#description46">Descriptions</a></div> | |
8476 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/315113568?report=genbank&log$=nuclalign">GenBank</a> | |
8477 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/315113568?report=graph&log$=nuclalign">Graphics</a> | |
8478 </div> | |
8479 | |
8480 <div class=title> | |
8481 <p class=hittitle>Chain 1, Yeast 80s Ribosome. This Entry Consists Of The 60s Subunit Of The Second 80s In The Asymmetric Unit. </p> | |
8482 <p class=titleinfo> | |
8483 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/315113568?report=genbank&log$=nuclalign">pdb|3O5H|1</a> | |
8484 <span class=b>Length:</span> 3396 | |
8485 <span class=b>Number of Matches:</span> 5 | |
8486 </p> | |
8487 </div> | |
8488 | |
8489 <a class=showmoretitles onclick="toggle_visibility('moretitles46'); return false;" href=''> | |
8490 See 2 more title(s) | |
8491 </a> | |
8492 | |
8493 <div class=moretitles id=moretitles46 style="display: none"> | |
8494 <div class=title> | |
8495 <p class=hittitle>Chain 1, The Structure Of The Eukaryotic Ribosome At 3.0 A Resolution. This Entry Contains Ribosomal Rna And Ions Of The 60s Subunit, Ribosome A </p> | |
8496 <p class=titleinfo> | |
8497 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/364506130?report=genbank&log$=nuclalign">pdb|3U5D|1</a> | |
8498 </p> | |
8499 </div> | |
8500 <div class=title> | |
8501 <p class=hittitle>Chain 5, The Structure Of The Eukaryotic Ribosome At 3.0 A Resolution. This Entry Contains Ribosomal Rna And Ions Of The 60s Subunit, Ribosome B</p> | |
8502 <p class=titleinfo> | |
8503 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/364506168?report=genbank&log$=nuclalign">pdb|3U5H|5</a> | |
8504 </p> | |
8505 </div> | |
8506 </div> | |
8507 | |
8508 <div class=hotspot> | |
8509 <p class=range> | |
8510 <span class=range>Range 1: 2959 to 2967</span> | |
8511 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/315113568?report=genbank&log$=nuclalign&from=2959&to=2967">GenBank</a> | |
8512 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/315113568?report=graph&log$=nuclalign&from=2959&to=2967">Graphics</a> | |
8513 </p> | |
8514 | |
8515 <table class=hotspotstable> | |
8516 <tr> | |
8517 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
8518 </tr> | |
8519 <tr> | |
8520 <td>18.3 bits(9)</td> | |
8521 <td>11.9</td> | |
8522 <td>9/9(100%)</td> | |
8523 <td>0/9(0%)</td> | |
8524 <td>Plus/Plus</td> | |
8525 </tr> | |
8526 </table> | |
8527 | |
8528 <pre class=alignmentgraphic>Query 4 CCGTCGTGA 12 | |
8529 ||||||||| | |
8530 Subject 2959 CCGTCGTGA 2967</pre> | |
8531 </div> | |
8532 <div class=hotspot> | |
8533 <p class=range> | |
8534 <span class=range>Range 2: 1634 to 1627</span> | |
8535 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/315113568?report=genbank&log$=nuclalign&from=1634&to=1627">GenBank</a> | |
8536 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/315113568?report=graph&log$=nuclalign&from=1634&to=1627">Graphics</a> | |
8537 </p> | |
8538 | |
8539 <table class=hotspotstable> | |
8540 <tr> | |
8541 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
8542 </tr> | |
8543 <tr> | |
8544 <td>16.4 bits(8)</td> | |
8545 <td>47.0</td> | |
8546 <td>8/8(100%)</td> | |
8547 <td>0/8(0%)</td> | |
8548 <td>Plus/Minus</td> | |
8549 </tr> | |
8550 </table> | |
8551 | |
8552 <pre class=alignmentgraphic>Query 8 CGTGAAGA 15 | |
8553 |||||||| | |
8554 Subject 1634 CGTGAAGA 1627</pre> | |
8555 </div> | |
8556 <div class=hotspot> | |
8557 <p class=range> | |
8558 <span class=range>Range 3: 2435 to 2442</span> | |
8559 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/315113568?report=genbank&log$=nuclalign&from=2435&to=2442">GenBank</a> | |
8560 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/315113568?report=graph&log$=nuclalign&from=2435&to=2442">Graphics</a> | |
8561 </p> | |
8562 | |
8563 <table class=hotspotstable> | |
8564 <tr> | |
8565 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
8566 </tr> | |
8567 <tr> | |
8568 <td>16.4 bits(8)</td> | |
8569 <td>47.0</td> | |
8570 <td>8/8(100%)</td> | |
8571 <td>0/8(0%)</td> | |
8572 <td>Plus/Plus</td> | |
8573 </tr> | |
8574 </table> | |
8575 | |
8576 <pre class=alignmentgraphic>Query 9 GTGAAGAG 16 | |
8577 |||||||| | |
8578 Subject 2435 GTGAAGAG 2442</pre> | |
8579 </div> | |
8580 <div class=hotspot> | |
8581 <p class=range> | |
8582 <span class=range>Range 4: 1100 to 1106</span> | |
8583 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/315113568?report=genbank&log$=nuclalign&from=1100&to=1106">GenBank</a> | |
8584 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/315113568?report=graph&log$=nuclalign&from=1100&to=1106">Graphics</a> | |
8585 </p> | |
8586 | |
8587 <table class=hotspotstable> | |
8588 <tr> | |
8589 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
8590 </tr> | |
8591 <tr> | |
8592 <td>14.4 bits(7)</td> | |
8593 <td>185.8</td> | |
8594 <td>7/7(100%)</td> | |
8595 <td>0/7(0%)</td> | |
8596 <td>Plus/Plus</td> | |
8597 </tr> | |
8598 </table> | |
8599 | |
8600 <pre class=alignmentgraphic>Query 10 TGAAGAG 16 | |
8601 ||||||| | |
8602 Subject 1100 TGAAGAG 1106</pre> | |
8603 </div> | |
8604 <div class=hotspot> | |
8605 <p class=range> | |
8606 <span class=range>Range 5: 2216 to 2222</span> | |
8607 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/315113568?report=genbank&log$=nuclalign&from=2216&to=2222">GenBank</a> | |
8608 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/315113568?report=graph&log$=nuclalign&from=2216&to=2222">Graphics</a> | |
8609 </p> | |
8610 | |
8611 <table class=hotspotstable> | |
8612 <tr> | |
8613 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
8614 </tr> | |
8615 <tr> | |
8616 <td>14.4 bits(7)</td> | |
8617 <td>185.8</td> | |
8618 <td>7/7(100%)</td> | |
8619 <td>0/7(0%)</td> | |
8620 <td>Plus/Plus</td> | |
8621 </tr> | |
8622 </table> | |
8623 | |
8624 <pre class=alignmentgraphic>Query 9 GTGAAGA 15 | |
8625 ||||||| | |
8626 Subject 2216 GTGAAGA 2222</pre> | |
8627 </div> | |
8628 | |
8629 </div> | |
8630 | |
8631 <div class=alignment id=hit47> | |
8632 | |
8633 <div class=linkheader> | |
8634 <div class=right><a href="#description47">Descriptions</a></div> | |
8635 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/315113447?report=genbank&log$=nuclalign">GenBank</a> | |
8636 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/315113447?report=graph&log$=nuclalign">Graphics</a> | |
8637 </div> | |
8638 | |
8639 <div class=title> | |
8640 <p class=hittitle>Chain 1, Yeast 80s Ribosome. This Entry Consists Of The 40s Subunit Of The First 80s In The Asymmetric Unit.</p> | |
8641 <p class=titleinfo> | |
8642 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/315113447?report=genbank&log$=nuclalign">pdb|3O2Z|1</a> | |
8643 <span class=b>Length:</span> 1800 | |
8644 <span class=b>Number of Matches:</span> 3 | |
8645 </p> | |
8646 </div> | |
8647 | |
8648 | |
8649 <div class=hotspot> | |
8650 <p class=range> | |
8651 <span class=range>Range 1: 1528 to 1536</span> | |
8652 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/315113447?report=genbank&log$=nuclalign&from=1528&to=1536">GenBank</a> | |
8653 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/315113447?report=graph&log$=nuclalign&from=1528&to=1536">Graphics</a> | |
8654 </p> | |
8655 | |
8656 <table class=hotspotstable> | |
8657 <tr> | |
8658 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
8659 </tr> | |
8660 <tr> | |
8661 <td>18.3 bits(9)</td> | |
8662 <td>11.9</td> | |
8663 <td>9/9(100%)</td> | |
8664 <td>0/9(0%)</td> | |
8665 <td>Plus/Plus</td> | |
8666 </tr> | |
8667 </table> | |
8668 | |
8669 <pre class=alignmentgraphic>Query 3 TCCGTCGTG 11 | |
8670 ||||||||| | |
8671 Subject 1528 TCCGTCGTG 1536</pre> | |
8672 </div> | |
8673 <div class=hotspot> | |
8674 <p class=range> | |
8675 <span class=range>Range 2: 1006 to 1012</span> | |
8676 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/315113447?report=genbank&log$=nuclalign&from=1006&to=1012">GenBank</a> | |
8677 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/315113447?report=graph&log$=nuclalign&from=1006&to=1012">Graphics</a> | |
8678 </p> | |
8679 | |
8680 <table class=hotspotstable> | |
8681 <tr> | |
8682 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
8683 </tr> | |
8684 <tr> | |
8685 <td>14.4 bits(7)</td> | |
8686 <td>185.8</td> | |
8687 <td>7/7(100%)</td> | |
8688 <td>0/7(0%)</td> | |
8689 <td>Plus/Plus</td> | |
8690 </tr> | |
8691 </table> | |
8692 | |
8693 <pre class=alignmentgraphic>Query 4 CCGTCGT 10 | |
8694 ||||||| | |
8695 Subject 1006 CCGTCGT 1012</pre> | |
8696 </div> | |
8697 <div class=hotspot> | |
8698 <p class=range> | |
8699 <span class=range>Range 3: 1569 to 1563</span> | |
8700 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/315113447?report=genbank&log$=nuclalign&from=1569&to=1563">GenBank</a> | |
8701 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/315113447?report=graph&log$=nuclalign&from=1569&to=1563">Graphics</a> | |
8702 </p> | |
8703 | |
8704 <table class=hotspotstable> | |
8705 <tr> | |
8706 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
8707 </tr> | |
8708 <tr> | |
8709 <td>14.4 bits(7)</td> | |
8710 <td>185.8</td> | |
8711 <td>7/7(100%)</td> | |
8712 <td>0/7(0%)</td> | |
8713 <td>Plus/Minus</td> | |
8714 </tr> | |
8715 </table> | |
8716 | |
8717 <pre class=alignmentgraphic>Query 10 TGAAGAG 16 | |
8718 ||||||| | |
8719 Subject 1569 TGAAGAG 1563</pre> | |
8720 </div> | |
8721 | |
8722 </div> | |
8723 | |
8724 <div class=alignment id=hit48> | |
8725 | |
8726 <div class=linkheader> | |
8727 <div class=right><a href="#description48">Descriptions</a></div> | |
8728 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/315113475?report=genbank&log$=nuclalign">GenBank</a> | |
8729 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/315113475?report=graph&log$=nuclalign">Graphics</a> | |
8730 </div> | |
8731 | |
8732 <div class=title> | |
8733 <p class=hittitle>Chain 1, Yeast 80s Ribosome. This Entry Consists Of The 40s Subunit Of The Second 80s In The Asymmetric Unit.</p> | |
8734 <p class=titleinfo> | |
8735 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/315113475?report=genbank&log$=nuclalign">pdb|3O30|1</a> | |
8736 <span class=b>Length:</span> 1800 | |
8737 <span class=b>Number of Matches:</span> 3 | |
8738 </p> | |
8739 </div> | |
8740 | |
8741 | |
8742 <div class=hotspot> | |
8743 <p class=range> | |
8744 <span class=range>Range 1: 1528 to 1536</span> | |
8745 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/315113475?report=genbank&log$=nuclalign&from=1528&to=1536">GenBank</a> | |
8746 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/315113475?report=graph&log$=nuclalign&from=1528&to=1536">Graphics</a> | |
8747 </p> | |
8748 | |
8749 <table class=hotspotstable> | |
8750 <tr> | |
8751 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
8752 </tr> | |
8753 <tr> | |
8754 <td>18.3 bits(9)</td> | |
8755 <td>11.9</td> | |
8756 <td>9/9(100%)</td> | |
8757 <td>0/9(0%)</td> | |
8758 <td>Plus/Plus</td> | |
8759 </tr> | |
8760 </table> | |
8761 | |
8762 <pre class=alignmentgraphic>Query 3 TCCGTCGTG 11 | |
8763 ||||||||| | |
8764 Subject 1528 TCCGTCGTG 1536</pre> | |
8765 </div> | |
8766 <div class=hotspot> | |
8767 <p class=range> | |
8768 <span class=range>Range 2: 1006 to 1012</span> | |
8769 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/315113475?report=genbank&log$=nuclalign&from=1006&to=1012">GenBank</a> | |
8770 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/315113475?report=graph&log$=nuclalign&from=1006&to=1012">Graphics</a> | |
8771 </p> | |
8772 | |
8773 <table class=hotspotstable> | |
8774 <tr> | |
8775 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
8776 </tr> | |
8777 <tr> | |
8778 <td>14.4 bits(7)</td> | |
8779 <td>185.8</td> | |
8780 <td>7/7(100%)</td> | |
8781 <td>0/7(0%)</td> | |
8782 <td>Plus/Plus</td> | |
8783 </tr> | |
8784 </table> | |
8785 | |
8786 <pre class=alignmentgraphic>Query 4 CCGTCGT 10 | |
8787 ||||||| | |
8788 Subject 1006 CCGTCGT 1012</pre> | |
8789 </div> | |
8790 <div class=hotspot> | |
8791 <p class=range> | |
8792 <span class=range>Range 3: 1569 to 1563</span> | |
8793 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/315113475?report=genbank&log$=nuclalign&from=1569&to=1563">GenBank</a> | |
8794 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/315113475?report=graph&log$=nuclalign&from=1569&to=1563">Graphics</a> | |
8795 </p> | |
8796 | |
8797 <table class=hotspotstable> | |
8798 <tr> | |
8799 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
8800 </tr> | |
8801 <tr> | |
8802 <td>14.4 bits(7)</td> | |
8803 <td>185.8</td> | |
8804 <td>7/7(100%)</td> | |
8805 <td>0/7(0%)</td> | |
8806 <td>Plus/Minus</td> | |
8807 </tr> | |
8808 </table> | |
8809 | |
8810 <pre class=alignmentgraphic>Query 10 TGAAGAG 16 | |
8811 ||||||| | |
8812 Subject 1569 TGAAGAG 1563</pre> | |
8813 </div> | |
8814 | |
8815 </div> | |
8816 | |
8817 <div class=alignment id=hit49> | |
8818 | |
8819 <div class=linkheader> | |
8820 <div class=right><a href="#description49">Descriptions</a></div> | |
8821 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/313103747?report=genbank&log$=nuclalign">GenBank</a> | |
8822 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/313103747?report=graph&log$=nuclalign">Graphics</a> | |
8823 </div> | |
8824 | |
8825 <div class=title> | |
8826 <p class=hittitle>Chain A, Model Of The Large Subunit Rna Based On A 6.1 A Cryo-Em Map Of Saccharomyces Cerevisiae Translating 80s Ribosome (With Es27l-In Conformation)</p> | |
8827 <p class=titleinfo> | |
8828 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/313103747?report=genbank&log$=nuclalign">pdb|3IZF|A</a> | |
8829 <span class=b>Length:</span> 3396 | |
8830 <span class=b>Number of Matches:</span> 5 | |
8831 </p> | |
8832 </div> | |
8833 | |
8834 | |
8835 <div class=hotspot> | |
8836 <p class=range> | |
8837 <span class=range>Range 1: 2959 to 2967</span> | |
8838 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/313103747?report=genbank&log$=nuclalign&from=2959&to=2967">GenBank</a> | |
8839 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/313103747?report=graph&log$=nuclalign&from=2959&to=2967">Graphics</a> | |
8840 </p> | |
8841 | |
8842 <table class=hotspotstable> | |
8843 <tr> | |
8844 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
8845 </tr> | |
8846 <tr> | |
8847 <td>18.3 bits(9)</td> | |
8848 <td>11.9</td> | |
8849 <td>9/9(100%)</td> | |
8850 <td>0/9(0%)</td> | |
8851 <td>Plus/Plus</td> | |
8852 </tr> | |
8853 </table> | |
8854 | |
8855 <pre class=alignmentgraphic>Query 4 CCGTCGTGA 12 | |
8856 ||||||||| | |
8857 Subject 2959 CCGTCGTGA 2967</pre> | |
8858 </div> | |
8859 <div class=hotspot> | |
8860 <p class=range> | |
8861 <span class=range>Range 2: 1634 to 1627</span> | |
8862 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/313103747?report=genbank&log$=nuclalign&from=1634&to=1627">GenBank</a> | |
8863 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/313103747?report=graph&log$=nuclalign&from=1634&to=1627">Graphics</a> | |
8864 </p> | |
8865 | |
8866 <table class=hotspotstable> | |
8867 <tr> | |
8868 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
8869 </tr> | |
8870 <tr> | |
8871 <td>16.4 bits(8)</td> | |
8872 <td>47.0</td> | |
8873 <td>8/8(100%)</td> | |
8874 <td>0/8(0%)</td> | |
8875 <td>Plus/Minus</td> | |
8876 </tr> | |
8877 </table> | |
8878 | |
8879 <pre class=alignmentgraphic>Query 8 CGTGAAGA 15 | |
8880 |||||||| | |
8881 Subject 1634 CGTGAAGA 1627</pre> | |
8882 </div> | |
8883 <div class=hotspot> | |
8884 <p class=range> | |
8885 <span class=range>Range 3: 2435 to 2442</span> | |
8886 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/313103747?report=genbank&log$=nuclalign&from=2435&to=2442">GenBank</a> | |
8887 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/313103747?report=graph&log$=nuclalign&from=2435&to=2442">Graphics</a> | |
8888 </p> | |
8889 | |
8890 <table class=hotspotstable> | |
8891 <tr> | |
8892 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
8893 </tr> | |
8894 <tr> | |
8895 <td>16.4 bits(8)</td> | |
8896 <td>47.0</td> | |
8897 <td>8/8(100%)</td> | |
8898 <td>0/8(0%)</td> | |
8899 <td>Plus/Plus</td> | |
8900 </tr> | |
8901 </table> | |
8902 | |
8903 <pre class=alignmentgraphic>Query 9 GTGAAGAG 16 | |
8904 |||||||| | |
8905 Subject 2435 GTGAAGAG 2442</pre> | |
8906 </div> | |
8907 <div class=hotspot> | |
8908 <p class=range> | |
8909 <span class=range>Range 4: 1100 to 1106</span> | |
8910 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/313103747?report=genbank&log$=nuclalign&from=1100&to=1106">GenBank</a> | |
8911 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/313103747?report=graph&log$=nuclalign&from=1100&to=1106">Graphics</a> | |
8912 </p> | |
8913 | |
8914 <table class=hotspotstable> | |
8915 <tr> | |
8916 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
8917 </tr> | |
8918 <tr> | |
8919 <td>14.4 bits(7)</td> | |
8920 <td>185.8</td> | |
8921 <td>7/7(100%)</td> | |
8922 <td>0/7(0%)</td> | |
8923 <td>Plus/Plus</td> | |
8924 </tr> | |
8925 </table> | |
8926 | |
8927 <pre class=alignmentgraphic>Query 10 TGAAGAG 16 | |
8928 ||||||| | |
8929 Subject 1100 TGAAGAG 1106</pre> | |
8930 </div> | |
8931 <div class=hotspot> | |
8932 <p class=range> | |
8933 <span class=range>Range 5: 2216 to 2222</span> | |
8934 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/313103747?report=genbank&log$=nuclalign&from=2216&to=2222">GenBank</a> | |
8935 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/313103747?report=graph&log$=nuclalign&from=2216&to=2222">Graphics</a> | |
8936 </p> | |
8937 | |
8938 <table class=hotspotstable> | |
8939 <tr> | |
8940 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
8941 </tr> | |
8942 <tr> | |
8943 <td>14.4 bits(7)</td> | |
8944 <td>185.8</td> | |
8945 <td>7/7(100%)</td> | |
8946 <td>0/7(0%)</td> | |
8947 <td>Plus/Plus</td> | |
8948 </tr> | |
8949 </table> | |
8950 | |
8951 <pre class=alignmentgraphic>Query 9 GTGAAGA 15 | |
8952 ||||||| | |
8953 Subject 2216 GTGAAGA 2222</pre> | |
8954 </div> | |
8955 | |
8956 </div> | |
8957 | |
8958 <div class=alignment id=hit50> | |
8959 | |
8960 <div class=linkheader> | |
8961 <div class=right><a href="#description50">Descriptions</a></div> | |
8962 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/313103744?report=genbank&log$=nuclalign">GenBank</a> | |
8963 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/313103744?report=graph&log$=nuclalign">Graphics</a> | |
8964 </div> | |
8965 | |
8966 <div class=title> | |
8967 <p class=hittitle>Chain A, Model Of The Small Subunit Rna Based On A 6.1 A Cryo-Em Map Of Saccharomyces Cerevisiae Translating 80s Ribosome</p> | |
8968 <p class=titleinfo> | |
8969 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/313103744?report=genbank&log$=nuclalign">pdb|3IZE|A</a> | |
8970 <span class=b>Length:</span> 1800 | |
8971 <span class=b>Number of Matches:</span> 3 | |
8972 </p> | |
8973 </div> | |
8974 | |
8975 | |
8976 <div class=hotspot> | |
8977 <p class=range> | |
8978 <span class=range>Range 1: 1528 to 1536</span> | |
8979 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/313103744?report=genbank&log$=nuclalign&from=1528&to=1536">GenBank</a> | |
8980 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/313103744?report=graph&log$=nuclalign&from=1528&to=1536">Graphics</a> | |
8981 </p> | |
8982 | |
8983 <table class=hotspotstable> | |
8984 <tr> | |
8985 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
8986 </tr> | |
8987 <tr> | |
8988 <td>18.3 bits(9)</td> | |
8989 <td>11.9</td> | |
8990 <td>9/9(100%)</td> | |
8991 <td>0/9(0%)</td> | |
8992 <td>Plus/Plus</td> | |
8993 </tr> | |
8994 </table> | |
8995 | |
8996 <pre class=alignmentgraphic>Query 3 TCCGTCGTG 11 | |
8997 ||||||||| | |
8998 Subject 1528 TCCGTCGTG 1536</pre> | |
8999 </div> | |
9000 <div class=hotspot> | |
9001 <p class=range> | |
9002 <span class=range>Range 2: 1006 to 1012</span> | |
9003 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/313103744?report=genbank&log$=nuclalign&from=1006&to=1012">GenBank</a> | |
9004 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/313103744?report=graph&log$=nuclalign&from=1006&to=1012">Graphics</a> | |
9005 </p> | |
9006 | |
9007 <table class=hotspotstable> | |
9008 <tr> | |
9009 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
9010 </tr> | |
9011 <tr> | |
9012 <td>14.4 bits(7)</td> | |
9013 <td>185.8</td> | |
9014 <td>7/7(100%)</td> | |
9015 <td>0/7(0%)</td> | |
9016 <td>Plus/Plus</td> | |
9017 </tr> | |
9018 </table> | |
9019 | |
9020 <pre class=alignmentgraphic>Query 4 CCGTCGT 10 | |
9021 ||||||| | |
9022 Subject 1006 CCGTCGT 1012</pre> | |
9023 </div> | |
9024 <div class=hotspot> | |
9025 <p class=range> | |
9026 <span class=range>Range 3: 1569 to 1563</span> | |
9027 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/313103744?report=genbank&log$=nuclalign&from=1569&to=1563">GenBank</a> | |
9028 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/313103744?report=graph&log$=nuclalign&from=1569&to=1563">Graphics</a> | |
9029 </p> | |
9030 | |
9031 <table class=hotspotstable> | |
9032 <tr> | |
9033 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
9034 </tr> | |
9035 <tr> | |
9036 <td>14.4 bits(7)</td> | |
9037 <td>185.8</td> | |
9038 <td>7/7(100%)</td> | |
9039 <td>0/7(0%)</td> | |
9040 <td>Plus/Minus</td> | |
9041 </tr> | |
9042 </table> | |
9043 | |
9044 <pre class=alignmentgraphic>Query 10 TGAAGAG 16 | |
9045 ||||||| | |
9046 Subject 1569 TGAAGAG 1563</pre> | |
9047 </div> | |
9048 | |
9049 </div> | |
9050 | |
9051 <div class=alignment id=hit51> | |
9052 | |
9053 <div class=linkheader> | |
9054 <div class=right><a href="#description51">Descriptions</a></div> | |
9055 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/296278448?report=genbank&log$=nuclalign">GenBank</a> | |
9056 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/296278448?report=graph&log$=nuclalign">Graphics</a> | |
9057 </div> | |
9058 | |
9059 <div class=title> | |
9060 <p class=hittitle>Chain I, I-Msoi Re-Designed For Altered Dna Cleavage Specificity (-7c)</p> | |
9061 <p class=titleinfo> | |
9062 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/296278448?report=genbank&log$=nuclalign">pdb|3KO2|I</a> | |
9063 <span class=b>Length:</span> 24 | |
9064 <span class=b>Number of Matches:</span> 1 | |
9065 </p> | |
9066 </div> | |
9067 | |
9068 | |
9069 <div class=hotspot> | |
9070 <p class=range> | |
9071 <span class=range>Range 1: 19 to 11</span> | |
9072 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/296278448?report=genbank&log$=nuclalign&from=19&to=11">GenBank</a> | |
9073 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/296278448?report=graph&log$=nuclalign&from=19&to=11">Graphics</a> | |
9074 </p> | |
9075 | |
9076 <table class=hotspotstable> | |
9077 <tr> | |
9078 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
9079 </tr> | |
9080 <tr> | |
9081 <td>18.3 bits(9)</td> | |
9082 <td>11.9</td> | |
9083 <td>9/9(100%)</td> | |
9084 <td>0/9(0%)</td> | |
9085 <td>Plus/Minus</td> | |
9086 </tr> | |
9087 </table> | |
9088 | |
9089 <pre class=alignmentgraphic>Query 4 CCGTCGTGA 12 | |
9090 ||||||||| | |
9091 Subject 19 CCGTCGTGA 11</pre> | |
9092 </div> | |
9093 | |
9094 </div> | |
9095 | |
9096 <div class=alignment id=hit52> | |
9097 | |
9098 <div class=linkheader> | |
9099 <div class=right><a href="#description52">Descriptions</a></div> | |
9100 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/296278447?report=genbank&log$=nuclalign">GenBank</a> | |
9101 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/296278447?report=graph&log$=nuclalign">Graphics</a> | |
9102 </div> | |
9103 | |
9104 <div class=title> | |
9105 <p class=hittitle>Chain H, I-Msoi Re-Designed For Altered Dna Cleavage Specificity (-7c)</p> | |
9106 <p class=titleinfo> | |
9107 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/296278447?report=genbank&log$=nuclalign">pdb|3KO2|H</a> | |
9108 <span class=b>Length:</span> 24 | |
9109 <span class=b>Number of Matches:</span> 1 | |
9110 </p> | |
9111 </div> | |
9112 | |
9113 | |
9114 <div class=hotspot> | |
9115 <p class=range> | |
9116 <span class=range>Range 1: 6 to 14</span> | |
9117 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/296278447?report=genbank&log$=nuclalign&from=6&to=14">GenBank</a> | |
9118 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/296278447?report=graph&log$=nuclalign&from=6&to=14">Graphics</a> | |
9119 </p> | |
9120 | |
9121 <table class=hotspotstable> | |
9122 <tr> | |
9123 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
9124 </tr> | |
9125 <tr> | |
9126 <td>18.3 bits(9)</td> | |
9127 <td>11.9</td> | |
9128 <td>9/9(100%)</td> | |
9129 <td>0/9(0%)</td> | |
9130 <td>Plus/Plus</td> | |
9131 </tr> | |
9132 </table> | |
9133 | |
9134 <pre class=alignmentgraphic>Query 4 CCGTCGTGA 12 | |
9135 ||||||||| | |
9136 Subject 6 CCGTCGTGA 14</pre> | |
9137 </div> | |
9138 | |
9139 </div> | |
9140 | |
9141 <div class=alignment id=hit53> | |
9142 | |
9143 <div class=linkheader> | |
9144 <div class=right><a href="#description53">Descriptions</a></div> | |
9145 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/296278444?report=genbank&log$=nuclalign">GenBank</a> | |
9146 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/296278444?report=graph&log$=nuclalign">Graphics</a> | |
9147 </div> | |
9148 | |
9149 <div class=title> | |
9150 <p class=hittitle>Chain D, I-Msoi Re-Designed For Altered Dna Cleavage Specificity (-7c)</p> | |
9151 <p class=titleinfo> | |
9152 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/296278444?report=genbank&log$=nuclalign">pdb|3KO2|D</a> | |
9153 <span class=b>Length:</span> 24 | |
9154 <span class=b>Number of Matches:</span> 1 | |
9155 </p> | |
9156 </div> | |
9157 | |
9158 | |
9159 <div class=hotspot> | |
9160 <p class=range> | |
9161 <span class=range>Range 1: 19 to 11</span> | |
9162 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/296278444?report=genbank&log$=nuclalign&from=19&to=11">GenBank</a> | |
9163 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/296278444?report=graph&log$=nuclalign&from=19&to=11">Graphics</a> | |
9164 </p> | |
9165 | |
9166 <table class=hotspotstable> | |
9167 <tr> | |
9168 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
9169 </tr> | |
9170 <tr> | |
9171 <td>18.3 bits(9)</td> | |
9172 <td>11.9</td> | |
9173 <td>9/9(100%)</td> | |
9174 <td>0/9(0%)</td> | |
9175 <td>Plus/Minus</td> | |
9176 </tr> | |
9177 </table> | |
9178 | |
9179 <pre class=alignmentgraphic>Query 4 CCGTCGTGA 12 | |
9180 ||||||||| | |
9181 Subject 19 CCGTCGTGA 11</pre> | |
9182 </div> | |
9183 | |
9184 </div> | |
9185 | |
9186 <div class=alignment id=hit54> | |
9187 | |
9188 <div class=linkheader> | |
9189 <div class=right><a href="#description54">Descriptions</a></div> | |
9190 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/296278443?report=genbank&log$=nuclalign">GenBank</a> | |
9191 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/296278443?report=graph&log$=nuclalign">Graphics</a> | |
9192 </div> | |
9193 | |
9194 <div class=title> | |
9195 <p class=hittitle>Chain C, I-Msoi Re-Designed For Altered Dna Cleavage Specificity (-7c)</p> | |
9196 <p class=titleinfo> | |
9197 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/296278443?report=genbank&log$=nuclalign">pdb|3KO2|C</a> | |
9198 <span class=b>Length:</span> 24 | |
9199 <span class=b>Number of Matches:</span> 1 | |
9200 </p> | |
9201 </div> | |
9202 | |
9203 | |
9204 <div class=hotspot> | |
9205 <p class=range> | |
9206 <span class=range>Range 1: 6 to 14</span> | |
9207 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/296278443?report=genbank&log$=nuclalign&from=6&to=14">GenBank</a> | |
9208 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/296278443?report=graph&log$=nuclalign&from=6&to=14">Graphics</a> | |
9209 </p> | |
9210 | |
9211 <table class=hotspotstable> | |
9212 <tr> | |
9213 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
9214 </tr> | |
9215 <tr> | |
9216 <td>18.3 bits(9)</td> | |
9217 <td>11.9</td> | |
9218 <td>9/9(100%)</td> | |
9219 <td>0/9(0%)</td> | |
9220 <td>Plus/Plus</td> | |
9221 </tr> | |
9222 </table> | |
9223 | |
9224 <pre class=alignmentgraphic>Query 4 CCGTCGTGA 12 | |
9225 ||||||||| | |
9226 Subject 6 CCGTCGTGA 14</pre> | |
9227 </div> | |
9228 | |
9229 </div> | |
9230 | |
9231 <div class=alignment id=hit55> | |
9232 | |
9233 <div class=linkheader> | |
9234 <div class=right><a href="#description55">Descriptions</a></div> | |
9235 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/290790096?report=genbank&log$=nuclalign">GenBank</a> | |
9236 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/290790096?report=graph&log$=nuclalign">Graphics</a> | |
9237 </div> | |
9238 | |
9239 <div class=title> | |
9240 <p class=hittitle>Chain 0, Co-Crystal Structure Of Triacetyloleandomcyin Bound To The Large Ribosomal Subunit</p> | |
9241 <p class=titleinfo> | |
9242 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/290790096?report=genbank&log$=nuclalign">pdb|3I56|0</a> | |
9243 <span class=b>Length:</span> 2923 | |
9244 <span class=b>Number of Matches:</span> 3 | |
9245 </p> | |
9246 </div> | |
9247 | |
9248 | |
9249 <div class=hotspot> | |
9250 <p class=range> | |
9251 <span class=range>Range 1: 305 to 297</span> | |
9252 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/290790096?report=genbank&log$=nuclalign&from=305&to=297">GenBank</a> | |
9253 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/290790096?report=graph&log$=nuclalign&from=305&to=297">Graphics</a> | |
9254 </p> | |
9255 | |
9256 <table class=hotspotstable> | |
9257 <tr> | |
9258 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
9259 </tr> | |
9260 <tr> | |
9261 <td>18.3 bits(9)</td> | |
9262 <td>11.9</td> | |
9263 <td>9/9(100%)</td> | |
9264 <td>0/9(0%)</td> | |
9265 <td>Plus/Minus</td> | |
9266 </tr> | |
9267 </table> | |
9268 | |
9269 <pre class=alignmentgraphic>Query 7 TCGTGAAGA 15 | |
9270 ||||||||| | |
9271 Subject 305 TCGTGAAGA 297</pre> | |
9272 </div> | |
9273 <div class=hotspot> | |
9274 <p class=range> | |
9275 <span class=range>Range 2: 2625 to 2633</span> | |
9276 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/290790096?report=genbank&log$=nuclalign&from=2625&to=2633">GenBank</a> | |
9277 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/290790096?report=graph&log$=nuclalign&from=2625&to=2633">Graphics</a> | |
9278 </p> | |
9279 | |
9280 <table class=hotspotstable> | |
9281 <tr> | |
9282 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
9283 </tr> | |
9284 <tr> | |
9285 <td>18.3 bits(9)</td> | |
9286 <td>11.9</td> | |
9287 <td>9/9(100%)</td> | |
9288 <td>0/9(0%)</td> | |
9289 <td>Plus/Plus</td> | |
9290 </tr> | |
9291 </table> | |
9292 | |
9293 <pre class=alignmentgraphic>Query 4 CCGTCGTGA 12 | |
9294 ||||||||| | |
9295 Subject 2625 CCGTCGTGA 2633</pre> | |
9296 </div> | |
9297 <div class=hotspot> | |
9298 <p class=range> | |
9299 <span class=range>Range 3: 2606 to 2612</span> | |
9300 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/290790096?report=genbank&log$=nuclalign&from=2606&to=2612">GenBank</a> | |
9301 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/290790096?report=graph&log$=nuclalign&from=2606&to=2612">Graphics</a> | |
9302 </p> | |
9303 | |
9304 <table class=hotspotstable> | |
9305 <tr> | |
9306 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
9307 </tr> | |
9308 <tr> | |
9309 <td>14.4 bits(7)</td> | |
9310 <td>185.8</td> | |
9311 <td>7/7(100%)</td> | |
9312 <td>0/7(0%)</td> | |
9313 <td>Plus/Plus</td> | |
9314 </tr> | |
9315 </table> | |
9316 | |
9317 <pre class=alignmentgraphic>Query 6 GTCGTGA 12 | |
9318 ||||||| | |
9319 Subject 2606 GTCGTGA 2612</pre> | |
9320 </div> | |
9321 | |
9322 </div> | |
9323 | |
9324 <div class=alignment id=hit56> | |
9325 | |
9326 <div class=linkheader> | |
9327 <div class=right><a href="#description56">Descriptions</a></div> | |
9328 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/281500859?report=genbank&log$=nuclalign">GenBank</a> | |
9329 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/281500859?report=graph&log$=nuclalign">Graphics</a> | |
9330 </div> | |
9331 | |
9332 <div class=title> | |
9333 <p class=hittitle>Chain 5, Structure Of The 60s Rrna For Eukaryotic Ribosome Based On Cryo-Em Map Of Thermomyces Lanuginosus Ribosome At 8.9a Resolution</p> | |
9334 <p class=titleinfo> | |
9335 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/281500859?report=genbank&log$=nuclalign">pdb|3JYX|5</a> | |
9336 <span class=b>Length:</span> 3170 | |
9337 <span class=b>Number of Matches:</span> 5 | |
9338 </p> | |
9339 </div> | |
9340 | |
9341 | |
9342 <div class=hotspot> | |
9343 <p class=range> | |
9344 <span class=range>Range 1: 2740 to 2748</span> | |
9345 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/281500859?report=genbank&log$=nuclalign&from=2740&to=2748">GenBank</a> | |
9346 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/281500859?report=graph&log$=nuclalign&from=2740&to=2748">Graphics</a> | |
9347 </p> | |
9348 | |
9349 <table class=hotspotstable> | |
9350 <tr> | |
9351 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
9352 </tr> | |
9353 <tr> | |
9354 <td>18.3 bits(9)</td> | |
9355 <td>11.9</td> | |
9356 <td>9/9(100%)</td> | |
9357 <td>0/9(0%)</td> | |
9358 <td>Plus/Plus</td> | |
9359 </tr> | |
9360 </table> | |
9361 | |
9362 <pre class=alignmentgraphic>Query 4 CCGTCGTGA 12 | |
9363 ||||||||| | |
9364 Subject 2740 CCGTCGTGA 2748</pre> | |
9365 </div> | |
9366 <div class=hotspot> | |
9367 <p class=range> | |
9368 <span class=range>Range 2: 1587 to 1580</span> | |
9369 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/281500859?report=genbank&log$=nuclalign&from=1587&to=1580">GenBank</a> | |
9370 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/281500859?report=graph&log$=nuclalign&from=1587&to=1580">Graphics</a> | |
9371 </p> | |
9372 | |
9373 <table class=hotspotstable> | |
9374 <tr> | |
9375 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
9376 </tr> | |
9377 <tr> | |
9378 <td>16.4 bits(8)</td> | |
9379 <td>47.0</td> | |
9380 <td>8/8(100%)</td> | |
9381 <td>0/8(0%)</td> | |
9382 <td>Plus/Minus</td> | |
9383 </tr> | |
9384 </table> | |
9385 | |
9386 <pre class=alignmentgraphic>Query 8 CGTGAAGA 15 | |
9387 |||||||| | |
9388 Subject 1587 CGTGAAGA 1580</pre> | |
9389 </div> | |
9390 <div class=hotspot> | |
9391 <p class=range> | |
9392 <span class=range>Range 3: 2222 to 2229</span> | |
9393 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/281500859?report=genbank&log$=nuclalign&from=2222&to=2229">GenBank</a> | |
9394 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/281500859?report=graph&log$=nuclalign&from=2222&to=2229">Graphics</a> | |
9395 </p> | |
9396 | |
9397 <table class=hotspotstable> | |
9398 <tr> | |
9399 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
9400 </tr> | |
9401 <tr> | |
9402 <td>16.4 bits(8)</td> | |
9403 <td>47.0</td> | |
9404 <td>8/8(100%)</td> | |
9405 <td>0/8(0%)</td> | |
9406 <td>Plus/Plus</td> | |
9407 </tr> | |
9408 </table> | |
9409 | |
9410 <pre class=alignmentgraphic>Query 9 GTGAAGAG 16 | |
9411 |||||||| | |
9412 Subject 2222 GTGAAGAG 2229</pre> | |
9413 </div> | |
9414 <div class=hotspot> | |
9415 <p class=range> | |
9416 <span class=range>Range 4: 1344 to 1350</span> | |
9417 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/281500859?report=genbank&log$=nuclalign&from=1344&to=1350">GenBank</a> | |
9418 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/281500859?report=graph&log$=nuclalign&from=1344&to=1350">Graphics</a> | |
9419 </p> | |
9420 | |
9421 <table class=hotspotstable> | |
9422 <tr> | |
9423 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
9424 </tr> | |
9425 <tr> | |
9426 <td>14.4 bits(7)</td> | |
9427 <td>185.8</td> | |
9428 <td>7/7(100%)</td> | |
9429 <td>0/7(0%)</td> | |
9430 <td>Plus/Plus</td> | |
9431 </tr> | |
9432 </table> | |
9433 | |
9434 <pre class=alignmentgraphic>Query 6 GTCGTGA 12 | |
9435 ||||||| | |
9436 Subject 1344 GTCGTGA 1350</pre> | |
9437 </div> | |
9438 <div class=hotspot> | |
9439 <p class=range> | |
9440 <span class=range>Range 5: 2003 to 2009</span> | |
9441 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/281500859?report=genbank&log$=nuclalign&from=2003&to=2009">GenBank</a> | |
9442 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/281500859?report=graph&log$=nuclalign&from=2003&to=2009">Graphics</a> | |
9443 </p> | |
9444 | |
9445 <table class=hotspotstable> | |
9446 <tr> | |
9447 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
9448 </tr> | |
9449 <tr> | |
9450 <td>14.4 bits(7)</td> | |
9451 <td>185.8</td> | |
9452 <td>7/7(100%)</td> | |
9453 <td>0/7(0%)</td> | |
9454 <td>Plus/Plus</td> | |
9455 </tr> | |
9456 </table> | |
9457 | |
9458 <pre class=alignmentgraphic>Query 9 GTGAAGA 15 | |
9459 ||||||| | |
9460 Subject 2003 GTGAAGA 2009</pre> | |
9461 </div> | |
9462 | |
9463 </div> | |
9464 | |
9465 <div class=alignment id=hit57> | |
9466 | |
9467 <div class=linkheader> | |
9468 <div class=right><a href="#description57">Descriptions</a></div> | |
9469 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/281500807?report=genbank&log$=nuclalign">GenBank</a> | |
9470 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/281500807?report=graph&log$=nuclalign">Graphics</a> | |
9471 </div> | |
9472 | |
9473 <div class=title> | |
9474 <p class=hittitle>Chain A, Structure Of The 40s Rrna And Proteins And PE TRNA FOR EUKARYOTIC Ribosome Based On Cryo-Em Map Of Thermomyces Lanuginosus Ribosome At 8.9a Resolution</p> | |
9475 <p class=titleinfo> | |
9476 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/281500807?report=genbank&log$=nuclalign">pdb|3JYV|A</a> | |
9477 <span class=b>Length:</span> 1761 | |
9478 <span class=b>Number of Matches:</span> 3 | |
9479 </p> | |
9480 </div> | |
9481 | |
9482 | |
9483 <div class=hotspot> | |
9484 <p class=range> | |
9485 <span class=range>Range 1: 1492 to 1500</span> | |
9486 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/281500807?report=genbank&log$=nuclalign&from=1492&to=1500">GenBank</a> | |
9487 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/281500807?report=graph&log$=nuclalign&from=1492&to=1500">Graphics</a> | |
9488 </p> | |
9489 | |
9490 <table class=hotspotstable> | |
9491 <tr> | |
9492 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
9493 </tr> | |
9494 <tr> | |
9495 <td>18.3 bits(9)</td> | |
9496 <td>11.9</td> | |
9497 <td>9/9(100%)</td> | |
9498 <td>0/9(0%)</td> | |
9499 <td>Plus/Plus</td> | |
9500 </tr> | |
9501 </table> | |
9502 | |
9503 <pre class=alignmentgraphic>Query 3 TCCGTCGTG 11 | |
9504 ||||||||| | |
9505 Subject 1492 TCCGTCGTG 1500</pre> | |
9506 </div> | |
9507 <div class=hotspot> | |
9508 <p class=range> | |
9509 <span class=range>Range 2: 981 to 987</span> | |
9510 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/281500807?report=genbank&log$=nuclalign&from=981&to=987">GenBank</a> | |
9511 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/281500807?report=graph&log$=nuclalign&from=981&to=987">Graphics</a> | |
9512 </p> | |
9513 | |
9514 <table class=hotspotstable> | |
9515 <tr> | |
9516 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
9517 </tr> | |
9518 <tr> | |
9519 <td>14.4 bits(7)</td> | |
9520 <td>185.8</td> | |
9521 <td>7/7(100%)</td> | |
9522 <td>0/7(0%)</td> | |
9523 <td>Plus/Plus</td> | |
9524 </tr> | |
9525 </table> | |
9526 | |
9527 <pre class=alignmentgraphic>Query 4 CCGTCGT 10 | |
9528 ||||||| | |
9529 Subject 981 CCGTCGT 987</pre> | |
9530 </div> | |
9531 <div class=hotspot> | |
9532 <p class=range> | |
9533 <span class=range>Range 3: 1533 to 1527</span> | |
9534 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/281500807?report=genbank&log$=nuclalign&from=1533&to=1527">GenBank</a> | |
9535 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/281500807?report=graph&log$=nuclalign&from=1533&to=1527">Graphics</a> | |
9536 </p> | |
9537 | |
9538 <table class=hotspotstable> | |
9539 <tr> | |
9540 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
9541 </tr> | |
9542 <tr> | |
9543 <td>14.4 bits(7)</td> | |
9544 <td>185.8</td> | |
9545 <td>7/7(100%)</td> | |
9546 <td>0/7(0%)</td> | |
9547 <td>Plus/Minus</td> | |
9548 </tr> | |
9549 </table> | |
9550 | |
9551 <pre class=alignmentgraphic>Query 10 TGAAGAG 16 | |
9552 ||||||| | |
9553 Subject 1533 TGAAGAG 1527</pre> | |
9554 </div> | |
9555 | |
9556 </div> | |
9557 | |
9558 <div class=alignment id=hit58> | |
9559 | |
9560 <div class=linkheader> | |
9561 <div class=right><a href="#description58">Descriptions</a></div> | |
9562 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/259090425?report=genbank&log$=nuclalign">GenBank</a> | |
9563 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/259090425?report=graph&log$=nuclalign">Graphics</a> | |
9564 </div> | |
9565 | |
9566 <div class=title> | |
9567 <p class=hittitle>Chain 3, Structure Of The Ribosomal 80s-Eef2-Sordarin Complex From Yeast Obtained By Docking Atomic Models For Rna And Protein Components Into A 11.7 A Cryo-Em Map. This File, 1s1i, Contains 60s Subunit. The 40s Ribosomal Subunit Is In File 1s1h.</p> | |
9568 <p class=titleinfo> | |
9569 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/259090425?report=genbank&log$=nuclalign">pdb|1S1I|3</a> | |
9570 <span class=b>Length:</span> 2999 | |
9571 <span class=b>Number of Matches:</span> 2 | |
9572 </p> | |
9573 </div> | |
9574 | |
9575 | |
9576 <div class=hotspot> | |
9577 <p class=range> | |
9578 <span class=range>Range 1: 2710 to 2718</span> | |
9579 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/259090425?report=genbank&log$=nuclalign&from=2710&to=2718">GenBank</a> | |
9580 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/259090425?report=graph&log$=nuclalign&from=2710&to=2718">Graphics</a> | |
9581 </p> | |
9582 | |
9583 <table class=hotspotstable> | |
9584 <tr> | |
9585 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
9586 </tr> | |
9587 <tr> | |
9588 <td>18.3 bits(9)</td> | |
9589 <td>11.9</td> | |
9590 <td>9/9(100%)</td> | |
9591 <td>0/9(0%)</td> | |
9592 <td>Plus/Plus</td> | |
9593 </tr> | |
9594 </table> | |
9595 | |
9596 <pre class=alignmentgraphic>Query 4 CCGTCGTGA 12 | |
9597 ||||||||| | |
9598 Subject 2710 CCGTCGTGA 2718</pre> | |
9599 </div> | |
9600 <div class=hotspot> | |
9601 <p class=range> | |
9602 <span class=range>Range 2: 2691 to 2697</span> | |
9603 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/259090425?report=genbank&log$=nuclalign&from=2691&to=2697">GenBank</a> | |
9604 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/259090425?report=graph&log$=nuclalign&from=2691&to=2697">Graphics</a> | |
9605 </p> | |
9606 | |
9607 <table class=hotspotstable> | |
9608 <tr> | |
9609 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
9610 </tr> | |
9611 <tr> | |
9612 <td>14.4 bits(7)</td> | |
9613 <td>185.8</td> | |
9614 <td>7/7(100%)</td> | |
9615 <td>0/7(0%)</td> | |
9616 <td>Plus/Plus</td> | |
9617 </tr> | |
9618 </table> | |
9619 | |
9620 <pre class=alignmentgraphic>Query 6 GTCGTGA 12 | |
9621 ||||||| | |
9622 Subject 2691 GTCGTGA 2697</pre> | |
9623 </div> | |
9624 | |
9625 </div> | |
9626 | |
9627 <div class=alignment id=hit59> | |
9628 | |
9629 <div class=linkheader> | |
9630 <div class=right><a href="#description59">Descriptions</a></div> | |
9631 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/208435493?report=genbank&log$=nuclalign">GenBank</a> | |
9632 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/208435493?report=graph&log$=nuclalign">Graphics</a> | |
9633 </div> | |
9634 | |
9635 <div class=title> | |
9636 <p class=hittitle>Chain 0, Negamycin Binds To The Wall Of The Nascent Chain Exit Tunnel Of The 50s Ribosomal Subunit</p> | |
9637 <p class=titleinfo> | |
9638 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/208435493?report=genbank&log$=nuclalign">pdb|2QEX|0</a> | |
9639 <span class=b>Length:</span> 2772 | |
9640 <span class=b>Number of Matches:</span> 2 | |
9641 </p> | |
9642 </div> | |
9643 | |
9644 | |
9645 <div class=hotspot> | |
9646 <p class=range> | |
9647 <span class=range>Range 1: 2476 to 2484</span> | |
9648 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/208435493?report=genbank&log$=nuclalign&from=2476&to=2484">GenBank</a> | |
9649 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/208435493?report=graph&log$=nuclalign&from=2476&to=2484">Graphics</a> | |
9650 </p> | |
9651 | |
9652 <table class=hotspotstable> | |
9653 <tr> | |
9654 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
9655 </tr> | |
9656 <tr> | |
9657 <td>18.3 bits(9)</td> | |
9658 <td>11.9</td> | |
9659 <td>9/9(100%)</td> | |
9660 <td>0/9(0%)</td> | |
9661 <td>Plus/Plus</td> | |
9662 </tr> | |
9663 </table> | |
9664 | |
9665 <pre class=alignmentgraphic>Query 4 CCGTCGTGA 12 | |
9666 ||||||||| | |
9667 Subject 2476 CCGTCGTGA 2484</pre> | |
9668 </div> | |
9669 <div class=hotspot> | |
9670 <p class=range> | |
9671 <span class=range>Range 2: 2457 to 2463</span> | |
9672 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/208435493?report=genbank&log$=nuclalign&from=2457&to=2463">GenBank</a> | |
9673 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/208435493?report=graph&log$=nuclalign&from=2457&to=2463">Graphics</a> | |
9674 </p> | |
9675 | |
9676 <table class=hotspotstable> | |
9677 <tr> | |
9678 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
9679 </tr> | |
9680 <tr> | |
9681 <td>14.4 bits(7)</td> | |
9682 <td>185.8</td> | |
9683 <td>7/7(100%)</td> | |
9684 <td>0/7(0%)</td> | |
9685 <td>Plus/Plus</td> | |
9686 </tr> | |
9687 </table> | |
9688 | |
9689 <pre class=alignmentgraphic>Query 6 GTCGTGA 12 | |
9690 ||||||| | |
9691 Subject 2457 GTCGTGA 2463</pre> | |
9692 </div> | |
9693 | |
9694 </div> | |
9695 | |
9696 <div class=alignment id=hit60> | |
9697 | |
9698 <div class=linkheader> | |
9699 <div class=right><a href="#description60">Descriptions</a></div> | |
9700 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/194368703?report=genbank&log$=nuclalign">GenBank</a> | |
9701 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/194368703?report=graph&log$=nuclalign">Graphics</a> | |
9702 </div> | |
9703 | |
9704 <div class=title> | |
9705 <p class=hittitle>Chain 0, The Structure Of The Antibiotic Linezolid Bound To The Large Ribosomal Subunit Of Haloarcula Marismortui</p> | |
9706 <p class=titleinfo> | |
9707 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/194368703?report=genbank&log$=nuclalign">pdb|3CPW|0</a> | |
9708 <span class=b>Length:</span> 2922 | |
9709 <span class=b>Number of Matches:</span> 2 | |
9710 </p> | |
9711 </div> | |
9712 | |
9713 | |
9714 <div class=hotspot> | |
9715 <p class=range> | |
9716 <span class=range>Range 1: 2624 to 2632</span> | |
9717 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/194368703?report=genbank&log$=nuclalign&from=2624&to=2632">GenBank</a> | |
9718 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/194368703?report=graph&log$=nuclalign&from=2624&to=2632">Graphics</a> | |
9719 </p> | |
9720 | |
9721 <table class=hotspotstable> | |
9722 <tr> | |
9723 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
9724 </tr> | |
9725 <tr> | |
9726 <td>18.3 bits(9)</td> | |
9727 <td>11.9</td> | |
9728 <td>9/9(100%)</td> | |
9729 <td>0/9(0%)</td> | |
9730 <td>Plus/Plus</td> | |
9731 </tr> | |
9732 </table> | |
9733 | |
9734 <pre class=alignmentgraphic>Query 4 CCGTCGTGA 12 | |
9735 ||||||||| | |
9736 Subject 2624 CCGTCGTGA 2632</pre> | |
9737 </div> | |
9738 <div class=hotspot> | |
9739 <p class=range> | |
9740 <span class=range>Range 2: 2605 to 2611</span> | |
9741 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/194368703?report=genbank&log$=nuclalign&from=2605&to=2611">GenBank</a> | |
9742 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/194368703?report=graph&log$=nuclalign&from=2605&to=2611">Graphics</a> | |
9743 </p> | |
9744 | |
9745 <table class=hotspotstable> | |
9746 <tr> | |
9747 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
9748 </tr> | |
9749 <tr> | |
9750 <td>14.4 bits(7)</td> | |
9751 <td>185.8</td> | |
9752 <td>7/7(100%)</td> | |
9753 <td>0/7(0%)</td> | |
9754 <td>Plus/Plus</td> | |
9755 </tr> | |
9756 </table> | |
9757 | |
9758 <pre class=alignmentgraphic>Query 6 GTCGTGA 12 | |
9759 ||||||| | |
9760 Subject 2605 GTCGTGA 2611</pre> | |
9761 </div> | |
9762 | |
9763 </div> | |
9764 | |
9765 <div class=alignment id=hit61> | |
9766 | |
9767 <div class=linkheader> | |
9768 <div class=right><a href="#description61">Descriptions</a></div> | |
9769 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/188596372?report=genbank&log$=nuclalign">GenBank</a> | |
9770 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/188596372?report=graph&log$=nuclalign">Graphics</a> | |
9771 </div> | |
9772 | |
9773 <div class=title> | |
9774 <p class=hittitle>Chain 0, Structure Of Anisomycin Resistant 50s Ribosomal Subunit: 23s Rrna Mutation G2616a </p> | |
9775 <p class=titleinfo> | |
9776 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/188596372?report=genbank&log$=nuclalign">pdb|3CCV|0</a> | |
9777 <span class=b>Length:</span> 2923 | |
9778 <span class=b>Number of Matches:</span> 3 | |
9779 </p> | |
9780 </div> | |
9781 | |
9782 <a class=showmoretitles onclick="toggle_visibility('moretitles61'); return false;" href=''> | |
9783 See 1 more title(s) | |
9784 </a> | |
9785 | |
9786 <div class=moretitles id=moretitles61 style="display: none"> | |
9787 <div class=title> | |
9788 <p class=hittitle>Chain 0, Co-cystal Of Large Ribosomal Subunit Mutant G2616a With Cc-puromycin</p> | |
9789 <p class=titleinfo> | |
9790 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/188596403?report=genbank&log$=nuclalign">pdb|3CD6|0</a> | |
9791 </p> | |
9792 </div> | |
9793 </div> | |
9794 | |
9795 <div class=hotspot> | |
9796 <p class=range> | |
9797 <span class=range>Range 1: 305 to 297</span> | |
9798 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596372?report=genbank&log$=nuclalign&from=305&to=297">GenBank</a> | |
9799 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596372?report=graph&log$=nuclalign&from=305&to=297">Graphics</a> | |
9800 </p> | |
9801 | |
9802 <table class=hotspotstable> | |
9803 <tr> | |
9804 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
9805 </tr> | |
9806 <tr> | |
9807 <td>18.3 bits(9)</td> | |
9808 <td>11.9</td> | |
9809 <td>9/9(100%)</td> | |
9810 <td>0/9(0%)</td> | |
9811 <td>Plus/Minus</td> | |
9812 </tr> | |
9813 </table> | |
9814 | |
9815 <pre class=alignmentgraphic>Query 7 TCGTGAAGA 15 | |
9816 ||||||||| | |
9817 Subject 305 TCGTGAAGA 297</pre> | |
9818 </div> | |
9819 <div class=hotspot> | |
9820 <p class=range> | |
9821 <span class=range>Range 2: 2625 to 2633</span> | |
9822 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596372?report=genbank&log$=nuclalign&from=2625&to=2633">GenBank</a> | |
9823 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596372?report=graph&log$=nuclalign&from=2625&to=2633">Graphics</a> | |
9824 </p> | |
9825 | |
9826 <table class=hotspotstable> | |
9827 <tr> | |
9828 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
9829 </tr> | |
9830 <tr> | |
9831 <td>18.3 bits(9)</td> | |
9832 <td>11.9</td> | |
9833 <td>9/9(100%)</td> | |
9834 <td>0/9(0%)</td> | |
9835 <td>Plus/Plus</td> | |
9836 </tr> | |
9837 </table> | |
9838 | |
9839 <pre class=alignmentgraphic>Query 4 CCGTCGTGA 12 | |
9840 ||||||||| | |
9841 Subject 2625 CCGTCGTGA 2633</pre> | |
9842 </div> | |
9843 <div class=hotspot> | |
9844 <p class=range> | |
9845 <span class=range>Range 3: 2606 to 2612</span> | |
9846 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596372?report=genbank&log$=nuclalign&from=2606&to=2612">GenBank</a> | |
9847 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596372?report=graph&log$=nuclalign&from=2606&to=2612">Graphics</a> | |
9848 </p> | |
9849 | |
9850 <table class=hotspotstable> | |
9851 <tr> | |
9852 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
9853 </tr> | |
9854 <tr> | |
9855 <td>14.4 bits(7)</td> | |
9856 <td>185.8</td> | |
9857 <td>7/7(100%)</td> | |
9858 <td>0/7(0%)</td> | |
9859 <td>Plus/Plus</td> | |
9860 </tr> | |
9861 </table> | |
9862 | |
9863 <pre class=alignmentgraphic>Query 6 GTCGTGA 12 | |
9864 ||||||| | |
9865 Subject 2606 GTCGTGA 2612</pre> | |
9866 </div> | |
9867 | |
9868 </div> | |
9869 | |
9870 <div class=alignment id=hit62> | |
9871 | |
9872 <div class=linkheader> | |
9873 <div class=right><a href="#description62">Descriptions</a></div> | |
9874 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/188596341?report=genbank&log$=nuclalign">GenBank</a> | |
9875 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/188596341?report=graph&log$=nuclalign">Graphics</a> | |
9876 </div> | |
9877 | |
9878 <div class=title> | |
9879 <p class=hittitle>Chain 0, Structure Of Anisomycin Resistant 50s Ribosomal Subunit: 23s Rrna Mutation G2482c</p> | |
9880 <p class=titleinfo> | |
9881 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/188596341?report=genbank&log$=nuclalign">pdb|3CCU|0</a> | |
9882 <span class=b>Length:</span> 2923 | |
9883 <span class=b>Number of Matches:</span> 3 | |
9884 </p> | |
9885 </div> | |
9886 | |
9887 | |
9888 <div class=hotspot> | |
9889 <p class=range> | |
9890 <span class=range>Range 1: 305 to 297</span> | |
9891 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596341?report=genbank&log$=nuclalign&from=305&to=297">GenBank</a> | |
9892 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596341?report=graph&log$=nuclalign&from=305&to=297">Graphics</a> | |
9893 </p> | |
9894 | |
9895 <table class=hotspotstable> | |
9896 <tr> | |
9897 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
9898 </tr> | |
9899 <tr> | |
9900 <td>18.3 bits(9)</td> | |
9901 <td>11.9</td> | |
9902 <td>9/9(100%)</td> | |
9903 <td>0/9(0%)</td> | |
9904 <td>Plus/Minus</td> | |
9905 </tr> | |
9906 </table> | |
9907 | |
9908 <pre class=alignmentgraphic>Query 7 TCGTGAAGA 15 | |
9909 ||||||||| | |
9910 Subject 305 TCGTGAAGA 297</pre> | |
9911 </div> | |
9912 <div class=hotspot> | |
9913 <p class=range> | |
9914 <span class=range>Range 2: 2625 to 2633</span> | |
9915 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596341?report=genbank&log$=nuclalign&from=2625&to=2633">GenBank</a> | |
9916 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596341?report=graph&log$=nuclalign&from=2625&to=2633">Graphics</a> | |
9917 </p> | |
9918 | |
9919 <table class=hotspotstable> | |
9920 <tr> | |
9921 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
9922 </tr> | |
9923 <tr> | |
9924 <td>18.3 bits(9)</td> | |
9925 <td>11.9</td> | |
9926 <td>9/9(100%)</td> | |
9927 <td>0/9(0%)</td> | |
9928 <td>Plus/Plus</td> | |
9929 </tr> | |
9930 </table> | |
9931 | |
9932 <pre class=alignmentgraphic>Query 4 CCGTCGTGA 12 | |
9933 ||||||||| | |
9934 Subject 2625 CCGTCGTGA 2633</pre> | |
9935 </div> | |
9936 <div class=hotspot> | |
9937 <p class=range> | |
9938 <span class=range>Range 3: 2606 to 2612</span> | |
9939 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596341?report=genbank&log$=nuclalign&from=2606&to=2612">GenBank</a> | |
9940 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596341?report=graph&log$=nuclalign&from=2606&to=2612">Graphics</a> | |
9941 </p> | |
9942 | |
9943 <table class=hotspotstable> | |
9944 <tr> | |
9945 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
9946 </tr> | |
9947 <tr> | |
9948 <td>14.4 bits(7)</td> | |
9949 <td>185.8</td> | |
9950 <td>7/7(100%)</td> | |
9951 <td>0/7(0%)</td> | |
9952 <td>Plus/Plus</td> | |
9953 </tr> | |
9954 </table> | |
9955 | |
9956 <pre class=alignmentgraphic>Query 6 GTCGTGA 12 | |
9957 ||||||| | |
9958 Subject 2606 GTCGTGA 2612</pre> | |
9959 </div> | |
9960 | |
9961 </div> | |
9962 | |
9963 <div class=alignment id=hit63> | |
9964 | |
9965 <div class=linkheader> | |
9966 <div class=right><a href="#description63">Descriptions</a></div> | |
9967 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/188596310?report=genbank&log$=nuclalign">GenBank</a> | |
9968 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/188596310?report=graph&log$=nuclalign">Graphics</a> | |
9969 </div> | |
9970 | |
9971 <div class=title> | |
9972 <p class=hittitle>Chain 0, Structure Of Anisomycin Resistant 50s Ribosomal Subunit: 23s Rrna Mutation G2482a</p> | |
9973 <p class=titleinfo> | |
9974 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/188596310?report=genbank&log$=nuclalign">pdb|3CCS|0</a> | |
9975 <span class=b>Length:</span> 2923 | |
9976 <span class=b>Number of Matches:</span> 3 | |
9977 </p> | |
9978 </div> | |
9979 | |
9980 | |
9981 <div class=hotspot> | |
9982 <p class=range> | |
9983 <span class=range>Range 1: 305 to 297</span> | |
9984 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596310?report=genbank&log$=nuclalign&from=305&to=297">GenBank</a> | |
9985 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596310?report=graph&log$=nuclalign&from=305&to=297">Graphics</a> | |
9986 </p> | |
9987 | |
9988 <table class=hotspotstable> | |
9989 <tr> | |
9990 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
9991 </tr> | |
9992 <tr> | |
9993 <td>18.3 bits(9)</td> | |
9994 <td>11.9</td> | |
9995 <td>9/9(100%)</td> | |
9996 <td>0/9(0%)</td> | |
9997 <td>Plus/Minus</td> | |
9998 </tr> | |
9999 </table> | |
10000 | |
10001 <pre class=alignmentgraphic>Query 7 TCGTGAAGA 15 | |
10002 ||||||||| | |
10003 Subject 305 TCGTGAAGA 297</pre> | |
10004 </div> | |
10005 <div class=hotspot> | |
10006 <p class=range> | |
10007 <span class=range>Range 2: 2625 to 2633</span> | |
10008 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596310?report=genbank&log$=nuclalign&from=2625&to=2633">GenBank</a> | |
10009 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596310?report=graph&log$=nuclalign&from=2625&to=2633">Graphics</a> | |
10010 </p> | |
10011 | |
10012 <table class=hotspotstable> | |
10013 <tr> | |
10014 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
10015 </tr> | |
10016 <tr> | |
10017 <td>18.3 bits(9)</td> | |
10018 <td>11.9</td> | |
10019 <td>9/9(100%)</td> | |
10020 <td>0/9(0%)</td> | |
10021 <td>Plus/Plus</td> | |
10022 </tr> | |
10023 </table> | |
10024 | |
10025 <pre class=alignmentgraphic>Query 4 CCGTCGTGA 12 | |
10026 ||||||||| | |
10027 Subject 2625 CCGTCGTGA 2633</pre> | |
10028 </div> | |
10029 <div class=hotspot> | |
10030 <p class=range> | |
10031 <span class=range>Range 3: 2606 to 2612</span> | |
10032 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596310?report=genbank&log$=nuclalign&from=2606&to=2612">GenBank</a> | |
10033 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596310?report=graph&log$=nuclalign&from=2606&to=2612">Graphics</a> | |
10034 </p> | |
10035 | |
10036 <table class=hotspotstable> | |
10037 <tr> | |
10038 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
10039 </tr> | |
10040 <tr> | |
10041 <td>14.4 bits(7)</td> | |
10042 <td>185.8</td> | |
10043 <td>7/7(100%)</td> | |
10044 <td>0/7(0%)</td> | |
10045 <td>Plus/Plus</td> | |
10046 </tr> | |
10047 </table> | |
10048 | |
10049 <pre class=alignmentgraphic>Query 6 GTCGTGA 12 | |
10050 ||||||| | |
10051 Subject 2606 GTCGTGA 2612</pre> | |
10052 </div> | |
10053 | |
10054 </div> | |
10055 | |
10056 <div class=alignment id=hit64> | |
10057 | |
10058 <div class=linkheader> | |
10059 <div class=right><a href="#description64">Descriptions</a></div> | |
10060 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/188596279?report=genbank&log$=nuclalign">GenBank</a> | |
10061 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/188596279?report=graph&log$=nuclalign">Graphics</a> | |
10062 </div> | |
10063 | |
10064 <div class=title> | |
10065 <p class=hittitle>Chain 0, Structure Of Anisomycin Resistant 50s Ribosomal Subunit: 23s Rrna Mutation A2488c. Density For Anisomycin Is Visible But Not Included In The Model.</p> | |
10066 <p class=titleinfo> | |
10067 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/188596279?report=genbank&log$=nuclalign">pdb|3CCR|0</a> | |
10068 <span class=b>Length:</span> 2923 | |
10069 <span class=b>Number of Matches:</span> 3 | |
10070 </p> | |
10071 </div> | |
10072 | |
10073 | |
10074 <div class=hotspot> | |
10075 <p class=range> | |
10076 <span class=range>Range 1: 305 to 297</span> | |
10077 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596279?report=genbank&log$=nuclalign&from=305&to=297">GenBank</a> | |
10078 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596279?report=graph&log$=nuclalign&from=305&to=297">Graphics</a> | |
10079 </p> | |
10080 | |
10081 <table class=hotspotstable> | |
10082 <tr> | |
10083 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
10084 </tr> | |
10085 <tr> | |
10086 <td>18.3 bits(9)</td> | |
10087 <td>11.9</td> | |
10088 <td>9/9(100%)</td> | |
10089 <td>0/9(0%)</td> | |
10090 <td>Plus/Minus</td> | |
10091 </tr> | |
10092 </table> | |
10093 | |
10094 <pre class=alignmentgraphic>Query 7 TCGTGAAGA 15 | |
10095 ||||||||| | |
10096 Subject 305 TCGTGAAGA 297</pre> | |
10097 </div> | |
10098 <div class=hotspot> | |
10099 <p class=range> | |
10100 <span class=range>Range 2: 2625 to 2633</span> | |
10101 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596279?report=genbank&log$=nuclalign&from=2625&to=2633">GenBank</a> | |
10102 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596279?report=graph&log$=nuclalign&from=2625&to=2633">Graphics</a> | |
10103 </p> | |
10104 | |
10105 <table class=hotspotstable> | |
10106 <tr> | |
10107 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
10108 </tr> | |
10109 <tr> | |
10110 <td>18.3 bits(9)</td> | |
10111 <td>11.9</td> | |
10112 <td>9/9(100%)</td> | |
10113 <td>0/9(0%)</td> | |
10114 <td>Plus/Plus</td> | |
10115 </tr> | |
10116 </table> | |
10117 | |
10118 <pre class=alignmentgraphic>Query 4 CCGTCGTGA 12 | |
10119 ||||||||| | |
10120 Subject 2625 CCGTCGTGA 2633</pre> | |
10121 </div> | |
10122 <div class=hotspot> | |
10123 <p class=range> | |
10124 <span class=range>Range 3: 2606 to 2612</span> | |
10125 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596279?report=genbank&log$=nuclalign&from=2606&to=2612">GenBank</a> | |
10126 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596279?report=graph&log$=nuclalign&from=2606&to=2612">Graphics</a> | |
10127 </p> | |
10128 | |
10129 <table class=hotspotstable> | |
10130 <tr> | |
10131 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
10132 </tr> | |
10133 <tr> | |
10134 <td>14.4 bits(7)</td> | |
10135 <td>185.8</td> | |
10136 <td>7/7(100%)</td> | |
10137 <td>0/7(0%)</td> | |
10138 <td>Plus/Plus</td> | |
10139 </tr> | |
10140 </table> | |
10141 | |
10142 <pre class=alignmentgraphic>Query 6 GTCGTGA 12 | |
10143 ||||||| | |
10144 Subject 2606 GTCGTGA 2612</pre> | |
10145 </div> | |
10146 | |
10147 </div> | |
10148 | |
10149 <div class=alignment id=hit65> | |
10150 | |
10151 <div class=linkheader> | |
10152 <div class=right><a href="#description65">Descriptions</a></div> | |
10153 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/188596248?report=genbank&log$=nuclalign">GenBank</a> | |
10154 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/188596248?report=graph&log$=nuclalign">Graphics</a> | |
10155 </div> | |
10156 | |
10157 <div class=title> | |
10158 <p class=hittitle>Chain 0, Structure Of Anisomycin Resistant 50s Ribosomal Subunit: 23s Rrna Mutation A2488u</p> | |
10159 <p class=titleinfo> | |
10160 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/188596248?report=genbank&log$=nuclalign">pdb|3CCQ|0</a> | |
10161 <span class=b>Length:</span> 2923 | |
10162 <span class=b>Number of Matches:</span> 3 | |
10163 </p> | |
10164 </div> | |
10165 | |
10166 | |
10167 <div class=hotspot> | |
10168 <p class=range> | |
10169 <span class=range>Range 1: 305 to 297</span> | |
10170 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596248?report=genbank&log$=nuclalign&from=305&to=297">GenBank</a> | |
10171 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596248?report=graph&log$=nuclalign&from=305&to=297">Graphics</a> | |
10172 </p> | |
10173 | |
10174 <table class=hotspotstable> | |
10175 <tr> | |
10176 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
10177 </tr> | |
10178 <tr> | |
10179 <td>18.3 bits(9)</td> | |
10180 <td>11.9</td> | |
10181 <td>9/9(100%)</td> | |
10182 <td>0/9(0%)</td> | |
10183 <td>Plus/Minus</td> | |
10184 </tr> | |
10185 </table> | |
10186 | |
10187 <pre class=alignmentgraphic>Query 7 TCGTGAAGA 15 | |
10188 ||||||||| | |
10189 Subject 305 TCGTGAAGA 297</pre> | |
10190 </div> | |
10191 <div class=hotspot> | |
10192 <p class=range> | |
10193 <span class=range>Range 2: 2625 to 2633</span> | |
10194 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596248?report=genbank&log$=nuclalign&from=2625&to=2633">GenBank</a> | |
10195 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596248?report=graph&log$=nuclalign&from=2625&to=2633">Graphics</a> | |
10196 </p> | |
10197 | |
10198 <table class=hotspotstable> | |
10199 <tr> | |
10200 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
10201 </tr> | |
10202 <tr> | |
10203 <td>18.3 bits(9)</td> | |
10204 <td>11.9</td> | |
10205 <td>9/9(100%)</td> | |
10206 <td>0/9(0%)</td> | |
10207 <td>Plus/Plus</td> | |
10208 </tr> | |
10209 </table> | |
10210 | |
10211 <pre class=alignmentgraphic>Query 4 CCGTCGTGA 12 | |
10212 ||||||||| | |
10213 Subject 2625 CCGTCGTGA 2633</pre> | |
10214 </div> | |
10215 <div class=hotspot> | |
10216 <p class=range> | |
10217 <span class=range>Range 3: 2606 to 2612</span> | |
10218 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596248?report=genbank&log$=nuclalign&from=2606&to=2612">GenBank</a> | |
10219 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596248?report=graph&log$=nuclalign&from=2606&to=2612">Graphics</a> | |
10220 </p> | |
10221 | |
10222 <table class=hotspotstable> | |
10223 <tr> | |
10224 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
10225 </tr> | |
10226 <tr> | |
10227 <td>14.4 bits(7)</td> | |
10228 <td>185.8</td> | |
10229 <td>7/7(100%)</td> | |
10230 <td>0/7(0%)</td> | |
10231 <td>Plus/Plus</td> | |
10232 </tr> | |
10233 </table> | |
10234 | |
10235 <pre class=alignmentgraphic>Query 6 GTCGTGA 12 | |
10236 ||||||| | |
10237 Subject 2606 GTCGTGA 2612</pre> | |
10238 </div> | |
10239 | |
10240 </div> | |
10241 | |
10242 <div class=alignment id=hit66> | |
10243 | |
10244 <div class=linkheader> | |
10245 <div class=right><a href="#description66">Descriptions</a></div> | |
10246 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/188596217?report=genbank&log$=nuclalign">GenBank</a> | |
10247 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/188596217?report=graph&log$=nuclalign">Graphics</a> | |
10248 </div> | |
10249 | |
10250 <div class=title> | |
10251 <p class=hittitle>Chain 0, Structure Of Anisomycin Resistant 50s Ribosomal Subunit: 23s Rrna Mutation G2611u</p> | |
10252 <p class=titleinfo> | |
10253 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/188596217?report=genbank&log$=nuclalign">pdb|3CCM|0</a> | |
10254 <span class=b>Length:</span> 2923 | |
10255 <span class=b>Number of Matches:</span> 2 | |
10256 </p> | |
10257 </div> | |
10258 | |
10259 | |
10260 <div class=hotspot> | |
10261 <p class=range> | |
10262 <span class=range>Range 1: 305 to 297</span> | |
10263 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596217?report=genbank&log$=nuclalign&from=305&to=297">GenBank</a> | |
10264 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596217?report=graph&log$=nuclalign&from=305&to=297">Graphics</a> | |
10265 </p> | |
10266 | |
10267 <table class=hotspotstable> | |
10268 <tr> | |
10269 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
10270 </tr> | |
10271 <tr> | |
10272 <td>18.3 bits(9)</td> | |
10273 <td>11.9</td> | |
10274 <td>9/9(100%)</td> | |
10275 <td>0/9(0%)</td> | |
10276 <td>Plus/Minus</td> | |
10277 </tr> | |
10278 </table> | |
10279 | |
10280 <pre class=alignmentgraphic>Query 7 TCGTGAAGA 15 | |
10281 ||||||||| | |
10282 Subject 305 TCGTGAAGA 297</pre> | |
10283 </div> | |
10284 <div class=hotspot> | |
10285 <p class=range> | |
10286 <span class=range>Range 2: 2625 to 2633</span> | |
10287 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596217?report=genbank&log$=nuclalign&from=2625&to=2633">GenBank</a> | |
10288 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596217?report=graph&log$=nuclalign&from=2625&to=2633">Graphics</a> | |
10289 </p> | |
10290 | |
10291 <table class=hotspotstable> | |
10292 <tr> | |
10293 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
10294 </tr> | |
10295 <tr> | |
10296 <td>18.3 bits(9)</td> | |
10297 <td>11.9</td> | |
10298 <td>9/9(100%)</td> | |
10299 <td>0/9(0%)</td> | |
10300 <td>Plus/Plus</td> | |
10301 </tr> | |
10302 </table> | |
10303 | |
10304 <pre class=alignmentgraphic>Query 4 CCGTCGTGA 12 | |
10305 ||||||||| | |
10306 Subject 2625 CCGTCGTGA 2633</pre> | |
10307 </div> | |
10308 | |
10309 </div> | |
10310 | |
10311 <div class=alignment id=hit67> | |
10312 | |
10313 <div class=linkheader> | |
10314 <div class=right><a href="#description67">Descriptions</a></div> | |
10315 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/188596186?report=genbank&log$=nuclalign">GenBank</a> | |
10316 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/188596186?report=graph&log$=nuclalign">Graphics</a> | |
10317 </div> | |
10318 | |
10319 <div class=title> | |
10320 <p class=hittitle>Chain 0, Structure Of Anisomycin Resistant 50s Ribosomal Subunit: 23s Rrna Mutation U2535c. Density For Anisomycin Is Visible But Not Included In Model.</p> | |
10321 <p class=titleinfo> | |
10322 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/188596186?report=genbank&log$=nuclalign">pdb|3CCL|0</a> | |
10323 <span class=b>Length:</span> 2923 | |
10324 <span class=b>Number of Matches:</span> 3 | |
10325 </p> | |
10326 </div> | |
10327 | |
10328 | |
10329 <div class=hotspot> | |
10330 <p class=range> | |
10331 <span class=range>Range 1: 305 to 297</span> | |
10332 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596186?report=genbank&log$=nuclalign&from=305&to=297">GenBank</a> | |
10333 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596186?report=graph&log$=nuclalign&from=305&to=297">Graphics</a> | |
10334 </p> | |
10335 | |
10336 <table class=hotspotstable> | |
10337 <tr> | |
10338 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
10339 </tr> | |
10340 <tr> | |
10341 <td>18.3 bits(9)</td> | |
10342 <td>11.9</td> | |
10343 <td>9/9(100%)</td> | |
10344 <td>0/9(0%)</td> | |
10345 <td>Plus/Minus</td> | |
10346 </tr> | |
10347 </table> | |
10348 | |
10349 <pre class=alignmentgraphic>Query 7 TCGTGAAGA 15 | |
10350 ||||||||| | |
10351 Subject 305 TCGTGAAGA 297</pre> | |
10352 </div> | |
10353 <div class=hotspot> | |
10354 <p class=range> | |
10355 <span class=range>Range 2: 2625 to 2633</span> | |
10356 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596186?report=genbank&log$=nuclalign&from=2625&to=2633">GenBank</a> | |
10357 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596186?report=graph&log$=nuclalign&from=2625&to=2633">Graphics</a> | |
10358 </p> | |
10359 | |
10360 <table class=hotspotstable> | |
10361 <tr> | |
10362 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
10363 </tr> | |
10364 <tr> | |
10365 <td>18.3 bits(9)</td> | |
10366 <td>11.9</td> | |
10367 <td>9/9(100%)</td> | |
10368 <td>0/9(0%)</td> | |
10369 <td>Plus/Plus</td> | |
10370 </tr> | |
10371 </table> | |
10372 | |
10373 <pre class=alignmentgraphic>Query 4 CCGTCGTGA 12 | |
10374 ||||||||| | |
10375 Subject 2625 CCGTCGTGA 2633</pre> | |
10376 </div> | |
10377 <div class=hotspot> | |
10378 <p class=range> | |
10379 <span class=range>Range 3: 2606 to 2612</span> | |
10380 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596186?report=genbank&log$=nuclalign&from=2606&to=2612">GenBank</a> | |
10381 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596186?report=graph&log$=nuclalign&from=2606&to=2612">Graphics</a> | |
10382 </p> | |
10383 | |
10384 <table class=hotspotstable> | |
10385 <tr> | |
10386 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
10387 </tr> | |
10388 <tr> | |
10389 <td>14.4 bits(7)</td> | |
10390 <td>185.8</td> | |
10391 <td>7/7(100%)</td> | |
10392 <td>0/7(0%)</td> | |
10393 <td>Plus/Plus</td> | |
10394 </tr> | |
10395 </table> | |
10396 | |
10397 <pre class=alignmentgraphic>Query 6 GTCGTGA 12 | |
10398 ||||||| | |
10399 Subject 2606 GTCGTGA 2612</pre> | |
10400 </div> | |
10401 | |
10402 </div> | |
10403 | |
10404 <div class=alignment id=hit68> | |
10405 | |
10406 <div class=linkheader> | |
10407 <div class=right><a href="#description68">Descriptions</a></div> | |
10408 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/188596155?report=genbank&log$=nuclalign">GenBank</a> | |
10409 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/188596155?report=graph&log$=nuclalign">Graphics</a> | |
10410 </div> | |
10411 | |
10412 <div class=title> | |
10413 <p class=hittitle>Chain 0, Structure Of Anisomycin Resistant 50s Ribosomal Subunit: 23s Rrna Mutation C2534u</p> | |
10414 <p class=titleinfo> | |
10415 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/188596155?report=genbank&log$=nuclalign">pdb|3CCJ|0</a> | |
10416 <span class=b>Length:</span> 2923 | |
10417 <span class=b>Number of Matches:</span> 3 | |
10418 </p> | |
10419 </div> | |
10420 | |
10421 | |
10422 <div class=hotspot> | |
10423 <p class=range> | |
10424 <span class=range>Range 1: 305 to 297</span> | |
10425 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596155?report=genbank&log$=nuclalign&from=305&to=297">GenBank</a> | |
10426 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596155?report=graph&log$=nuclalign&from=305&to=297">Graphics</a> | |
10427 </p> | |
10428 | |
10429 <table class=hotspotstable> | |
10430 <tr> | |
10431 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
10432 </tr> | |
10433 <tr> | |
10434 <td>18.3 bits(9)</td> | |
10435 <td>11.9</td> | |
10436 <td>9/9(100%)</td> | |
10437 <td>0/9(0%)</td> | |
10438 <td>Plus/Minus</td> | |
10439 </tr> | |
10440 </table> | |
10441 | |
10442 <pre class=alignmentgraphic>Query 7 TCGTGAAGA 15 | |
10443 ||||||||| | |
10444 Subject 305 TCGTGAAGA 297</pre> | |
10445 </div> | |
10446 <div class=hotspot> | |
10447 <p class=range> | |
10448 <span class=range>Range 2: 2625 to 2633</span> | |
10449 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596155?report=genbank&log$=nuclalign&from=2625&to=2633">GenBank</a> | |
10450 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596155?report=graph&log$=nuclalign&from=2625&to=2633">Graphics</a> | |
10451 </p> | |
10452 | |
10453 <table class=hotspotstable> | |
10454 <tr> | |
10455 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
10456 </tr> | |
10457 <tr> | |
10458 <td>18.3 bits(9)</td> | |
10459 <td>11.9</td> | |
10460 <td>9/9(100%)</td> | |
10461 <td>0/9(0%)</td> | |
10462 <td>Plus/Plus</td> | |
10463 </tr> | |
10464 </table> | |
10465 | |
10466 <pre class=alignmentgraphic>Query 4 CCGTCGTGA 12 | |
10467 ||||||||| | |
10468 Subject 2625 CCGTCGTGA 2633</pre> | |
10469 </div> | |
10470 <div class=hotspot> | |
10471 <p class=range> | |
10472 <span class=range>Range 3: 2606 to 2612</span> | |
10473 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596155?report=genbank&log$=nuclalign&from=2606&to=2612">GenBank</a> | |
10474 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596155?report=graph&log$=nuclalign&from=2606&to=2612">Graphics</a> | |
10475 </p> | |
10476 | |
10477 <table class=hotspotstable> | |
10478 <tr> | |
10479 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
10480 </tr> | |
10481 <tr> | |
10482 <td>14.4 bits(7)</td> | |
10483 <td>185.8</td> | |
10484 <td>7/7(100%)</td> | |
10485 <td>0/7(0%)</td> | |
10486 <td>Plus/Plus</td> | |
10487 </tr> | |
10488 </table> | |
10489 | |
10490 <pre class=alignmentgraphic>Query 6 GTCGTGA 12 | |
10491 ||||||| | |
10492 Subject 2606 GTCGTGA 2612</pre> | |
10493 </div> | |
10494 | |
10495 </div> | |
10496 | |
10497 <div class=alignment id=hit69> | |
10498 | |
10499 <div class=linkheader> | |
10500 <div class=right><a href="#description69">Descriptions</a></div> | |
10501 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/188596124?report=genbank&log$=nuclalign">GenBank</a> | |
10502 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/188596124?report=graph&log$=nuclalign">Graphics</a> | |
10503 </div> | |
10504 | |
10505 <div class=title> | |
10506 <p class=hittitle>Chain 0, Structure Of Anisomycin Resistant 50s Ribosomal Subunit: 23s Rrna Mutation U2535a</p> | |
10507 <p class=titleinfo> | |
10508 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/188596124?report=genbank&log$=nuclalign">pdb|3CCE|0</a> | |
10509 <span class=b>Length:</span> 2923 | |
10510 <span class=b>Number of Matches:</span> 3 | |
10511 </p> | |
10512 </div> | |
10513 | |
10514 | |
10515 <div class=hotspot> | |
10516 <p class=range> | |
10517 <span class=range>Range 1: 305 to 297</span> | |
10518 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596124?report=genbank&log$=nuclalign&from=305&to=297">GenBank</a> | |
10519 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596124?report=graph&log$=nuclalign&from=305&to=297">Graphics</a> | |
10520 </p> | |
10521 | |
10522 <table class=hotspotstable> | |
10523 <tr> | |
10524 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
10525 </tr> | |
10526 <tr> | |
10527 <td>18.3 bits(9)</td> | |
10528 <td>11.9</td> | |
10529 <td>9/9(100%)</td> | |
10530 <td>0/9(0%)</td> | |
10531 <td>Plus/Minus</td> | |
10532 </tr> | |
10533 </table> | |
10534 | |
10535 <pre class=alignmentgraphic>Query 7 TCGTGAAGA 15 | |
10536 ||||||||| | |
10537 Subject 305 TCGTGAAGA 297</pre> | |
10538 </div> | |
10539 <div class=hotspot> | |
10540 <p class=range> | |
10541 <span class=range>Range 2: 2625 to 2633</span> | |
10542 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596124?report=genbank&log$=nuclalign&from=2625&to=2633">GenBank</a> | |
10543 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596124?report=graph&log$=nuclalign&from=2625&to=2633">Graphics</a> | |
10544 </p> | |
10545 | |
10546 <table class=hotspotstable> | |
10547 <tr> | |
10548 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
10549 </tr> | |
10550 <tr> | |
10551 <td>18.3 bits(9)</td> | |
10552 <td>11.9</td> | |
10553 <td>9/9(100%)</td> | |
10554 <td>0/9(0%)</td> | |
10555 <td>Plus/Plus</td> | |
10556 </tr> | |
10557 </table> | |
10558 | |
10559 <pre class=alignmentgraphic>Query 4 CCGTCGTGA 12 | |
10560 ||||||||| | |
10561 Subject 2625 CCGTCGTGA 2633</pre> | |
10562 </div> | |
10563 <div class=hotspot> | |
10564 <p class=range> | |
10565 <span class=range>Range 3: 2606 to 2612</span> | |
10566 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596124?report=genbank&log$=nuclalign&from=2606&to=2612">GenBank</a> | |
10567 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596124?report=graph&log$=nuclalign&from=2606&to=2612">Graphics</a> | |
10568 </p> | |
10569 | |
10570 <table class=hotspotstable> | |
10571 <tr> | |
10572 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
10573 </tr> | |
10574 <tr> | |
10575 <td>14.4 bits(7)</td> | |
10576 <td>185.8</td> | |
10577 <td>7/7(100%)</td> | |
10578 <td>0/7(0%)</td> | |
10579 <td>Plus/Plus</td> | |
10580 </tr> | |
10581 </table> | |
10582 | |
10583 <pre class=alignmentgraphic>Query 6 GTCGTGA 12 | |
10584 ||||||| | |
10585 Subject 2606 GTCGTGA 2612</pre> | |
10586 </div> | |
10587 | |
10588 </div> | |
10589 | |
10590 <div class=alignment id=hit70> | |
10591 | |
10592 <div class=linkheader> | |
10593 <div class=right><a href="#description70">Descriptions</a></div> | |
10594 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/188596093?report=genbank&log$=nuclalign">GenBank</a> | |
10595 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/188596093?report=graph&log$=nuclalign">Graphics</a> | |
10596 </div> | |
10597 | |
10598 <div class=title> | |
10599 <p class=hittitle>Chain 0, Structure Of Anisomycin Resistant 50s Ribosomal Subunit: 23s Rrna Mutation C2487u</p> | |
10600 <p class=titleinfo> | |
10601 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/188596093?report=genbank&log$=nuclalign">pdb|3CC7|0</a> | |
10602 <span class=b>Length:</span> 2923 | |
10603 <span class=b>Number of Matches:</span> 3 | |
10604 </p> | |
10605 </div> | |
10606 | |
10607 | |
10608 <div class=hotspot> | |
10609 <p class=range> | |
10610 <span class=range>Range 1: 305 to 297</span> | |
10611 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596093?report=genbank&log$=nuclalign&from=305&to=297">GenBank</a> | |
10612 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596093?report=graph&log$=nuclalign&from=305&to=297">Graphics</a> | |
10613 </p> | |
10614 | |
10615 <table class=hotspotstable> | |
10616 <tr> | |
10617 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
10618 </tr> | |
10619 <tr> | |
10620 <td>18.3 bits(9)</td> | |
10621 <td>11.9</td> | |
10622 <td>9/9(100%)</td> | |
10623 <td>0/9(0%)</td> | |
10624 <td>Plus/Minus</td> | |
10625 </tr> | |
10626 </table> | |
10627 | |
10628 <pre class=alignmentgraphic>Query 7 TCGTGAAGA 15 | |
10629 ||||||||| | |
10630 Subject 305 TCGTGAAGA 297</pre> | |
10631 </div> | |
10632 <div class=hotspot> | |
10633 <p class=range> | |
10634 <span class=range>Range 2: 2625 to 2633</span> | |
10635 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596093?report=genbank&log$=nuclalign&from=2625&to=2633">GenBank</a> | |
10636 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596093?report=graph&log$=nuclalign&from=2625&to=2633">Graphics</a> | |
10637 </p> | |
10638 | |
10639 <table class=hotspotstable> | |
10640 <tr> | |
10641 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
10642 </tr> | |
10643 <tr> | |
10644 <td>18.3 bits(9)</td> | |
10645 <td>11.9</td> | |
10646 <td>9/9(100%)</td> | |
10647 <td>0/9(0%)</td> | |
10648 <td>Plus/Plus</td> | |
10649 </tr> | |
10650 </table> | |
10651 | |
10652 <pre class=alignmentgraphic>Query 4 CCGTCGTGA 12 | |
10653 ||||||||| | |
10654 Subject 2625 CCGTCGTGA 2633</pre> | |
10655 </div> | |
10656 <div class=hotspot> | |
10657 <p class=range> | |
10658 <span class=range>Range 3: 2606 to 2612</span> | |
10659 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596093?report=genbank&log$=nuclalign&from=2606&to=2612">GenBank</a> | |
10660 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596093?report=graph&log$=nuclalign&from=2606&to=2612">Graphics</a> | |
10661 </p> | |
10662 | |
10663 <table class=hotspotstable> | |
10664 <tr> | |
10665 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
10666 </tr> | |
10667 <tr> | |
10668 <td>14.4 bits(7)</td> | |
10669 <td>185.8</td> | |
10670 <td>7/7(100%)</td> | |
10671 <td>0/7(0%)</td> | |
10672 <td>Plus/Plus</td> | |
10673 </tr> | |
10674 </table> | |
10675 | |
10676 <pre class=alignmentgraphic>Query 6 GTCGTGA 12 | |
10677 ||||||| | |
10678 Subject 2606 GTCGTGA 2612</pre> | |
10679 </div> | |
10680 | |
10681 </div> | |
10682 | |
10683 <div class=alignment id=hit71> | |
10684 | |
10685 <div class=linkheader> | |
10686 <div class=right><a href="#description71">Descriptions</a></div> | |
10687 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/188596031?report=genbank&log$=nuclalign">GenBank</a> | |
10688 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/188596031?report=graph&log$=nuclalign">Graphics</a> | |
10689 </div> | |
10690 | |
10691 <div class=title> | |
10692 <p class=hittitle>Chain 0, The Refined Crystal Structure Of The Haloarcula Marismortui Large Ribosomal Subunit At 2.4 Angstrom Resolution With Rrna Sequence For The 23s Rrna And Genome-Derived Sequences For R-Proteins </p> | |
10693 <p class=titleinfo> | |
10694 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/188596031?report=genbank&log$=nuclalign">pdb|3CC2|0</a> | |
10695 <span class=b>Length:</span> 2923 | |
10696 <span class=b>Number of Matches:</span> 3 | |
10697 </p> | |
10698 </div> | |
10699 | |
10700 <a class=showmoretitles onclick="toggle_visibility('moretitles71'); return false;" href=''> | |
10701 See 7 more title(s) | |
10702 </a> | |
10703 | |
10704 <div class=moretitles id=moretitles71 style="display: none"> | |
10705 <div class=title> | |
10706 <p class=hittitle>Chain 0, Co-Crystal Structure Of Anisomycin Bound To The 50s Ribosomal Subunit </p> | |
10707 <p class=titleinfo> | |
10708 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/188596062?report=genbank&log$=nuclalign">pdb|3CC4|0</a> | |
10709 </p> | |
10710 </div> | |
10711 <div class=title> | |
10712 <p class=hittitle>Chain 0, The Structure Of Cca And Cca-Phe-Cap-Bio Bound To The Large Ribosomal Subunit Of Haloarcula Marismortui </p> | |
10713 <p class=titleinfo> | |
10714 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/206581937?report=genbank&log$=nuclalign">pdb|3CMA|0</a> | |
10715 </p> | |
10716 </div> | |
10717 <div class=title> | |
10718 <p class=hittitle>Chain 0, The Structure Of Ca And Cca-Phe-Cap-Bio Bound To The Large Ribosomal Subunit Of Haloarcula Marismortui </p> | |
10719 <p class=titleinfo> | |
10720 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/206581970?report=genbank&log$=nuclalign">pdb|3CME|0</a> | |
10721 </p> | |
10722 </div> | |
10723 <div class=title> | |
10724 <p class=hittitle>Chain 0, Co-Crystal Structure Of Tiamulin Bound To The Large Ribosomal Subunit </p> | |
10725 <p class=titleinfo> | |
10726 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/228312141?report=genbank&log$=nuclalign">pdb|3G4S|0</a> | |
10727 </p> | |
10728 </div> | |
10729 <div class=title> | |
10730 <p class=hittitle>Chain 0, Co-Crystal Structure Of Homoharringtonine Bound To The Large Ribosomal Subunit </p> | |
10731 <p class=titleinfo> | |
10732 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/228312197?report=genbank&log$=nuclalign">pdb|3G6E|0</a> | |
10733 </p> | |
10734 </div> | |
10735 <div class=title> | |
10736 <p class=hittitle>Chain 0, Co-crystal Structure Of Bruceantin Bound To The Large Ribosomal Subunit </p> | |
10737 <p class=titleinfo> | |
10738 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/228312233?report=genbank&log$=nuclalign">pdb|3G71|0</a> | |
10739 </p> | |
10740 </div> | |
10741 <div class=title> | |
10742 <p class=hittitle>Chain 0, Co-Crystal Structure Of Mycalamide A Bound To The Large Ribosomal Subunit</p> | |
10743 <p class=titleinfo> | |
10744 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/290790035?report=genbank&log$=nuclalign">pdb|3I55|0</a> | |
10745 </p> | |
10746 </div> | |
10747 </div> | |
10748 | |
10749 <div class=hotspot> | |
10750 <p class=range> | |
10751 <span class=range>Range 1: 305 to 297</span> | |
10752 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596031?report=genbank&log$=nuclalign&from=305&to=297">GenBank</a> | |
10753 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596031?report=graph&log$=nuclalign&from=305&to=297">Graphics</a> | |
10754 </p> | |
10755 | |
10756 <table class=hotspotstable> | |
10757 <tr> | |
10758 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
10759 </tr> | |
10760 <tr> | |
10761 <td>18.3 bits(9)</td> | |
10762 <td>11.9</td> | |
10763 <td>9/9(100%)</td> | |
10764 <td>0/9(0%)</td> | |
10765 <td>Plus/Minus</td> | |
10766 </tr> | |
10767 </table> | |
10768 | |
10769 <pre class=alignmentgraphic>Query 7 TCGTGAAGA 15 | |
10770 ||||||||| | |
10771 Subject 305 TCGTGAAGA 297</pre> | |
10772 </div> | |
10773 <div class=hotspot> | |
10774 <p class=range> | |
10775 <span class=range>Range 2: 2625 to 2633</span> | |
10776 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596031?report=genbank&log$=nuclalign&from=2625&to=2633">GenBank</a> | |
10777 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596031?report=graph&log$=nuclalign&from=2625&to=2633">Graphics</a> | |
10778 </p> | |
10779 | |
10780 <table class=hotspotstable> | |
10781 <tr> | |
10782 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
10783 </tr> | |
10784 <tr> | |
10785 <td>18.3 bits(9)</td> | |
10786 <td>11.9</td> | |
10787 <td>9/9(100%)</td> | |
10788 <td>0/9(0%)</td> | |
10789 <td>Plus/Plus</td> | |
10790 </tr> | |
10791 </table> | |
10792 | |
10793 <pre class=alignmentgraphic>Query 4 CCGTCGTGA 12 | |
10794 ||||||||| | |
10795 Subject 2625 CCGTCGTGA 2633</pre> | |
10796 </div> | |
10797 <div class=hotspot> | |
10798 <p class=range> | |
10799 <span class=range>Range 3: 2606 to 2612</span> | |
10800 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596031?report=genbank&log$=nuclalign&from=2606&to=2612">GenBank</a> | |
10801 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/188596031?report=graph&log$=nuclalign&from=2606&to=2612">Graphics</a> | |
10802 </p> | |
10803 | |
10804 <table class=hotspotstable> | |
10805 <tr> | |
10806 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
10807 </tr> | |
10808 <tr> | |
10809 <td>14.4 bits(7)</td> | |
10810 <td>185.8</td> | |
10811 <td>7/7(100%)</td> | |
10812 <td>0/7(0%)</td> | |
10813 <td>Plus/Plus</td> | |
10814 </tr> | |
10815 </table> | |
10816 | |
10817 <pre class=alignmentgraphic>Query 6 GTCGTGA 12 | |
10818 ||||||| | |
10819 Subject 2606 GTCGTGA 2612</pre> | |
10820 </div> | |
10821 | |
10822 </div> | |
10823 | |
10824 <div class=alignment id=hit72> | |
10825 | |
10826 <div class=linkheader> | |
10827 <div class=right><a href="#description72">Descriptions</a></div> | |
10828 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/187609272?report=genbank&log$=nuclalign">GenBank</a> | |
10829 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/187609272?report=graph&log$=nuclalign">Graphics</a> | |
10830 </div> | |
10831 | |
10832 <div class=title> | |
10833 <p class=hittitle>Chain 0, Structure Of A Mammalian Ribosomal 60s Subunit Within An 80s Complex Obtained By Docking Homology Models Of The Rna And Proteins Into An 8.7 A Cryo-Em Map</p> | |
10834 <p class=titleinfo> | |
10835 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/187609272?report=genbank&log$=nuclalign">pdb|2ZKR|0</a> | |
10836 <span class=b>Length:</span> 2903 | |
10837 <span class=b>Number of Matches:</span> 4 | |
10838 </p> | |
10839 </div> | |
10840 | |
10841 | |
10842 <div class=hotspot> | |
10843 <p class=range> | |
10844 <span class=range>Range 1: 2623 to 2631</span> | |
10845 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/187609272?report=genbank&log$=nuclalign&from=2623&to=2631">GenBank</a> | |
10846 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/187609272?report=graph&log$=nuclalign&from=2623&to=2631">Graphics</a> | |
10847 </p> | |
10848 | |
10849 <table class=hotspotstable> | |
10850 <tr> | |
10851 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
10852 </tr> | |
10853 <tr> | |
10854 <td>18.3 bits(9)</td> | |
10855 <td>11.9</td> | |
10856 <td>9/9(100%)</td> | |
10857 <td>0/9(0%)</td> | |
10858 <td>Plus/Plus</td> | |
10859 </tr> | |
10860 </table> | |
10861 | |
10862 <pre class=alignmentgraphic>Query 4 CCGTCGTGA 12 | |
10863 ||||||||| | |
10864 Subject 2623 CCGTCGTGA 2631</pre> | |
10865 </div> | |
10866 <div class=hotspot> | |
10867 <p class=range> | |
10868 <span class=range>Range 2: 2111 to 2118</span> | |
10869 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/187609272?report=genbank&log$=nuclalign&from=2111&to=2118">GenBank</a> | |
10870 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/187609272?report=graph&log$=nuclalign&from=2111&to=2118">Graphics</a> | |
10871 </p> | |
10872 | |
10873 <table class=hotspotstable> | |
10874 <tr> | |
10875 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
10876 </tr> | |
10877 <tr> | |
10878 <td>16.4 bits(8)</td> | |
10879 <td>47.0</td> | |
10880 <td>8/8(100%)</td> | |
10881 <td>0/8(0%)</td> | |
10882 <td>Plus/Plus</td> | |
10883 </tr> | |
10884 </table> | |
10885 | |
10886 <pre class=alignmentgraphic>Query 9 GTGAAGAG 16 | |
10887 |||||||| | |
10888 Subject 2111 GTGAAGAG 2118</pre> | |
10889 </div> | |
10890 <div class=hotspot> | |
10891 <p class=range> | |
10892 <span class=range>Range 3: 353 to 359</span> | |
10893 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/187609272?report=genbank&log$=nuclalign&from=353&to=359">GenBank</a> | |
10894 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/187609272?report=graph&log$=nuclalign&from=353&to=359">Graphics</a> | |
10895 </p> | |
10896 | |
10897 <table class=hotspotstable> | |
10898 <tr> | |
10899 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
10900 </tr> | |
10901 <tr> | |
10902 <td>14.4 bits(7)</td> | |
10903 <td>185.8</td> | |
10904 <td>7/7(100%)</td> | |
10905 <td>0/7(0%)</td> | |
10906 <td>Plus/Plus</td> | |
10907 </tr> | |
10908 </table> | |
10909 | |
10910 <pre class=alignmentgraphic>Query 10 TGAAGAG 16 | |
10911 ||||||| | |
10912 Subject 353 TGAAGAG 359</pre> | |
10913 </div> | |
10914 <div class=hotspot> | |
10915 <p class=range> | |
10916 <span class=range>Range 4: 1892 to 1898</span> | |
10917 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/187609272?report=genbank&log$=nuclalign&from=1892&to=1898">GenBank</a> | |
10918 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/187609272?report=graph&log$=nuclalign&from=1892&to=1898">Graphics</a> | |
10919 </p> | |
10920 | |
10921 <table class=hotspotstable> | |
10922 <tr> | |
10923 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
10924 </tr> | |
10925 <tr> | |
10926 <td>14.4 bits(7)</td> | |
10927 <td>185.8</td> | |
10928 <td>7/7(100%)</td> | |
10929 <td>0/7(0%)</td> | |
10930 <td>Plus/Plus</td> | |
10931 </tr> | |
10932 </table> | |
10933 | |
10934 <pre class=alignmentgraphic>Query 9 GTGAAGA 15 | |
10935 ||||||| | |
10936 Subject 1892 GTGAAGA 1898</pre> | |
10937 </div> | |
10938 | |
10939 </div> | |
10940 | |
10941 <div class=alignment id=hit73> | |
10942 | |
10943 <div class=linkheader> | |
10944 <div class=right><a href="#description73">Descriptions</a></div> | |
10945 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/171848835?report=genbank&log$=nuclalign">GenBank</a> | |
10946 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/171848835?report=graph&log$=nuclalign">Graphics</a> | |
10947 </div> | |
10948 | |
10949 <div class=title> | |
10950 <p class=hittitle>Chain 0, A More Complete Structure Of The The L7L12 STALK OF THE Haloarcula Marismortui 50s Large Ribosomal Subunit</p> | |
10951 <p class=titleinfo> | |
10952 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/171848835?report=genbank&log$=nuclalign">pdb|2QA4|0</a> | |
10953 <span class=b>Length:</span> 2922 | |
10954 <span class=b>Number of Matches:</span> 2 | |
10955 </p> | |
10956 </div> | |
10957 | |
10958 | |
10959 <div class=hotspot> | |
10960 <p class=range> | |
10961 <span class=range>Range 1: 2624 to 2632</span> | |
10962 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/171848835?report=genbank&log$=nuclalign&from=2624&to=2632">GenBank</a> | |
10963 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/171848835?report=graph&log$=nuclalign&from=2624&to=2632">Graphics</a> | |
10964 </p> | |
10965 | |
10966 <table class=hotspotstable> | |
10967 <tr> | |
10968 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
10969 </tr> | |
10970 <tr> | |
10971 <td>18.3 bits(9)</td> | |
10972 <td>11.9</td> | |
10973 <td>9/9(100%)</td> | |
10974 <td>0/9(0%)</td> | |
10975 <td>Plus/Plus</td> | |
10976 </tr> | |
10977 </table> | |
10978 | |
10979 <pre class=alignmentgraphic>Query 4 CCGTCGTGA 12 | |
10980 ||||||||| | |
10981 Subject 2624 CCGTCGTGA 2632</pre> | |
10982 </div> | |
10983 <div class=hotspot> | |
10984 <p class=range> | |
10985 <span class=range>Range 2: 2605 to 2611</span> | |
10986 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/171848835?report=genbank&log$=nuclalign&from=2605&to=2611">GenBank</a> | |
10987 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/171848835?report=graph&log$=nuclalign&from=2605&to=2611">Graphics</a> | |
10988 </p> | |
10989 | |
10990 <table class=hotspotstable> | |
10991 <tr> | |
10992 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
10993 </tr> | |
10994 <tr> | |
10995 <td>14.4 bits(7)</td> | |
10996 <td>185.8</td> | |
10997 <td>7/7(100%)</td> | |
10998 <td>0/7(0%)</td> | |
10999 <td>Plus/Plus</td> | |
11000 </tr> | |
11001 </table> | |
11002 | |
11003 <pre class=alignmentgraphic>Query 6 GTCGTGA 12 | |
11004 ||||||| | |
11005 Subject 2605 GTCGTGA 2611</pre> | |
11006 </div> | |
11007 | |
11008 </div> | |
11009 | |
11010 <div class=alignment id=hit74> | |
11011 | |
11012 <div class=linkheader> | |
11013 <div class=right><a href="#description74">Descriptions</a></div> | |
11014 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/99032306?report=genbank&log$=nuclalign">GenBank</a> | |
11015 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/99032306?report=graph&log$=nuclalign">Graphics</a> | |
11016 </div> | |
11017 | |
11018 <div class=title> | |
11019 <p class=hittitle>Chain R, Structural Model For The Large Subunit Of The Mammalian Mitochondrial Ribosome</p> | |
11020 <p class=titleinfo> | |
11021 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/99032306?report=genbank&log$=nuclalign">pdb|2FTC|R</a> | |
11022 <span class=b>Length:</span> 1568 | |
11023 <span class=b>Number of Matches:</span> 1 | |
11024 </p> | |
11025 </div> | |
11026 | |
11027 | |
11028 <div class=hotspot> | |
11029 <p class=range> | |
11030 <span class=range>Range 1: 1032 to 1040</span> | |
11031 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/99032306?report=genbank&log$=nuclalign&from=1032&to=1040">GenBank</a> | |
11032 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/99032306?report=graph&log$=nuclalign&from=1032&to=1040">Graphics</a> | |
11033 </p> | |
11034 | |
11035 <table class=hotspotstable> | |
11036 <tr> | |
11037 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
11038 </tr> | |
11039 <tr> | |
11040 <td>18.3 bits(9)</td> | |
11041 <td>11.9</td> | |
11042 <td>9/9(100%)</td> | |
11043 <td>0/9(0%)</td> | |
11044 <td>Plus/Plus</td> | |
11045 </tr> | |
11046 </table> | |
11047 | |
11048 <pre class=alignmentgraphic>Query 8 CGTGAAGAG 16 | |
11049 ||||||||| | |
11050 Subject 1032 CGTGAAGAG 1040</pre> | |
11051 </div> | |
11052 | |
11053 </div> | |
11054 | |
11055 <div class=alignment id=hit75> | |
11056 | |
11057 <div class=linkheader> | |
11058 <div class=right><a href="#description75">Descriptions</a></div> | |
11059 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/50513468?report=genbank&log$=nuclalign">GenBank</a> | |
11060 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/50513468?report=graph&log$=nuclalign">Graphics</a> | |
11061 </div> | |
11062 | |
11063 <div class=title> | |
11064 <p class=hittitle>Chain 0, Refined Crystal Structure Of The Haloarcula Marismortui Large Ribosomal Subunit At 2.4 Angstrom Resolution </p> | |
11065 <p class=titleinfo> | |
11066 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/50513468?report=genbank&log$=nuclalign">pdb|1S72|0</a> | |
11067 <span class=b>Length:</span> 2922 | |
11068 <span class=b>Number of Matches:</span> 2 | |
11069 </p> | |
11070 </div> | |
11071 | |
11072 <a class=showmoretitles onclick="toggle_visibility('moretitles75'); return false;" href=''> | |
11073 See 14 more title(s) | |
11074 </a> | |
11075 | |
11076 <div class=moretitles id=moretitles75 style="display: none"> | |
11077 <div class=title> | |
11078 <p class=hittitle>Chain 0, The Structure Of The Transition State Analogue "daa" Bound To The Large Ribosomal Subunit Of Haloarcula Marismortui </p> | |
11079 <p class=titleinfo> | |
11080 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/83753123?report=genbank&log$=nuclalign">pdb|1VQ4|0</a> | |
11081 </p> | |
11082 </div> | |
11083 <div class=title> | |
11084 <p class=hittitle>Chain 0, The Structure Of The Transition State Analogue "raa" Bound To The Large Ribosomal Subunit Of Haloarcula Marismortui </p> | |
11085 <p class=titleinfo> | |
11086 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/83753155?report=genbank&log$=nuclalign">pdb|1VQ5|0</a> | |
11087 </p> | |
11088 </div> | |
11089 <div class=title> | |
11090 <p class=hittitle>Chain 0, The Structure Of C-Hpmn And Cca-Phe-Cap-Bio Bound To The Large Ribosomal Subunit Of Haloarcula Marismortui </p> | |
11091 <p class=titleinfo> | |
11092 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/83753187?report=genbank&log$=nuclalign">pdb|1VQ6|0</a> | |
11093 </p> | |
11094 </div> | |
11095 <div class=title> | |
11096 <p class=hittitle>Chain 0, The Structure Of The Transition State Analogue "dca" Bound To The Large Ribosomal Subunit Of Haloarcula Marismortui </p> | |
11097 <p class=titleinfo> | |
11098 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/83753219?report=genbank&log$=nuclalign">pdb|1VQ7|0</a> | |
11099 </p> | |
11100 </div> | |
11101 <div class=title> | |
11102 <p class=hittitle>Chain 0, The Structure Of Ccda-Phe-Cap-Bio And The Antibiotic Sparsomycin Bound To The Large Ribosomal Subunit Of Haloarcula Marismortui </p> | |
11103 <p class=titleinfo> | |
11104 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/83753251?report=genbank&log$=nuclalign">pdb|1VQ8|0</a> | |
11105 </p> | |
11106 </div> | |
11107 <div class=title> | |
11108 <p class=hittitle>Chain 0, The Structure Of Cca-Phe-Cap-Bio And The Antibiotic Sparsomycin Bound To The Large Ribosomal Subunit Of Haloarcula Marismortui </p> | |
11109 <p class=titleinfo> | |
11110 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/83753282?report=genbank&log$=nuclalign">pdb|1VQ9|0</a> | |
11111 </p> | |
11112 </div> | |
11113 <div class=title> | |
11114 <p class=hittitle>Chain 0, The Structure Of Ccda-Phe-Cap-Bio Bound To The A Site Of The Ribosomal Subunit Of Haloarcula Marismortui </p> | |
11115 <p class=titleinfo> | |
11116 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/83753314?report=genbank&log$=nuclalign">pdb|1VQK|0</a> | |
11117 </p> | |
11118 </div> | |
11119 <div class=title> | |
11120 <p class=hittitle>Chain 0, The Structure Of The Transition State Analogue "dcsn" Bound To The Large Ribosomal Subunit Of Haloarcula Marismortui </p> | |
11121 <p class=titleinfo> | |
11122 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/83753345?report=genbank&log$=nuclalign">pdb|1VQL|0</a> | |
11123 </p> | |
11124 </div> | |
11125 <div class=title> | |
11126 <p class=hittitle>Chain 0, The Structure Of The Transition State Analogue "dan" Bound To The Large Ribosomal Subunit Of Haloarcula Marismortui </p> | |
11127 <p class=titleinfo> | |
11128 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/83753376?report=genbank&log$=nuclalign">pdb|1VQM|0</a> | |
11129 </p> | |
11130 </div> | |
11131 <div class=title> | |
11132 <p class=hittitle>Chain 0, The Structure Of Cc-hpmn And Cca-phe-cap-bio Bound To The Large Ribosomal Subunit Of Haloarcula Marismortui </p> | |
11133 <p class=titleinfo> | |
11134 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/83753407?report=genbank&log$=nuclalign">pdb|1VQN|0</a> | |
11135 </p> | |
11136 </div> | |
11137 <div class=title> | |
11138 <p class=hittitle>Chain 0, The Structure Of Ccpmn Bound To The Large Ribosomal Subunit Haloarcula Marismortui </p> | |
11139 <p class=titleinfo> | |
11140 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/83753439?report=genbank&log$=nuclalign">pdb|1VQO|0</a> | |
11141 </p> | |
11142 </div> | |
11143 <div class=title> | |
11144 <p class=hittitle>Chain 0, The Structure Of The Transition State Analogue "rap" Bound To The Large Ribosomal Subunit Of Haloarcula Marismortui </p> | |
11145 <p class=titleinfo> | |
11146 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/83753470?report=genbank&log$=nuclalign">pdb|1VQP|0</a> | |
11147 </p> | |
11148 </div> | |
11149 <div class=title> | |
11150 <p class=hittitle>Chain 0, 13-Deoxytedanolide Bound To The Large Subunit Of Haloarcula Marismortui </p> | |
11151 <p class=titleinfo> | |
11152 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/145580171?report=genbank&log$=nuclalign">pdb|2OTJ|0</a> | |
11153 </p> | |
11154 </div> | |
11155 <div class=title> | |
11156 <p class=hittitle>Chain 0, Girodazole Bound To The Large Subunit Of Haloarcula Marismortui</p> | |
11157 <p class=titleinfo> | |
11158 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/145580202?report=genbank&log$=nuclalign">pdb|2OTL|0</a> | |
11159 </p> | |
11160 </div> | |
11161 </div> | |
11162 | |
11163 <div class=hotspot> | |
11164 <p class=range> | |
11165 <span class=range>Range 1: 2624 to 2632</span> | |
11166 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/50513468?report=genbank&log$=nuclalign&from=2624&to=2632">GenBank</a> | |
11167 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/50513468?report=graph&log$=nuclalign&from=2624&to=2632">Graphics</a> | |
11168 </p> | |
11169 | |
11170 <table class=hotspotstable> | |
11171 <tr> | |
11172 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
11173 </tr> | |
11174 <tr> | |
11175 <td>18.3 bits(9)</td> | |
11176 <td>11.9</td> | |
11177 <td>9/9(100%)</td> | |
11178 <td>0/9(0%)</td> | |
11179 <td>Plus/Plus</td> | |
11180 </tr> | |
11181 </table> | |
11182 | |
11183 <pre class=alignmentgraphic>Query 4 CCGTCGTGA 12 | |
11184 ||||||||| | |
11185 Subject 2624 CCGTCGTGA 2632</pre> | |
11186 </div> | |
11187 <div class=hotspot> | |
11188 <p class=range> | |
11189 <span class=range>Range 2: 2605 to 2611</span> | |
11190 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/50513468?report=genbank&log$=nuclalign&from=2605&to=2611">GenBank</a> | |
11191 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/50513468?report=graph&log$=nuclalign&from=2605&to=2611">Graphics</a> | |
11192 </p> | |
11193 | |
11194 <table class=hotspotstable> | |
11195 <tr> | |
11196 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
11197 </tr> | |
11198 <tr> | |
11199 <td>14.4 bits(7)</td> | |
11200 <td>185.8</td> | |
11201 <td>7/7(100%)</td> | |
11202 <td>0/7(0%)</td> | |
11203 <td>Plus/Plus</td> | |
11204 </tr> | |
11205 </table> | |
11206 | |
11207 <pre class=alignmentgraphic>Query 6 GTCGTGA 12 | |
11208 ||||||| | |
11209 Subject 2605 GTCGTGA 2611</pre> | |
11210 </div> | |
11211 | |
11212 </div> | |
11213 | |
11214 <div class=alignment id=hit76> | |
11215 | |
11216 <div class=linkheader> | |
11217 <div class=right><a href="#description76">Descriptions</a></div> | |
11218 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/66360881?report=genbank&log$=nuclalign">GenBank</a> | |
11219 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/66360881?report=graph&log$=nuclalign">Graphics</a> | |
11220 </div> | |
11221 | |
11222 <div class=title> | |
11223 <p class=hittitle>Chain 0, Crystal Structure Of Virginiamycin M And S Bound To The 50s Ribosomal Subunit Of Haloarcula Marismortui </p> | |
11224 <p class=titleinfo> | |
11225 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/66360881?report=genbank&log$=nuclalign">pdb|1YIT|0</a> | |
11226 <span class=b>Length:</span> 2922 | |
11227 <span class=b>Number of Matches:</span> 3 | |
11228 </p> | |
11229 </div> | |
11230 | |
11231 <a class=showmoretitles onclick="toggle_visibility('moretitles76'); return false;" href=''> | |
11232 See 1 more title(s) | |
11233 </a> | |
11234 | |
11235 <div class=moretitles id=moretitles76 style="display: none"> | |
11236 <div class=title> | |
11237 <p class=hittitle>Chain 0, Crystal Structure Of The Mutant 50s Ribosomal Subunit Of Haloarcula Marismortui Containing A Three Residue Deletion In L22</p> | |
11238 <p class=titleinfo> | |
11239 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/66360914?report=genbank&log$=nuclalign">pdb|1YJ9|0</a> | |
11240 </p> | |
11241 </div> | |
11242 </div> | |
11243 | |
11244 <div class=hotspot> | |
11245 <p class=range> | |
11246 <span class=range>Range 1: 305 to 297</span> | |
11247 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/66360881?report=genbank&log$=nuclalign&from=305&to=297">GenBank</a> | |
11248 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/66360881?report=graph&log$=nuclalign&from=305&to=297">Graphics</a> | |
11249 </p> | |
11250 | |
11251 <table class=hotspotstable> | |
11252 <tr> | |
11253 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
11254 </tr> | |
11255 <tr> | |
11256 <td>18.3 bits(9)</td> | |
11257 <td>11.9</td> | |
11258 <td>9/9(100%)</td> | |
11259 <td>0/9(0%)</td> | |
11260 <td>Plus/Minus</td> | |
11261 </tr> | |
11262 </table> | |
11263 | |
11264 <pre class=alignmentgraphic>Query 7 TCGTGAAGA 15 | |
11265 ||||||||| | |
11266 Subject 305 TCGTGAAGA 297</pre> | |
11267 </div> | |
11268 <div class=hotspot> | |
11269 <p class=range> | |
11270 <span class=range>Range 2: 2625 to 2633</span> | |
11271 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/66360881?report=genbank&log$=nuclalign&from=2625&to=2633">GenBank</a> | |
11272 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/66360881?report=graph&log$=nuclalign&from=2625&to=2633">Graphics</a> | |
11273 </p> | |
11274 | |
11275 <table class=hotspotstable> | |
11276 <tr> | |
11277 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
11278 </tr> | |
11279 <tr> | |
11280 <td>18.3 bits(9)</td> | |
11281 <td>11.9</td> | |
11282 <td>9/9(100%)</td> | |
11283 <td>0/9(0%)</td> | |
11284 <td>Plus/Plus</td> | |
11285 </tr> | |
11286 </table> | |
11287 | |
11288 <pre class=alignmentgraphic>Query 4 CCGTCGTGA 12 | |
11289 ||||||||| | |
11290 Subject 2625 CCGTCGTGA 2633</pre> | |
11291 </div> | |
11292 <div class=hotspot> | |
11293 <p class=range> | |
11294 <span class=range>Range 3: 2606 to 2612</span> | |
11295 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/66360881?report=genbank&log$=nuclalign&from=2606&to=2612">GenBank</a> | |
11296 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/66360881?report=graph&log$=nuclalign&from=2606&to=2612">Graphics</a> | |
11297 </p> | |
11298 | |
11299 <table class=hotspotstable> | |
11300 <tr> | |
11301 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
11302 </tr> | |
11303 <tr> | |
11304 <td>14.4 bits(7)</td> | |
11305 <td>185.8</td> | |
11306 <td>7/7(100%)</td> | |
11307 <td>0/7(0%)</td> | |
11308 <td>Plus/Plus</td> | |
11309 </tr> | |
11310 </table> | |
11311 | |
11312 <pre class=alignmentgraphic>Query 6 GTCGTGA 12 | |
11313 ||||||| | |
11314 Subject 2606 GTCGTGA 2612</pre> | |
11315 </div> | |
11316 | |
11317 </div> | |
11318 | |
11319 <div class=alignment id=hit77> | |
11320 | |
11321 <div class=linkheader> | |
11322 <div class=right><a href="#description77">Descriptions</a></div> | |
11323 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/66360782?report=genbank&log$=nuclalign">GenBank</a> | |
11324 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/66360782?report=graph&log$=nuclalign">Graphics</a> | |
11325 </div> | |
11326 | |
11327 <div class=title> | |
11328 <p class=hittitle>Chain 0, Crystal Structure Of Azithromycin Bound To The G2099a Mutant 50s Ribosomal Subunit Of Haloarcula Marismortui </p> | |
11329 <p class=titleinfo> | |
11330 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/66360782?report=genbank&log$=nuclalign">pdb|1YHQ|0</a> | |
11331 <span class=b>Length:</span> 2922 | |
11332 <span class=b>Number of Matches:</span> 3 | |
11333 </p> | |
11334 </div> | |
11335 | |
11336 <a class=showmoretitles onclick="toggle_visibility('moretitles77'); return false;" href=''> | |
11337 See 3 more title(s) | |
11338 </a> | |
11339 | |
11340 <div class=moretitles id=moretitles77 style="display: none"> | |
11341 <div class=title> | |
11342 <p class=hittitle>Chain 0, Crystal Structure Of Erythromycin Bound To The G2099a Mutant 50s Ribosomal Subunit Of Haloarcula Marismortui </p> | |
11343 <p class=titleinfo> | |
11344 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/66360815?report=genbank&log$=nuclalign">pdb|1YI2|0</a> | |
11345 </p> | |
11346 </div> | |
11347 <div class=title> | |
11348 <p class=hittitle>Chain 0, Crystal Structure Of Telithromycin Bound To The G2099a Mutant 50s Ribosomal Subunit Of Haloarcula Marismortui </p> | |
11349 <p class=titleinfo> | |
11350 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/66360848?report=genbank&log$=nuclalign">pdb|1YIJ|0</a> | |
11351 </p> | |
11352 </div> | |
11353 <div class=title> | |
11354 <p class=hittitle>Chain 0, Crystal Structure Of Clindamycin Bound To The G2099a Mutant 50s Ribosomal Subunit Of Haloarcula Marismortui</p> | |
11355 <p class=titleinfo> | |
11356 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/66360947?report=genbank&log$=nuclalign">pdb|1YJN|0</a> | |
11357 </p> | |
11358 </div> | |
11359 </div> | |
11360 | |
11361 <div class=hotspot> | |
11362 <p class=range> | |
11363 <span class=range>Range 1: 305 to 297</span> | |
11364 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/66360782?report=genbank&log$=nuclalign&from=305&to=297">GenBank</a> | |
11365 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/66360782?report=graph&log$=nuclalign&from=305&to=297">Graphics</a> | |
11366 </p> | |
11367 | |
11368 <table class=hotspotstable> | |
11369 <tr> | |
11370 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
11371 </tr> | |
11372 <tr> | |
11373 <td>18.3 bits(9)</td> | |
11374 <td>11.9</td> | |
11375 <td>9/9(100%)</td> | |
11376 <td>0/9(0%)</td> | |
11377 <td>Plus/Minus</td> | |
11378 </tr> | |
11379 </table> | |
11380 | |
11381 <pre class=alignmentgraphic>Query 7 TCGTGAAGA 15 | |
11382 ||||||||| | |
11383 Subject 305 TCGTGAAGA 297</pre> | |
11384 </div> | |
11385 <div class=hotspot> | |
11386 <p class=range> | |
11387 <span class=range>Range 2: 2625 to 2633</span> | |
11388 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/66360782?report=genbank&log$=nuclalign&from=2625&to=2633">GenBank</a> | |
11389 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/66360782?report=graph&log$=nuclalign&from=2625&to=2633">Graphics</a> | |
11390 </p> | |
11391 | |
11392 <table class=hotspotstable> | |
11393 <tr> | |
11394 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
11395 </tr> | |
11396 <tr> | |
11397 <td>18.3 bits(9)</td> | |
11398 <td>11.9</td> | |
11399 <td>9/9(100%)</td> | |
11400 <td>0/9(0%)</td> | |
11401 <td>Plus/Plus</td> | |
11402 </tr> | |
11403 </table> | |
11404 | |
11405 <pre class=alignmentgraphic>Query 4 CCGTCGTGA 12 | |
11406 ||||||||| | |
11407 Subject 2625 CCGTCGTGA 2633</pre> | |
11408 </div> | |
11409 <div class=hotspot> | |
11410 <p class=range> | |
11411 <span class=range>Range 3: 2606 to 2612</span> | |
11412 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/66360782?report=genbank&log$=nuclalign&from=2606&to=2612">GenBank</a> | |
11413 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/66360782?report=graph&log$=nuclalign&from=2606&to=2612">Graphics</a> | |
11414 </p> | |
11415 | |
11416 <table class=hotspotstable> | |
11417 <tr> | |
11418 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
11419 </tr> | |
11420 <tr> | |
11421 <td>14.4 bits(7)</td> | |
11422 <td>185.8</td> | |
11423 <td>7/7(100%)</td> | |
11424 <td>0/7(0%)</td> | |
11425 <td>Plus/Plus</td> | |
11426 </tr> | |
11427 </table> | |
11428 | |
11429 <pre class=alignmentgraphic>Query 6 GTCGTGA 12 | |
11430 ||||||| | |
11431 Subject 2606 GTCGTGA 2612</pre> | |
11432 </div> | |
11433 | |
11434 </div> | |
11435 | |
11436 <div class=alignment id=hit78> | |
11437 | |
11438 <div class=linkheader> | |
11439 <div class=right><a href="#description78">Descriptions</a></div> | |
11440 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/66360980?report=genbank&log$=nuclalign">GenBank</a> | |
11441 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/66360980?report=graph&log$=nuclalign">Graphics</a> | |
11442 </div> | |
11443 | |
11444 <div class=title> | |
11445 <p class=hittitle>Chain 0, Crystal Structure Of Quinupristin Bound To The G2099a Mutant 50s Ribosomal Subunit Of Haloarcula Marismortui</p> | |
11446 <p class=titleinfo> | |
11447 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/66360980?report=genbank&log$=nuclalign">pdb|1YJW|0</a> | |
11448 <span class=b>Length:</span> 2922 | |
11449 <span class=b>Number of Matches:</span> 3 | |
11450 </p> | |
11451 </div> | |
11452 | |
11453 | |
11454 <div class=hotspot> | |
11455 <p class=range> | |
11456 <span class=range>Range 1: 305 to 297</span> | |
11457 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/66360980?report=genbank&log$=nuclalign&from=305&to=297">GenBank</a> | |
11458 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/66360980?report=graph&log$=nuclalign&from=305&to=297">Graphics</a> | |
11459 </p> | |
11460 | |
11461 <table class=hotspotstable> | |
11462 <tr> | |
11463 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
11464 </tr> | |
11465 <tr> | |
11466 <td>18.3 bits(9)</td> | |
11467 <td>11.9</td> | |
11468 <td>9/9(100%)</td> | |
11469 <td>0/9(0%)</td> | |
11470 <td>Plus/Minus</td> | |
11471 </tr> | |
11472 </table> | |
11473 | |
11474 <pre class=alignmentgraphic>Query 7 TCGTGAAGA 15 | |
11475 ||||||||| | |
11476 Subject 305 TCGTGAAGA 297</pre> | |
11477 </div> | |
11478 <div class=hotspot> | |
11479 <p class=range> | |
11480 <span class=range>Range 2: 2625 to 2633</span> | |
11481 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/66360980?report=genbank&log$=nuclalign&from=2625&to=2633">GenBank</a> | |
11482 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/66360980?report=graph&log$=nuclalign&from=2625&to=2633">Graphics</a> | |
11483 </p> | |
11484 | |
11485 <table class=hotspotstable> | |
11486 <tr> | |
11487 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
11488 </tr> | |
11489 <tr> | |
11490 <td>18.3 bits(9)</td> | |
11491 <td>11.9</td> | |
11492 <td>9/9(100%)</td> | |
11493 <td>0/9(0%)</td> | |
11494 <td>Plus/Plus</td> | |
11495 </tr> | |
11496 </table> | |
11497 | |
11498 <pre class=alignmentgraphic>Query 4 CCGTCGTGA 12 | |
11499 ||||||||| | |
11500 Subject 2625 CCGTCGTGA 2633</pre> | |
11501 </div> | |
11502 <div class=hotspot> | |
11503 <p class=range> | |
11504 <span class=range>Range 3: 2606 to 2612</span> | |
11505 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/66360980?report=genbank&log$=nuclalign&from=2606&to=2612">GenBank</a> | |
11506 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/66360980?report=graph&log$=nuclalign&from=2606&to=2612">Graphics</a> | |
11507 </p> | |
11508 | |
11509 <table class=hotspotstable> | |
11510 <tr> | |
11511 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
11512 </tr> | |
11513 <tr> | |
11514 <td>14.4 bits(7)</td> | |
11515 <td>185.8</td> | |
11516 <td>7/7(100%)</td> | |
11517 <td>0/7(0%)</td> | |
11518 <td>Plus/Plus</td> | |
11519 </tr> | |
11520 </table> | |
11521 | |
11522 <pre class=alignmentgraphic>Query 6 GTCGTGA 12 | |
11523 ||||||| | |
11524 Subject 2606 GTCGTGA 2612</pre> | |
11525 </div> | |
11526 | |
11527 </div> | |
11528 | |
11529 <div class=alignment id=hit79> | |
11530 | |
11531 <div class=linkheader> | |
11532 <div class=right><a href="#description79">Descriptions</a></div> | |
11533 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/37928006?report=genbank&log$=nuclalign">GenBank</a> | |
11534 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/37928006?report=graph&log$=nuclalign">Graphics</a> | |
11535 </div> | |
11536 | |
11537 <div class=title> | |
11538 <p class=hittitle>Chain A, Crystal Structure Of Cca-Phe-Cap-Biotin Bound Simultaneously At Half Occupancy To Both The A-Site And P- Site Of The The 50s Ribosomal Subunit.</p> | |
11539 <p class=titleinfo> | |
11540 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/37928006?report=genbank&log$=nuclalign">pdb|1Q86|A</a> | |
11541 <span class=b>Length:</span> 2922 | |
11542 <span class=b>Number of Matches:</span> 2 | |
11543 </p> | |
11544 </div> | |
11545 | |
11546 | |
11547 <div class=hotspot> | |
11548 <p class=range> | |
11549 <span class=range>Range 1: 2624 to 2632</span> | |
11550 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/37928006?report=genbank&log$=nuclalign&from=2624&to=2632">GenBank</a> | |
11551 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/37928006?report=graph&log$=nuclalign&from=2624&to=2632">Graphics</a> | |
11552 </p> | |
11553 | |
11554 <table class=hotspotstable> | |
11555 <tr> | |
11556 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
11557 </tr> | |
11558 <tr> | |
11559 <td>18.3 bits(9)</td> | |
11560 <td>11.9</td> | |
11561 <td>9/9(100%)</td> | |
11562 <td>0/9(0%)</td> | |
11563 <td>Plus/Plus</td> | |
11564 </tr> | |
11565 </table> | |
11566 | |
11567 <pre class=alignmentgraphic>Query 4 CCGTCGTGA 12 | |
11568 ||||||||| | |
11569 Subject 2624 CCGTCGTGA 2632</pre> | |
11570 </div> | |
11571 <div class=hotspot> | |
11572 <p class=range> | |
11573 <span class=range>Range 2: 2605 to 2611</span> | |
11574 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/37928006?report=genbank&log$=nuclalign&from=2605&to=2611">GenBank</a> | |
11575 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/37928006?report=graph&log$=nuclalign&from=2605&to=2611">Graphics</a> | |
11576 </p> | |
11577 | |
11578 <table class=hotspotstable> | |
11579 <tr> | |
11580 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
11581 </tr> | |
11582 <tr> | |
11583 <td>14.4 bits(7)</td> | |
11584 <td>185.8</td> | |
11585 <td>7/7(100%)</td> | |
11586 <td>0/7(0%)</td> | |
11587 <td>Plus/Plus</td> | |
11588 </tr> | |
11589 </table> | |
11590 | |
11591 <pre class=alignmentgraphic>Query 6 GTCGTGA 12 | |
11592 ||||||| | |
11593 Subject 2605 GTCGTGA 2611</pre> | |
11594 </div> | |
11595 | |
11596 </div> | |
11597 | |
11598 <div class=alignment id=hit80> | |
11599 | |
11600 <div class=linkheader> | |
11601 <div class=right><a href="#description80">Descriptions</a></div> | |
11602 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/15825941?report=genbank&log$=nuclalign">GenBank</a> | |
11603 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/15825941?report=graph&log$=nuclalign">Graphics</a> | |
11604 </div> | |
11605 | |
11606 <div class=title> | |
11607 <p class=hittitle>Chain 0, Fully Refined Crystal Structure Of The Haloarcula Marismortui Large Ribosomal Subunit At 2.4 Angstrom Resolution </p> | |
11608 <p class=titleinfo> | |
11609 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/15825941?report=genbank&log$=nuclalign">pdb|1JJ2|0</a> | |
11610 <span class=b>Length:</span> 2922 | |
11611 <span class=b>Number of Matches:</span> 2 | |
11612 </p> | |
11613 </div> | |
11614 | |
11615 <a class=showmoretitles onclick="toggle_visibility('moretitles80'); return false;" href=''> | |
11616 See 16 more title(s) | |
11617 </a> | |
11618 | |
11619 <div class=moretitles id=moretitles80 style="display: none"> | |
11620 <div class=title> | |
11621 <p class=hittitle>Chain 0, The Haloarcula Marismortui 50s Complexed With A Pretranslocational Intermediate In Protein Synthesis </p> | |
11622 <p class=titleinfo> | |
11623 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/20150986?report=genbank&log$=nuclalign">pdb|1KQS|0</a> | |
11624 </p> | |
11625 </div> | |
11626 <div class=title> | |
11627 <p class=hittitle>Chain A, Co-Crystal Structure Of Azithromycin Bound To The 50s Ribosomal Subunit Of Haloarcula Marismortui </p> | |
11628 <p class=titleinfo> | |
11629 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/22219324?report=genbank&log$=nuclalign">pdb|1M1K|A</a> | |
11630 </p> | |
11631 </div> | |
11632 <div class=title> | |
11633 <p class=hittitle>Chain A, Co-Crystal Structure Of Cca-Phe-Caproic Acid-Biotin And Sparsomycin Bound To The 50s Ribosomal Subunit </p> | |
11634 <p class=titleinfo> | |
11635 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/24159019?report=genbank&log$=nuclalign">pdb|1M90|A</a> | |
11636 </p> | |
11637 </div> | |
11638 <div class=title> | |
11639 <p class=hittitle>Chain A, Co-Crystal Structure Of Anisomycin Bound To The 50s Ribosomal Subunit </p> | |
11640 <p class=titleinfo> | |
11641 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/34811116?report=genbank&log$=nuclalign">pdb|1K73|A</a> | |
11642 </p> | |
11643 </div> | |
11644 <div class=title> | |
11645 <p class=hittitle>Chain A, Structure Of Large Ribosomal Subunit In Complex With Virginiamycin M </p> | |
11646 <p class=titleinfo> | |
11647 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/34811185?report=genbank&log$=nuclalign">pdb|1N8R|A</a> | |
11648 </p> | |
11649 </div> | |
11650 <div class=title> | |
11651 <p class=hittitle>Chain A, Structure Of Chloramphenicol Bound To The 50s Ribosomal Subunit </p> | |
11652 <p class=titleinfo> | |
11653 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/34811215?report=genbank&log$=nuclalign">pdb|1NJI|A</a> | |
11654 </p> | |
11655 </div> | |
11656 <div class=title> | |
11657 <p class=hittitle>Chain A, Crystal Structure Of Ccdap-puromycin Bound At The Peptidyl Transferase Center Of The 50s Ribosomal Subunit </p> | |
11658 <p class=titleinfo> | |
11659 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/37927899?report=genbank&log$=nuclalign">pdb|1Q7Y|A</a> | |
11660 </p> | |
11661 </div> | |
11662 <div class=title> | |
11663 <p class=hittitle>Chain A, Crystal Structure Of Minihelix With 3' Puromycin Bound To A- Site Of The 50s Ribosomal Subunit. </p> | |
11664 <p class=titleinfo> | |
11665 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/37927934?report=genbank&log$=nuclalign">pdb|1Q81|A</a> | |
11666 </p> | |
11667 </div> | |
11668 <div class=title> | |
11669 <p class=hittitle>Chain A, Crystal Structure Of Cc-Puromycin Bound To The A-Site Of The 50s Ribosomal Subunit </p> | |
11670 <p class=titleinfo> | |
11671 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/37927970?report=genbank&log$=nuclalign">pdb|1Q82|A</a> | |
11672 </p> | |
11673 </div> | |
11674 <div class=title> | |
11675 <p class=hittitle>Chain 0, Structure Of A Deacylated Trna Minihelix Bound To The E Site Of The Large Ribosomal Subunit Of Haloarcula Marismortui </p> | |
11676 <p class=titleinfo> | |
11677 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/39654670?report=genbank&log$=nuclalign">pdb|1QVF|0</a> | |
11678 </p> | |
11679 </div> | |
11680 <div class=title> | |
11681 <p class=hittitle>Chain 0, Structure Of Cca Oligonucleotide Bound To The Trna Binding Sites Of The Large Ribosomal Subunit Of Haloarcula Marismortui </p> | |
11682 <p class=titleinfo> | |
11683 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/39654701?report=genbank&log$=nuclalign">pdb|1QVG|0</a> | |
11684 </p> | |
11685 </div> | |
11686 <div class=title> | |
11687 <p class=hittitle>Chain A, Co-Crystal Structure Of Carbomycin A Bound To The 50s Ribosomal Subunit Of Haloarcula Marismortui </p> | |
11688 <p class=titleinfo> | |
11689 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/157878615?report=genbank&log$=nuclalign">pdb|1K8A|A</a> | |
11690 </p> | |
11691 </div> | |
11692 <div class=title> | |
11693 <p class=hittitle>Chain A, Co-Crystal Structure Of Tylosin Bound To The 50s Ribosomal Subunit Of Haloarcula Marismortui </p> | |
11694 <p class=titleinfo> | |
11695 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/157878625?report=genbank&log$=nuclalign">pdb|1K9M|A</a> | |
11696 </p> | |
11697 </div> | |
11698 <div class=title> | |
11699 <p class=hittitle>Chain A, Co-crystal Structure Of Spiramycin Bound To The 50s Ribosomal Subunit Of Haloarcula Marismortui </p> | |
11700 <p class=titleinfo> | |
11701 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/157878639?report=genbank&log$=nuclalign">pdb|1KD1|A</a> | |
11702 </p> | |
11703 </div> | |
11704 <div class=title> | |
11705 <p class=hittitle>Chain 0, Trigger Factor Ribosome Binding Domain In Complex With 50s </p> | |
11706 <p class=titleinfo> | |
11707 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/157880605?report=genbank&log$=nuclalign">pdb|1W2B|0</a> | |
11708 </p> | |
11709 </div> | |
11710 <div class=title> | |
11711 <p class=hittitle>Chain 0, The Structure Of An Enhanced Oxazolidinone Inhibitor Bound To The 50s Ribosomal Subunit Of H. Marismortui</p> | |
11712 <p class=titleinfo> | |
11713 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/228311909?report=genbank&log$=nuclalign">pdb|3CXC|0</a> | |
11714 </p> | |
11715 </div> | |
11716 </div> | |
11717 | |
11718 <div class=hotspot> | |
11719 <p class=range> | |
11720 <span class=range>Range 1: 2624 to 2632</span> | |
11721 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/15825941?report=genbank&log$=nuclalign&from=2624&to=2632">GenBank</a> | |
11722 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/15825941?report=graph&log$=nuclalign&from=2624&to=2632">Graphics</a> | |
11723 </p> | |
11724 | |
11725 <table class=hotspotstable> | |
11726 <tr> | |
11727 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
11728 </tr> | |
11729 <tr> | |
11730 <td>18.3 bits(9)</td> | |
11731 <td>11.9</td> | |
11732 <td>9/9(100%)</td> | |
11733 <td>0/9(0%)</td> | |
11734 <td>Plus/Plus</td> | |
11735 </tr> | |
11736 </table> | |
11737 | |
11738 <pre class=alignmentgraphic>Query 4 CCGTCGTGA 12 | |
11739 ||||||||| | |
11740 Subject 2624 CCGTCGTGA 2632</pre> | |
11741 </div> | |
11742 <div class=hotspot> | |
11743 <p class=range> | |
11744 <span class=range>Range 2: 2605 to 2611</span> | |
11745 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/15825941?report=genbank&log$=nuclalign&from=2605&to=2611">GenBank</a> | |
11746 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/15825941?report=graph&log$=nuclalign&from=2605&to=2611">Graphics</a> | |
11747 </p> | |
11748 | |
11749 <table class=hotspotstable> | |
11750 <tr> | |
11751 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
11752 </tr> | |
11753 <tr> | |
11754 <td>14.4 bits(7)</td> | |
11755 <td>185.8</td> | |
11756 <td>7/7(100%)</td> | |
11757 <td>0/7(0%)</td> | |
11758 <td>Plus/Plus</td> | |
11759 </tr> | |
11760 </table> | |
11761 | |
11762 <pre class=alignmentgraphic>Query 6 GTCGTGA 12 | |
11763 ||||||| | |
11764 Subject 2605 GTCGTGA 2611</pre> | |
11765 </div> | |
11766 | |
11767 </div> | |
11768 | |
11769 <div class=alignment id=hit81> | |
11770 | |
11771 <div class=linkheader> | |
11772 <div class=right><a href="#description81">Descriptions</a></div> | |
11773 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/34811146?report=genbank&log$=nuclalign">GenBank</a> | |
11774 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/34811146?report=graph&log$=nuclalign">Graphics</a> | |
11775 </div> | |
11776 | |
11777 <div class=title> | |
11778 <p class=hittitle>Chain A, Co-Crystal Structure Of Blasticidin S Bound To The 50s Ribosomal Subunit</p> | |
11779 <p class=titleinfo> | |
11780 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/34811146?report=genbank&log$=nuclalign">pdb|1KC8|A</a> | |
11781 <span class=b>Length:</span> 2922 | |
11782 <span class=b>Number of Matches:</span> 2 | |
11783 </p> | |
11784 </div> | |
11785 | |
11786 | |
11787 <div class=hotspot> | |
11788 <p class=range> | |
11789 <span class=range>Range 1: 2624 to 2632</span> | |
11790 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/34811146?report=genbank&log$=nuclalign&from=2624&to=2632">GenBank</a> | |
11791 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/34811146?report=graph&log$=nuclalign&from=2624&to=2632">Graphics</a> | |
11792 </p> | |
11793 | |
11794 <table class=hotspotstable> | |
11795 <tr> | |
11796 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
11797 </tr> | |
11798 <tr> | |
11799 <td>18.3 bits(9)</td> | |
11800 <td>11.9</td> | |
11801 <td>9/9(100%)</td> | |
11802 <td>0/9(0%)</td> | |
11803 <td>Plus/Plus</td> | |
11804 </tr> | |
11805 </table> | |
11806 | |
11807 <pre class=alignmentgraphic>Query 4 CCGTCGTGA 12 | |
11808 ||||||||| | |
11809 Subject 2624 CCGTCGTGA 2632</pre> | |
11810 </div> | |
11811 <div class=hotspot> | |
11812 <p class=range> | |
11813 <span class=range>Range 2: 2605 to 2611</span> | |
11814 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/34811146?report=genbank&log$=nuclalign&from=2605&to=2611">GenBank</a> | |
11815 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/34811146?report=graph&log$=nuclalign&from=2605&to=2611">Graphics</a> | |
11816 </p> | |
11817 | |
11818 <table class=hotspotstable> | |
11819 <tr> | |
11820 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
11821 </tr> | |
11822 <tr> | |
11823 <td>14.4 bits(7)</td> | |
11824 <td>185.8</td> | |
11825 <td>7/7(100%)</td> | |
11826 <td>0/7(0%)</td> | |
11827 <td>Plus/Plus</td> | |
11828 </tr> | |
11829 </table> | |
11830 | |
11831 <pre class=alignmentgraphic>Query 6 GTCGTGA 12 | |
11832 ||||||| | |
11833 Subject 2605 GTCGTGA 2611</pre> | |
11834 </div> | |
11835 | |
11836 </div> | |
11837 | |
11838 <div class=alignment id=hit82> | |
11839 | |
11840 <div class=linkheader> | |
11841 <div class=right><a href="#description82">Descriptions</a></div> | |
11842 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/10120918?report=genbank&log$=nuclalign">GenBank</a> | |
11843 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/10120918?report=graph&log$=nuclalign">Graphics</a> | |
11844 </div> | |
11845 | |
11846 <div class=title> | |
11847 <p class=hittitle>Chain 0, Crystal Structure Of The Large Ribosomal Subunit From Haloarcula Marismortui At 2.4 Angstrom Resolution</p> | |
11848 <p class=titleinfo> | |
11849 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/10120918?report=genbank&log$=nuclalign">pdb|1FFK|0</a> | |
11850 <span class=b>Length:</span> 2922 | |
11851 <span class=b>Number of Matches:</span> 2 | |
11852 </p> | |
11853 </div> | |
11854 | |
11855 | |
11856 <div class=hotspot> | |
11857 <p class=range> | |
11858 <span class=range>Range 1: 2624 to 2632</span> | |
11859 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/10120918?report=genbank&log$=nuclalign&from=2624&to=2632">GenBank</a> | |
11860 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/10120918?report=graph&log$=nuclalign&from=2624&to=2632">Graphics</a> | |
11861 </p> | |
11862 | |
11863 <table class=hotspotstable> | |
11864 <tr> | |
11865 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
11866 </tr> | |
11867 <tr> | |
11868 <td>18.3 bits(9)</td> | |
11869 <td>11.9</td> | |
11870 <td>9/9(100%)</td> | |
11871 <td>0/9(0%)</td> | |
11872 <td>Plus/Plus</td> | |
11873 </tr> | |
11874 </table> | |
11875 | |
11876 <pre class=alignmentgraphic>Query 4 CCGTCGTGA 12 | |
11877 ||||||||| | |
11878 Subject 2624 CCGTCGTGA 2632</pre> | |
11879 </div> | |
11880 <div class=hotspot> | |
11881 <p class=range> | |
11882 <span class=range>Range 2: 2605 to 2611</span> | |
11883 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/10120918?report=genbank&log$=nuclalign&from=2605&to=2611">GenBank</a> | |
11884 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/10120918?report=graph&log$=nuclalign&from=2605&to=2611">Graphics</a> | |
11885 </p> | |
11886 | |
11887 <table class=hotspotstable> | |
11888 <tr> | |
11889 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
11890 </tr> | |
11891 <tr> | |
11892 <td>14.4 bits(7)</td> | |
11893 <td>185.8</td> | |
11894 <td>7/7(100%)</td> | |
11895 <td>0/7(0%)</td> | |
11896 <td>Plus/Plus</td> | |
11897 </tr> | |
11898 </table> | |
11899 | |
11900 <pre class=alignmentgraphic>Query 6 GTCGTGA 12 | |
11901 ||||||| | |
11902 Subject 2605 GTCGTGA 2611</pre> | |
11903 </div> | |
11904 | |
11905 </div> | |
11906 | |
11907 <div class=alignment id=hit83> | |
11908 | |
11909 <div class=linkheader> | |
11910 <div class=right><a href="#description83">Descriptions</a></div> | |
11911 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/10120728?report=genbank&log$=nuclalign">GenBank</a> | |
11912 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/10120728?report=graph&log$=nuclalign">Graphics</a> | |
11913 </div> | |
11914 | |
11915 <div class=title> | |
11916 <p class=hittitle>Chain A, Large Ribosomal Subunit Complexed With A 13 Bp Minihelix- Puromycin Compound</p> | |
11917 <p class=titleinfo> | |
11918 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/10120728?report=genbank&log$=nuclalign">pdb|1FG0|A</a> | |
11919 <span class=b>Length:</span> 602 | |
11920 <span class=b>Number of Matches:</span> 2 | |
11921 </p> | |
11922 </div> | |
11923 | |
11924 | |
11925 <div class=hotspot> | |
11926 <p class=range> | |
11927 <span class=range>Range 1: 563 to 571</span> | |
11928 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/10120728?report=genbank&log$=nuclalign&from=563&to=571">GenBank</a> | |
11929 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/10120728?report=graph&log$=nuclalign&from=563&to=571">Graphics</a> | |
11930 </p> | |
11931 | |
11932 <table class=hotspotstable> | |
11933 <tr> | |
11934 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
11935 </tr> | |
11936 <tr> | |
11937 <td>18.3 bits(9)</td> | |
11938 <td>11.9</td> | |
11939 <td>9/9(100%)</td> | |
11940 <td>0/9(0%)</td> | |
11941 <td>Plus/Plus</td> | |
11942 </tr> | |
11943 </table> | |
11944 | |
11945 <pre class=alignmentgraphic>Query 4 CCGTCGTGA 12 | |
11946 ||||||||| | |
11947 Subject 563 CCGTCGTGA 571</pre> | |
11948 </div> | |
11949 <div class=hotspot> | |
11950 <p class=range> | |
11951 <span class=range>Range 2: 544 to 550</span> | |
11952 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/10120728?report=genbank&log$=nuclalign&from=544&to=550">GenBank</a> | |
11953 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/10120728?report=graph&log$=nuclalign&from=544&to=550">Graphics</a> | |
11954 </p> | |
11955 | |
11956 <table class=hotspotstable> | |
11957 <tr> | |
11958 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
11959 </tr> | |
11960 <tr> | |
11961 <td>14.4 bits(7)</td> | |
11962 <td>185.8</td> | |
11963 <td>7/7(100%)</td> | |
11964 <td>0/7(0%)</td> | |
11965 <td>Plus/Plus</td> | |
11966 </tr> | |
11967 </table> | |
11968 | |
11969 <pre class=alignmentgraphic>Query 6 GTCGTGA 12 | |
11970 ||||||| | |
11971 Subject 544 GTCGTGA 550</pre> | |
11972 </div> | |
11973 | |
11974 </div> | |
11975 | |
11976 <div class=alignment id=hit84> | |
11977 | |
11978 <div class=linkheader> | |
11979 <div class=right><a href="#description84">Descriptions</a></div> | |
11980 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/10120727?report=genbank&log$=nuclalign">GenBank</a> | |
11981 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/10120727?report=graph&log$=nuclalign">Graphics</a> | |
11982 </div> | |
11983 | |
11984 <div class=title> | |
11985 <p class=hittitle>Chain A, Large Ribosomal Subunit Complexed With R(Cc)-Da-Puromycin</p> | |
11986 <p class=titleinfo> | |
11987 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/10120727?report=genbank&log$=nuclalign">pdb|1FFZ|A</a> | |
11988 <span class=b>Length:</span> 602 | |
11989 <span class=b>Number of Matches:</span> 2 | |
11990 </p> | |
11991 </div> | |
11992 | |
11993 | |
11994 <div class=hotspot> | |
11995 <p class=range> | |
11996 <span class=range>Range 1: 563 to 571</span> | |
11997 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/10120727?report=genbank&log$=nuclalign&from=563&to=571">GenBank</a> | |
11998 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/10120727?report=graph&log$=nuclalign&from=563&to=571">Graphics</a> | |
11999 </p> | |
12000 | |
12001 <table class=hotspotstable> | |
12002 <tr> | |
12003 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
12004 </tr> | |
12005 <tr> | |
12006 <td>18.3 bits(9)</td> | |
12007 <td>11.9</td> | |
12008 <td>9/9(100%)</td> | |
12009 <td>0/9(0%)</td> | |
12010 <td>Plus/Plus</td> | |
12011 </tr> | |
12012 </table> | |
12013 | |
12014 <pre class=alignmentgraphic>Query 4 CCGTCGTGA 12 | |
12015 ||||||||| | |
12016 Subject 563 CCGTCGTGA 571</pre> | |
12017 </div> | |
12018 <div class=hotspot> | |
12019 <p class=range> | |
12020 <span class=range>Range 2: 544 to 550</span> | |
12021 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/10120727?report=genbank&log$=nuclalign&from=544&to=550">GenBank</a> | |
12022 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/10120727?report=graph&log$=nuclalign&from=544&to=550">Graphics</a> | |
12023 </p> | |
12024 | |
12025 <table class=hotspotstable> | |
12026 <tr> | |
12027 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
12028 </tr> | |
12029 <tr> | |
12030 <td>14.4 bits(7)</td> | |
12031 <td>185.8</td> | |
12032 <td>7/7(100%)</td> | |
12033 <td>0/7(0%)</td> | |
12034 <td>Plus/Plus</td> | |
12035 </tr> | |
12036 </table> | |
12037 | |
12038 <pre class=alignmentgraphic>Query 6 GTCGTGA 12 | |
12039 ||||||| | |
12040 Subject 544 GTCGTGA 550</pre> | |
12041 </div> | |
12042 | |
12043 </div> | |
12044 | |
12045 <div class=alignment id=hit85> | |
12046 | |
12047 <div class=linkheader> | |
12048 <div class=right><a href="#description85">Descriptions</a></div> | |
12049 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/558705015?report=genbank&log$=nuclalign">GenBank</a> | |
12050 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/558705015?report=graph&log$=nuclalign">Graphics</a> | |
12051 </div> | |
12052 | |
12053 <div class=title> | |
12054 <p class=hittitle>Chain F, Crystal Structure Of The Catalytic Domain Of Rlub In Complex With A 21-nucleotide Rna Substrate</p> | |
12055 <p class=titleinfo> | |
12056 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/558705015?report=genbank&log$=nuclalign">pdb|4LGT|F</a> | |
12057 <span class=b>Length:</span> 21 | |
12058 <span class=b>Number of Matches:</span> 1 | |
12059 </p> | |
12060 </div> | |
12061 | |
12062 | |
12063 <div class=hotspot> | |
12064 <p class=range> | |
12065 <span class=range>Range 1: 5 to 12</span> | |
12066 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/558705015?report=genbank&log$=nuclalign&from=5&to=12">GenBank</a> | |
12067 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/558705015?report=graph&log$=nuclalign&from=5&to=12">Graphics</a> | |
12068 </p> | |
12069 | |
12070 <table class=hotspotstable> | |
12071 <tr> | |
12072 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
12073 </tr> | |
12074 <tr> | |
12075 <td>16.4 bits(8)</td> | |
12076 <td>47.0</td> | |
12077 <td>8/8(100%)</td> | |
12078 <td>0/8(0%)</td> | |
12079 <td>Plus/Plus</td> | |
12080 </tr> | |
12081 </table> | |
12082 | |
12083 <pre class=alignmentgraphic>Query 5 CGTCGTGA 12 | |
12084 |||||||| | |
12085 Subject 5 CGTCGTGA 12</pre> | |
12086 </div> | |
12087 | |
12088 </div> | |
12089 | |
12090 <div class=alignment id=hit86> | |
12091 | |
12092 <div class=linkheader> | |
12093 <div class=right><a href="#description86">Descriptions</a></div> | |
12094 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/558705013?report=genbank&log$=nuclalign">GenBank</a> | |
12095 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/558705013?report=graph&log$=nuclalign">Graphics</a> | |
12096 </div> | |
12097 | |
12098 <div class=title> | |
12099 <p class=hittitle>Chain E, Crystal Structure Of The Catalytic Domain Of Rlub In Complex With A 21-nucleotide Rna Substrate</p> | |
12100 <p class=titleinfo> | |
12101 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/558705013?report=genbank&log$=nuclalign">pdb|4LGT|E</a> | |
12102 <span class=b>Length:</span> 21 | |
12103 <span class=b>Number of Matches:</span> 1 | |
12104 </p> | |
12105 </div> | |
12106 | |
12107 | |
12108 <div class=hotspot> | |
12109 <p class=range> | |
12110 <span class=range>Range 1: 5 to 12</span> | |
12111 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/558705013?report=genbank&log$=nuclalign&from=5&to=12">GenBank</a> | |
12112 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/558705013?report=graph&log$=nuclalign&from=5&to=12">Graphics</a> | |
12113 </p> | |
12114 | |
12115 <table class=hotspotstable> | |
12116 <tr> | |
12117 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
12118 </tr> | |
12119 <tr> | |
12120 <td>16.4 bits(8)</td> | |
12121 <td>47.0</td> | |
12122 <td>8/8(100%)</td> | |
12123 <td>0/8(0%)</td> | |
12124 <td>Plus/Plus</td> | |
12125 </tr> | |
12126 </table> | |
12127 | |
12128 <pre class=alignmentgraphic>Query 5 CGTCGTGA 12 | |
12129 |||||||| | |
12130 Subject 5 CGTCGTGA 12</pre> | |
12131 </div> | |
12132 | |
12133 </div> | |
12134 | |
12135 <div class=alignment id=hit87> | |
12136 | |
12137 <div class=linkheader> | |
12138 <div class=right><a href="#description87">Descriptions</a></div> | |
12139 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/529280935?report=genbank&log$=nuclalign">GenBank</a> | |
12140 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/529280935?report=graph&log$=nuclalign">Graphics</a> | |
12141 </div> | |
12142 | |
12143 <div class=title> | |
12144 <p class=hittitle>Chain A, Thermus Thermophilus Ribosome</p> | |
12145 <p class=titleinfo> | |
12146 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/529280935?report=genbank&log$=nuclalign">pdb|4BTD|A</a> | |
12147 <span class=b>Length:</span> 2915 | |
12148 <span class=b>Number of Matches:</span> 2 | |
12149 </p> | |
12150 </div> | |
12151 | |
12152 | |
12153 <div class=hotspot> | |
12154 <p class=range> | |
12155 <span class=range>Range 1: 2048 to 2055</span> | |
12156 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/529280935?report=genbank&log$=nuclalign&from=2048&to=2055">GenBank</a> | |
12157 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/529280935?report=graph&log$=nuclalign&from=2048&to=2055">Graphics</a> | |
12158 </p> | |
12159 | |
12160 <table class=hotspotstable> | |
12161 <tr> | |
12162 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
12163 </tr> | |
12164 <tr> | |
12165 <td>16.4 bits(8)</td> | |
12166 <td>47.0</td> | |
12167 <td>8/8(100%)</td> | |
12168 <td>0/8(0%)</td> | |
12169 <td>Plus/Plus</td> | |
12170 </tr> | |
12171 </table> | |
12172 | |
12173 <pre class=alignmentgraphic>Query 8 CGTGAAGA 15 | |
12174 |||||||| | |
12175 Subject 2048 CGTGAAGA 2055</pre> | |
12176 </div> | |
12177 <div class=hotspot> | |
12178 <p class=range> | |
12179 <span class=range>Range 2: 2603 to 2610</span> | |
12180 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/529280935?report=genbank&log$=nuclalign&from=2603&to=2610">GenBank</a> | |
12181 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/529280935?report=graph&log$=nuclalign&from=2603&to=2610">Graphics</a> | |
12182 </p> | |
12183 | |
12184 <table class=hotspotstable> | |
12185 <tr> | |
12186 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
12187 </tr> | |
12188 <tr> | |
12189 <td>16.4 bits(8)</td> | |
12190 <td>47.0</td> | |
12191 <td>8/8(100%)</td> | |
12192 <td>0/8(0%)</td> | |
12193 <td>Plus/Plus</td> | |
12194 </tr> | |
12195 </table> | |
12196 | |
12197 <pre class=alignmentgraphic>Query 5 CGTCGTGA 12 | |
12198 |||||||| | |
12199 Subject 2603 CGTCGTGA 2610</pre> | |
12200 </div> | |
12201 | |
12202 </div> | |
12203 | |
12204 <div class=alignment id=hit88> | |
12205 | |
12206 <div class=linkheader> | |
12207 <div class=right><a href="#description88">Descriptions</a></div> | |
12208 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/528082310?report=genbank&log$=nuclalign">GenBank</a> | |
12209 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/528082310?report=graph&log$=nuclalign">Graphics</a> | |
12210 </div> | |
12211 | |
12212 <div class=title> | |
12213 <p class=hittitle>Chain A, Crystal Structure Of Blasticidin S Bound To Thermus Thermophilus 70s Ribosome. This File Contains The 50s Subunit And Blasticidin S Molecule From The First 70s Ribosome. </p> | |
12214 <p class=titleinfo> | |
12215 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/528082310?report=genbank&log$=nuclalign">pdb|4L6J|A</a> | |
12216 <span class=b>Length:</span> 2879 | |
12217 <span class=b>Number of Matches:</span> 2 | |
12218 </p> | |
12219 </div> | |
12220 | |
12221 <a class=showmoretitles onclick="toggle_visibility('moretitles88'); return false;" href=''> | |
12222 See 1 more title(s) | |
12223 </a> | |
12224 | |
12225 <div class=moretitles id=moretitles88 style="display: none"> | |
12226 <div class=title> | |
12227 <p class=hittitle>Chain A, Crystal Structure Of Blasticidin S Bound To Thermus Thermophilus 70s Ribosome. This File Contains The 50s Subunit And Blasticidin S Molecule From The Second 70s Ribosome</p> | |
12228 <p class=titleinfo> | |
12229 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/528082364?report=genbank&log$=nuclalign">pdb|4L6L|A</a> | |
12230 </p> | |
12231 </div> | |
12232 </div> | |
12233 | |
12234 <div class=hotspot> | |
12235 <p class=range> | |
12236 <span class=range>Range 1: 2021 to 2028</span> | |
12237 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/528082310?report=genbank&log$=nuclalign&from=2021&to=2028">GenBank</a> | |
12238 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/528082310?report=graph&log$=nuclalign&from=2021&to=2028">Graphics</a> | |
12239 </p> | |
12240 | |
12241 <table class=hotspotstable> | |
12242 <tr> | |
12243 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
12244 </tr> | |
12245 <tr> | |
12246 <td>16.4 bits(8)</td> | |
12247 <td>47.0</td> | |
12248 <td>8/8(100%)</td> | |
12249 <td>0/8(0%)</td> | |
12250 <td>Plus/Plus</td> | |
12251 </tr> | |
12252 </table> | |
12253 | |
12254 <pre class=alignmentgraphic>Query 8 CGTGAAGA 15 | |
12255 |||||||| | |
12256 Subject 2021 CGTGAAGA 2028</pre> | |
12257 </div> | |
12258 <div class=hotspot> | |
12259 <p class=range> | |
12260 <span class=range>Range 2: 2576 to 2583</span> | |
12261 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/528082310?report=genbank&log$=nuclalign&from=2576&to=2583">GenBank</a> | |
12262 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/528082310?report=graph&log$=nuclalign&from=2576&to=2583">Graphics</a> | |
12263 </p> | |
12264 | |
12265 <table class=hotspotstable> | |
12266 <tr> | |
12267 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
12268 </tr> | |
12269 <tr> | |
12270 <td>16.4 bits(8)</td> | |
12271 <td>47.0</td> | |
12272 <td>8/8(100%)</td> | |
12273 <td>0/8(0%)</td> | |
12274 <td>Plus/Plus</td> | |
12275 </tr> | |
12276 </table> | |
12277 | |
12278 <pre class=alignmentgraphic>Query 5 CGTCGTGA 12 | |
12279 |||||||| | |
12280 Subject 2576 CGTCGTGA 2583</pre> | |
12281 </div> | |
12282 | |
12283 </div> | |
12284 | |
12285 <div class=alignment id=hit89> | |
12286 | |
12287 <div class=linkheader> | |
12288 <div class=right><a href="#description89">Descriptions</a></div> | |
12289 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/520729408?report=genbank&log$=nuclalign">GenBank</a> | |
12290 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/520729408?report=graph&log$=nuclalign">Graphics</a> | |
12291 </div> | |
12292 | |
12293 <div class=title> | |
12294 <p class=hittitle>Chain A, Crystal Structure Of The 70s Ribosome Bound With The Q253p Mutant Of Release Factor Rf2. 50s Of The A Subunit </p> | |
12295 <p class=titleinfo> | |
12296 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/520729408?report=genbank&log$=nuclalign">pdb|4KFI|A</a> | |
12297 <span class=b>Length:</span> 2879 | |
12298 <span class=b>Number of Matches:</span> 2 | |
12299 </p> | |
12300 </div> | |
12301 | |
12302 <a class=showmoretitles onclick="toggle_visibility('moretitles89'); return false;" href=''> | |
12303 See 1 more title(s) | |
12304 </a> | |
12305 | |
12306 <div class=moretitles id=moretitles89 style="display: none"> | |
12307 <div class=title> | |
12308 <p class=hittitle>Chain A, Crystal Structure Of The 70s Ribosome Bound With The Q253p Mutant Of Release Factor Rf2. 50s Of The B Subunit</p> | |
12309 <p class=titleinfo> | |
12310 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/520729463?report=genbank&log$=nuclalign">pdb|4KFL|A</a> | |
12311 </p> | |
12312 </div> | |
12313 </div> | |
12314 | |
12315 <div class=hotspot> | |
12316 <p class=range> | |
12317 <span class=range>Range 1: 2021 to 2028</span> | |
12318 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/520729408?report=genbank&log$=nuclalign&from=2021&to=2028">GenBank</a> | |
12319 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/520729408?report=graph&log$=nuclalign&from=2021&to=2028">Graphics</a> | |
12320 </p> | |
12321 | |
12322 <table class=hotspotstable> | |
12323 <tr> | |
12324 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
12325 </tr> | |
12326 <tr> | |
12327 <td>16.4 bits(8)</td> | |
12328 <td>47.0</td> | |
12329 <td>8/8(100%)</td> | |
12330 <td>0/8(0%)</td> | |
12331 <td>Plus/Plus</td> | |
12332 </tr> | |
12333 </table> | |
12334 | |
12335 <pre class=alignmentgraphic>Query 8 CGTGAAGA 15 | |
12336 |||||||| | |
12337 Subject 2021 CGTGAAGA 2028</pre> | |
12338 </div> | |
12339 <div class=hotspot> | |
12340 <p class=range> | |
12341 <span class=range>Range 2: 2576 to 2583</span> | |
12342 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/520729408?report=genbank&log$=nuclalign&from=2576&to=2583">GenBank</a> | |
12343 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/520729408?report=graph&log$=nuclalign&from=2576&to=2583">Graphics</a> | |
12344 </p> | |
12345 | |
12346 <table class=hotspotstable> | |
12347 <tr> | |
12348 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
12349 </tr> | |
12350 <tr> | |
12351 <td>16.4 bits(8)</td> | |
12352 <td>47.0</td> | |
12353 <td>8/8(100%)</td> | |
12354 <td>0/8(0%)</td> | |
12355 <td>Plus/Plus</td> | |
12356 </tr> | |
12357 </table> | |
12358 | |
12359 <pre class=alignmentgraphic>Query 5 CGTCGTGA 12 | |
12360 |||||||| | |
12361 Subject 2576 CGTCGTGA 2583</pre> | |
12362 </div> | |
12363 | |
12364 </div> | |
12365 | |
12366 <div class=alignment id=hit90> | |
12367 | |
12368 <div class=linkheader> | |
12369 <div class=right><a href="#description90">Descriptions</a></div> | |
12370 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/520728860?report=genbank&log$=nuclalign">GenBank</a> | |
12371 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/520728860?report=graph&log$=nuclalign">Graphics</a> | |
12372 </div> | |
12373 | |
12374 <div class=title> | |
12375 <p class=hittitle>Chain A, Crystal Structure Of Thermus Thermophilus 70s Containing Trnas And Mrna Stop Codon With Pseudouridine</p> | |
12376 <p class=titleinfo> | |
12377 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/520728860?report=genbank&log$=nuclalign">pdb|4K0Q|A</a> | |
12378 <span class=b>Length:</span> 2915 | |
12379 <span class=b>Number of Matches:</span> 2 | |
12380 </p> | |
12381 </div> | |
12382 | |
12383 | |
12384 <div class=hotspot> | |
12385 <p class=range> | |
12386 <span class=range>Range 1: 2048 to 2055</span> | |
12387 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/520728860?report=genbank&log$=nuclalign&from=2048&to=2055">GenBank</a> | |
12388 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/520728860?report=graph&log$=nuclalign&from=2048&to=2055">Graphics</a> | |
12389 </p> | |
12390 | |
12391 <table class=hotspotstable> | |
12392 <tr> | |
12393 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
12394 </tr> | |
12395 <tr> | |
12396 <td>16.4 bits(8)</td> | |
12397 <td>47.0</td> | |
12398 <td>8/8(100%)</td> | |
12399 <td>0/8(0%)</td> | |
12400 <td>Plus/Plus</td> | |
12401 </tr> | |
12402 </table> | |
12403 | |
12404 <pre class=alignmentgraphic>Query 8 CGTGAAGA 15 | |
12405 |||||||| | |
12406 Subject 2048 CGTGAAGA 2055</pre> | |
12407 </div> | |
12408 <div class=hotspot> | |
12409 <p class=range> | |
12410 <span class=range>Range 2: 2603 to 2610</span> | |
12411 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/520728860?report=genbank&log$=nuclalign&from=2603&to=2610">GenBank</a> | |
12412 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/520728860?report=graph&log$=nuclalign&from=2603&to=2610">Graphics</a> | |
12413 </p> | |
12414 | |
12415 <table class=hotspotstable> | |
12416 <tr> | |
12417 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
12418 </tr> | |
12419 <tr> | |
12420 <td>16.4 bits(8)</td> | |
12421 <td>47.0</td> | |
12422 <td>8/8(100%)</td> | |
12423 <td>0/8(0%)</td> | |
12424 <td>Plus/Plus</td> | |
12425 </tr> | |
12426 </table> | |
12427 | |
12428 <pre class=alignmentgraphic>Query 5 CGTCGTGA 12 | |
12429 |||||||| | |
12430 Subject 2603 CGTCGTGA 2610</pre> | |
12431 </div> | |
12432 | |
12433 </div> | |
12434 | |
12435 <div class=alignment id=hit91> | |
12436 | |
12437 <div class=linkheader> | |
12438 <div class=right><a href="#description91">Descriptions</a></div> | |
12439 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/520728802?report=genbank&log$=nuclalign">GenBank</a> | |
12440 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/520728802?report=graph&log$=nuclalign">Graphics</a> | |
12441 </div> | |
12442 | |
12443 <div class=title> | |
12444 <p class=hittitle>Chain A, Crystal Structure Of Thermus Thermophilus 70s Containing Trnas And Mrna Stop Codon With Pseudouridine</p> | |
12445 <p class=titleinfo> | |
12446 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/520728802?report=genbank&log$=nuclalign">pdb|4K0M|A</a> | |
12447 <span class=b>Length:</span> 2915 | |
12448 <span class=b>Number of Matches:</span> 2 | |
12449 </p> | |
12450 </div> | |
12451 | |
12452 | |
12453 <div class=hotspot> | |
12454 <p class=range> | |
12455 <span class=range>Range 1: 2048 to 2055</span> | |
12456 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/520728802?report=genbank&log$=nuclalign&from=2048&to=2055">GenBank</a> | |
12457 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/520728802?report=graph&log$=nuclalign&from=2048&to=2055">Graphics</a> | |
12458 </p> | |
12459 | |
12460 <table class=hotspotstable> | |
12461 <tr> | |
12462 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
12463 </tr> | |
12464 <tr> | |
12465 <td>16.4 bits(8)</td> | |
12466 <td>47.0</td> | |
12467 <td>8/8(100%)</td> | |
12468 <td>0/8(0%)</td> | |
12469 <td>Plus/Plus</td> | |
12470 </tr> | |
12471 </table> | |
12472 | |
12473 <pre class=alignmentgraphic>Query 8 CGTGAAGA 15 | |
12474 |||||||| | |
12475 Subject 2048 CGTGAAGA 2055</pre> | |
12476 </div> | |
12477 <div class=hotspot> | |
12478 <p class=range> | |
12479 <span class=range>Range 2: 2603 to 2610</span> | |
12480 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/520728802?report=genbank&log$=nuclalign&from=2603&to=2610">GenBank</a> | |
12481 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/520728802?report=graph&log$=nuclalign&from=2603&to=2610">Graphics</a> | |
12482 </p> | |
12483 | |
12484 <table class=hotspotstable> | |
12485 <tr> | |
12486 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
12487 </tr> | |
12488 <tr> | |
12489 <td>16.4 bits(8)</td> | |
12490 <td>47.0</td> | |
12491 <td>8/8(100%)</td> | |
12492 <td>0/8(0%)</td> | |
12493 <td>Plus/Plus</td> | |
12494 </tr> | |
12495 </table> | |
12496 | |
12497 <pre class=alignmentgraphic>Query 5 CGTCGTGA 12 | |
12498 |||||||| | |
12499 Subject 2603 CGTCGTGA 2610</pre> | |
12500 </div> | |
12501 | |
12502 </div> | |
12503 | |
12504 <div class=alignment id=hit92> | |
12505 | |
12506 <div class=linkheader> | |
12507 <div class=right><a href="#description92">Descriptions</a></div> | |
12508 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/512125286?report=genbank&log$=nuclalign">GenBank</a> | |
12509 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/512125286?report=graph&log$=nuclalign">Graphics</a> | |
12510 </div> | |
12511 | |
12512 <div class=title> | |
12513 <p class=hittitle>Chain A, Atomic Model Of The Immature 50s Subunit From Bacillus Subtilis (state I-a)</p> | |
12514 <p class=titleinfo> | |
12515 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/512125286?report=genbank&log$=nuclalign">pdb|3J3V|A</a> | |
12516 <span class=b>Length:</span> 2927 | |
12517 <span class=b>Number of Matches:</span> 5 | |
12518 </p> | |
12519 </div> | |
12520 | |
12521 | |
12522 <div class=hotspot> | |
12523 <p class=range> | |
12524 <span class=range>Range 1: 2620 to 2627</span> | |
12525 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/512125286?report=genbank&log$=nuclalign&from=2620&to=2627">GenBank</a> | |
12526 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/512125286?report=graph&log$=nuclalign&from=2620&to=2627">Graphics</a> | |
12527 </p> | |
12528 | |
12529 <table class=hotspotstable> | |
12530 <tr> | |
12531 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
12532 </tr> | |
12533 <tr> | |
12534 <td>16.4 bits(8)</td> | |
12535 <td>47.0</td> | |
12536 <td>8/8(100%)</td> | |
12537 <td>0/8(0%)</td> | |
12538 <td>Plus/Plus</td> | |
12539 </tr> | |
12540 </table> | |
12541 | |
12542 <pre class=alignmentgraphic>Query 5 CGTCGTGA 12 | |
12543 |||||||| | |
12544 Subject 2620 CGTCGTGA 2627</pre> | |
12545 </div> | |
12546 <div class=hotspot> | |
12547 <p class=range> | |
12548 <span class=range>Range 2: 340 to 346</span> | |
12549 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/512125286?report=genbank&log$=nuclalign&from=340&to=346">GenBank</a> | |
12550 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/512125286?report=graph&log$=nuclalign&from=340&to=346">Graphics</a> | |
12551 </p> | |
12552 | |
12553 <table class=hotspotstable> | |
12554 <tr> | |
12555 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
12556 </tr> | |
12557 <tr> | |
12558 <td>14.4 bits(7)</td> | |
12559 <td>185.8</td> | |
12560 <td>7/7(100%)</td> | |
12561 <td>0/7(0%)</td> | |
12562 <td>Plus/Plus</td> | |
12563 </tr> | |
12564 </table> | |
12565 | |
12566 <pre class=alignmentgraphic>Query 10 TGAAGAG 16 | |
12567 ||||||| | |
12568 Subject 340 TGAAGAG 346</pre> | |
12569 </div> | |
12570 <div class=hotspot> | |
12571 <p class=range> | |
12572 <span class=range>Range 3: 440 to 446</span> | |
12573 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/512125286?report=genbank&log$=nuclalign&from=440&to=446">GenBank</a> | |
12574 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/512125286?report=graph&log$=nuclalign&from=440&to=446">Graphics</a> | |
12575 </p> | |
12576 | |
12577 <table class=hotspotstable> | |
12578 <tr> | |
12579 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
12580 </tr> | |
12581 <tr> | |
12582 <td>14.4 bits(7)</td> | |
12583 <td>185.8</td> | |
12584 <td>7/7(100%)</td> | |
12585 <td>0/7(0%)</td> | |
12586 <td>Plus/Plus</td> | |
12587 </tr> | |
12588 </table> | |
12589 | |
12590 <pre class=alignmentgraphic>Query 3 TCCGTCG 9 | |
12591 ||||||| | |
12592 Subject 440 TCCGTCG 446</pre> | |
12593 </div> | |
12594 <div class=hotspot> | |
12595 <p class=range> | |
12596 <span class=range>Range 4: 2056 to 2062</span> | |
12597 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/512125286?report=genbank&log$=nuclalign&from=2056&to=2062">GenBank</a> | |
12598 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/512125286?report=graph&log$=nuclalign&from=2056&to=2062">Graphics</a> | |
12599 </p> | |
12600 | |
12601 <table class=hotspotstable> | |
12602 <tr> | |
12603 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
12604 </tr> | |
12605 <tr> | |
12606 <td>14.4 bits(7)</td> | |
12607 <td>185.8</td> | |
12608 <td>7/7(100%)</td> | |
12609 <td>0/7(0%)</td> | |
12610 <td>Plus/Plus</td> | |
12611 </tr> | |
12612 </table> | |
12613 | |
12614 <pre class=alignmentgraphic>Query 9 GTGAAGA 15 | |
12615 ||||||| | |
12616 Subject 2056 GTGAAGA 2062</pre> | |
12617 </div> | |
12618 <div class=hotspot> | |
12619 <p class=range> | |
12620 <span class=range>Range 5: 2644 to 2650</span> | |
12621 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/512125286?report=genbank&log$=nuclalign&from=2644&to=2650">GenBank</a> | |
12622 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/512125286?report=graph&log$=nuclalign&from=2644&to=2650">Graphics</a> | |
12623 </p> | |
12624 | |
12625 <table class=hotspotstable> | |
12626 <tr> | |
12627 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
12628 </tr> | |
12629 <tr> | |
12630 <td>14.4 bits(7)</td> | |
12631 <td>185.8</td> | |
12632 <td>7/7(100%)</td> | |
12633 <td>0/7(0%)</td> | |
12634 <td>Plus/Plus</td> | |
12635 </tr> | |
12636 </table> | |
12637 | |
12638 <pre class=alignmentgraphic>Query 3 TCCGTCG 9 | |
12639 ||||||| | |
12640 Subject 2644 TCCGTCG 2650</pre> | |
12641 </div> | |
12642 | |
12643 </div> | |
12644 | |
12645 <div class=alignment id=hit93> | |
12646 | |
12647 <div class=linkheader> | |
12648 <div class=right><a href="#description93">Descriptions</a></div> | |
12649 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/512125306?report=genbank&log$=nuclalign">GenBank</a> | |
12650 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/512125306?report=graph&log$=nuclalign">Graphics</a> | |
12651 </div> | |
12652 | |
12653 <div class=title> | |
12654 <p class=hittitle>Chain A, Atomic Model Of The Immature 50s Subunit From Bacillus Subtilis (state Ii-a)</p> | |
12655 <p class=titleinfo> | |
12656 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/512125306?report=genbank&log$=nuclalign">pdb|3J3W|A</a> | |
12657 <span class=b>Length:</span> 2927 | |
12658 <span class=b>Number of Matches:</span> 5 | |
12659 </p> | |
12660 </div> | |
12661 | |
12662 | |
12663 <div class=hotspot> | |
12664 <p class=range> | |
12665 <span class=range>Range 1: 2620 to 2627</span> | |
12666 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/512125306?report=genbank&log$=nuclalign&from=2620&to=2627">GenBank</a> | |
12667 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/512125306?report=graph&log$=nuclalign&from=2620&to=2627">Graphics</a> | |
12668 </p> | |
12669 | |
12670 <table class=hotspotstable> | |
12671 <tr> | |
12672 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
12673 </tr> | |
12674 <tr> | |
12675 <td>16.4 bits(8)</td> | |
12676 <td>47.0</td> | |
12677 <td>8/8(100%)</td> | |
12678 <td>0/8(0%)</td> | |
12679 <td>Plus/Plus</td> | |
12680 </tr> | |
12681 </table> | |
12682 | |
12683 <pre class=alignmentgraphic>Query 5 CGTCGTGA 12 | |
12684 |||||||| | |
12685 Subject 2620 CGTCGTGA 2627</pre> | |
12686 </div> | |
12687 <div class=hotspot> | |
12688 <p class=range> | |
12689 <span class=range>Range 2: 340 to 346</span> | |
12690 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/512125306?report=genbank&log$=nuclalign&from=340&to=346">GenBank</a> | |
12691 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/512125306?report=graph&log$=nuclalign&from=340&to=346">Graphics</a> | |
12692 </p> | |
12693 | |
12694 <table class=hotspotstable> | |
12695 <tr> | |
12696 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
12697 </tr> | |
12698 <tr> | |
12699 <td>14.4 bits(7)</td> | |
12700 <td>185.8</td> | |
12701 <td>7/7(100%)</td> | |
12702 <td>0/7(0%)</td> | |
12703 <td>Plus/Plus</td> | |
12704 </tr> | |
12705 </table> | |
12706 | |
12707 <pre class=alignmentgraphic>Query 10 TGAAGAG 16 | |
12708 ||||||| | |
12709 Subject 340 TGAAGAG 346</pre> | |
12710 </div> | |
12711 <div class=hotspot> | |
12712 <p class=range> | |
12713 <span class=range>Range 3: 440 to 446</span> | |
12714 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/512125306?report=genbank&log$=nuclalign&from=440&to=446">GenBank</a> | |
12715 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/512125306?report=graph&log$=nuclalign&from=440&to=446">Graphics</a> | |
12716 </p> | |
12717 | |
12718 <table class=hotspotstable> | |
12719 <tr> | |
12720 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
12721 </tr> | |
12722 <tr> | |
12723 <td>14.4 bits(7)</td> | |
12724 <td>185.8</td> | |
12725 <td>7/7(100%)</td> | |
12726 <td>0/7(0%)</td> | |
12727 <td>Plus/Plus</td> | |
12728 </tr> | |
12729 </table> | |
12730 | |
12731 <pre class=alignmentgraphic>Query 3 TCCGTCG 9 | |
12732 ||||||| | |
12733 Subject 440 TCCGTCG 446</pre> | |
12734 </div> | |
12735 <div class=hotspot> | |
12736 <p class=range> | |
12737 <span class=range>Range 4: 2056 to 2062</span> | |
12738 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/512125306?report=genbank&log$=nuclalign&from=2056&to=2062">GenBank</a> | |
12739 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/512125306?report=graph&log$=nuclalign&from=2056&to=2062">Graphics</a> | |
12740 </p> | |
12741 | |
12742 <table class=hotspotstable> | |
12743 <tr> | |
12744 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
12745 </tr> | |
12746 <tr> | |
12747 <td>14.4 bits(7)</td> | |
12748 <td>185.8</td> | |
12749 <td>7/7(100%)</td> | |
12750 <td>0/7(0%)</td> | |
12751 <td>Plus/Plus</td> | |
12752 </tr> | |
12753 </table> | |
12754 | |
12755 <pre class=alignmentgraphic>Query 9 GTGAAGA 15 | |
12756 ||||||| | |
12757 Subject 2056 GTGAAGA 2062</pre> | |
12758 </div> | |
12759 <div class=hotspot> | |
12760 <p class=range> | |
12761 <span class=range>Range 5: 2644 to 2650</span> | |
12762 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/512125306?report=genbank&log$=nuclalign&from=2644&to=2650">GenBank</a> | |
12763 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/512125306?report=graph&log$=nuclalign&from=2644&to=2650">Graphics</a> | |
12764 </p> | |
12765 | |
12766 <table class=hotspotstable> | |
12767 <tr> | |
12768 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
12769 </tr> | |
12770 <tr> | |
12771 <td>14.4 bits(7)</td> | |
12772 <td>185.8</td> | |
12773 <td>7/7(100%)</td> | |
12774 <td>0/7(0%)</td> | |
12775 <td>Plus/Plus</td> | |
12776 </tr> | |
12777 </table> | |
12778 | |
12779 <pre class=alignmentgraphic>Query 3 TCCGTCG 9 | |
12780 ||||||| | |
12781 Subject 2644 TCCGTCG 2650</pre> | |
12782 </div> | |
12783 | |
12784 </div> | |
12785 | |
12786 <div class=alignment id=hit94> | |
12787 | |
12788 <div class=linkheader> | |
12789 <div class=right><a href="#description94">Descriptions</a></div> | |
12790 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/482676744?report=genbank&log$=nuclalign">GenBank</a> | |
12791 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/482676744?report=graph&log$=nuclalign">Graphics</a> | |
12792 </div> | |
12793 | |
12794 <div class=title> | |
12795 <p class=hittitle>Chain A, Crystal Structure Of The Bacterial Ribosome Ram Mutation G347u. This Entry Contains The 50s Ribosomal Subunit Of The Second 70s Molecule In The Asymmetric Unit</p> | |
12796 <p class=titleinfo> | |
12797 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/482676744?report=genbank&log$=nuclalign">pdb|3V6X|A</a> | |
12798 <span class=b>Length:</span> 2916 | |
12799 <span class=b>Number of Matches:</span> 2 | |
12800 </p> | |
12801 </div> | |
12802 | |
12803 | |
12804 <div class=hotspot> | |
12805 <p class=range> | |
12806 <span class=range>Range 1: 2048 to 2055</span> | |
12807 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/482676744?report=genbank&log$=nuclalign&from=2048&to=2055">GenBank</a> | |
12808 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/482676744?report=graph&log$=nuclalign&from=2048&to=2055">Graphics</a> | |
12809 </p> | |
12810 | |
12811 <table class=hotspotstable> | |
12812 <tr> | |
12813 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
12814 </tr> | |
12815 <tr> | |
12816 <td>16.4 bits(8)</td> | |
12817 <td>47.0</td> | |
12818 <td>8/8(100%)</td> | |
12819 <td>0/8(0%)</td> | |
12820 <td>Plus/Plus</td> | |
12821 </tr> | |
12822 </table> | |
12823 | |
12824 <pre class=alignmentgraphic>Query 8 CGTGAAGA 15 | |
12825 |||||||| | |
12826 Subject 2048 CGTGAAGA 2055</pre> | |
12827 </div> | |
12828 <div class=hotspot> | |
12829 <p class=range> | |
12830 <span class=range>Range 2: 2603 to 2610</span> | |
12831 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/482676744?report=genbank&log$=nuclalign&from=2603&to=2610">GenBank</a> | |
12832 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/482676744?report=graph&log$=nuclalign&from=2603&to=2610">Graphics</a> | |
12833 </p> | |
12834 | |
12835 <table class=hotspotstable> | |
12836 <tr> | |
12837 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
12838 </tr> | |
12839 <tr> | |
12840 <td>16.4 bits(8)</td> | |
12841 <td>47.0</td> | |
12842 <td>8/8(100%)</td> | |
12843 <td>0/8(0%)</td> | |
12844 <td>Plus/Plus</td> | |
12845 </tr> | |
12846 </table> | |
12847 | |
12848 <pre class=alignmentgraphic>Query 5 CGTCGTGA 12 | |
12849 |||||||| | |
12850 Subject 2603 CGTCGTGA 2610</pre> | |
12851 </div> | |
12852 | |
12853 </div> | |
12854 | |
12855 <div class=alignment id=hit95> | |
12856 | |
12857 <div class=linkheader> | |
12858 <div class=right><a href="#description95">Descriptions</a></div> | |
12859 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/482676712?report=genbank&log$=nuclalign">GenBank</a> | |
12860 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/482676712?report=graph&log$=nuclalign">Graphics</a> | |
12861 </div> | |
12862 | |
12863 <div class=title> | |
12864 <p class=hittitle>Chain A, Crystal Structure Of The Bacterial Ribosome Ram Mutation G347u. This Entry Contains The 50s Ribosomal Subunit Of The First 70s Molecule In The Asymmetric Unit</p> | |
12865 <p class=titleinfo> | |
12866 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/482676712?report=genbank&log$=nuclalign">pdb|3V6W|A</a> | |
12867 <span class=b>Length:</span> 2916 | |
12868 <span class=b>Number of Matches:</span> 2 | |
12869 </p> | |
12870 </div> | |
12871 | |
12872 | |
12873 <div class=hotspot> | |
12874 <p class=range> | |
12875 <span class=range>Range 1: 2048 to 2055</span> | |
12876 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/482676712?report=genbank&log$=nuclalign&from=2048&to=2055">GenBank</a> | |
12877 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/482676712?report=graph&log$=nuclalign&from=2048&to=2055">Graphics</a> | |
12878 </p> | |
12879 | |
12880 <table class=hotspotstable> | |
12881 <tr> | |
12882 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
12883 </tr> | |
12884 <tr> | |
12885 <td>16.4 bits(8)</td> | |
12886 <td>47.0</td> | |
12887 <td>8/8(100%)</td> | |
12888 <td>0/8(0%)</td> | |
12889 <td>Plus/Plus</td> | |
12890 </tr> | |
12891 </table> | |
12892 | |
12893 <pre class=alignmentgraphic>Query 8 CGTGAAGA 15 | |
12894 |||||||| | |
12895 Subject 2048 CGTGAAGA 2055</pre> | |
12896 </div> | |
12897 <div class=hotspot> | |
12898 <p class=range> | |
12899 <span class=range>Range 2: 2603 to 2610</span> | |
12900 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/482676712?report=genbank&log$=nuclalign&from=2603&to=2610">GenBank</a> | |
12901 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/482676712?report=graph&log$=nuclalign&from=2603&to=2610">Graphics</a> | |
12902 </p> | |
12903 | |
12904 <table class=hotspotstable> | |
12905 <tr> | |
12906 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
12907 </tr> | |
12908 <tr> | |
12909 <td>16.4 bits(8)</td> | |
12910 <td>47.0</td> | |
12911 <td>8/8(100%)</td> | |
12912 <td>0/8(0%)</td> | |
12913 <td>Plus/Plus</td> | |
12914 </tr> | |
12915 </table> | |
12916 | |
12917 <pre class=alignmentgraphic>Query 5 CGTCGTGA 12 | |
12918 |||||||| | |
12919 Subject 2603 CGTCGTGA 2610</pre> | |
12920 </div> | |
12921 | |
12922 </div> | |
12923 | |
12924 <div class=alignment id=hit96> | |
12925 | |
12926 <div class=linkheader> | |
12927 <div class=right><a href="#description96">Descriptions</a></div> | |
12928 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/428697829?report=genbank&log$=nuclalign">GenBank</a> | |
12929 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/428697829?report=graph&log$=nuclalign">Graphics</a> | |
12930 </div> | |
12931 | |
12932 <div class=title> | |
12933 <p class=hittitle>Chain d, The Cryo-Em Structure Of A 3d Dna-Origami Object</p> | |
12934 <p class=titleinfo> | |
12935 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/428697829?report=genbank&log$=nuclalign">pdb|2YMI|DD</a> | |
12936 <span class=b>Length:</span> 56 | |
12937 <span class=b>Number of Matches:</span> 1 | |
12938 </p> | |
12939 </div> | |
12940 | |
12941 | |
12942 <div class=hotspot> | |
12943 <p class=range> | |
12944 <span class=range>Range 1: 52 to 45</span> | |
12945 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/428697829?report=genbank&log$=nuclalign&from=52&to=45">GenBank</a> | |
12946 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/428697829?report=graph&log$=nuclalign&from=52&to=45">Graphics</a> | |
12947 </p> | |
12948 | |
12949 <table class=hotspotstable> | |
12950 <tr> | |
12951 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
12952 </tr> | |
12953 <tr> | |
12954 <td>16.4 bits(8)</td> | |
12955 <td>47.0</td> | |
12956 <td>8/8(100%)</td> | |
12957 <td>0/8(0%)</td> | |
12958 <td>Plus/Minus</td> | |
12959 </tr> | |
12960 </table> | |
12961 | |
12962 <pre class=alignmentgraphic>Query 5 CGTCGTGA 12 | |
12963 |||||||| | |
12964 Subject 52 CGTCGTGA 45</pre> | |
12965 </div> | |
12966 | |
12967 </div> | |
12968 | |
12969 <div class=alignment id=hit97> | |
12970 | |
12971 <div class=linkheader> | |
12972 <div class=right><a href="#description97">Descriptions</a></div> | |
12973 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/428697789?report=genbank&log$=nuclalign">GenBank</a> | |
12974 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/428697789?report=graph&log$=nuclalign">Graphics</a> | |
12975 </div> | |
12976 | |
12977 <div class=title> | |
12978 <p class=hittitle>Chain A, The Cryo-Em Structure Of A 3d Dna-Origami Object</p> | |
12979 <p class=titleinfo> | |
12980 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/428697789?report=genbank&log$=nuclalign">pdb|2YMF|A</a> | |
12981 <span class=b>Length:</span> 4896 | |
12982 <span class=b>Number of Matches:</span> 2 | |
12983 </p> | |
12984 </div> | |
12985 | |
12986 | |
12987 <div class=hotspot> | |
12988 <p class=range> | |
12989 <span class=range>Range 1: 575 to 582</span> | |
12990 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/428697789?report=genbank&log$=nuclalign&from=575&to=582">GenBank</a> | |
12991 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/428697789?report=graph&log$=nuclalign&from=575&to=582">Graphics</a> | |
12992 </p> | |
12993 | |
12994 <table class=hotspotstable> | |
12995 <tr> | |
12996 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
12997 </tr> | |
12998 <tr> | |
12999 <td>16.4 bits(8)</td> | |
13000 <td>47.0</td> | |
13001 <td>8/8(100%)</td> | |
13002 <td>0/8(0%)</td> | |
13003 <td>Plus/Plus</td> | |
13004 </tr> | |
13005 </table> | |
13006 | |
13007 <pre class=alignmentgraphic>Query 5 CGTCGTGA 12 | |
13008 |||||||| | |
13009 Subject 575 CGTCGTGA 582</pre> | |
13010 </div> | |
13011 <div class=hotspot> | |
13012 <p class=range> | |
13013 <span class=range>Range 2: 561 to 567</span> | |
13014 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/428697789?report=genbank&log$=nuclalign&from=561&to=567">GenBank</a> | |
13015 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/428697789?report=graph&log$=nuclalign&from=561&to=567">Graphics</a> | |
13016 </p> | |
13017 | |
13018 <table class=hotspotstable> | |
13019 <tr> | |
13020 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
13021 </tr> | |
13022 <tr> | |
13023 <td>14.4 bits(7)</td> | |
13024 <td>185.8</td> | |
13025 <td>7/7(100%)</td> | |
13026 <td>0/7(0%)</td> | |
13027 <td>Plus/Plus</td> | |
13028 </tr> | |
13029 </table> | |
13030 | |
13031 <pre class=alignmentgraphic>Query 4 CCGTCGT 10 | |
13032 ||||||| | |
13033 Subject 561 CCGTCGT 567</pre> | |
13034 </div> | |
13035 | |
13036 </div> | |
13037 | |
13038 <div class=alignment id=hit98> | |
13039 | |
13040 <div class=linkheader> | |
13041 <div class=right><a href="#description98">Descriptions</a></div> | |
13042 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/396639330?report=genbank&log$=nuclalign">GenBank</a> | |
13043 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/396639330?report=graph&log$=nuclalign">Graphics</a> | |
13044 </div> | |
13045 | |
13046 <div class=title> | |
13047 <p class=hittitle>Chain A, Structure Of The Thermus Thermophilus 70s Ribosome Complexed With Mrna, Trna And Paromomycin (Part 2 Of 4). This File Contains The 50s Subunit From Molecule I. </p> | |
13048 <p class=titleinfo> | |
13049 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/396639330?report=genbank&log$=nuclalign">pdb|2J01|A</a> | |
13050 <span class=b>Length:</span> 2787 | |
13051 <span class=b>Number of Matches:</span> 2 | |
13052 </p> | |
13053 </div> | |
13054 | |
13055 <a class=showmoretitles onclick="toggle_visibility('moretitles98'); return false;" href=''> | |
13056 See 1 more title(s) | |
13057 </a> | |
13058 | |
13059 <div class=moretitles id=moretitles98 style="display: none"> | |
13060 <div class=title> | |
13061 <p class=hittitle>Chain A, Structure Of The Thermus Thermophilus 70s Ribosome Complexed With Mrna, Trna And Paromomycin (Part 4 Of 4). This File Contains The 50s Subunit From Molecule Ii.</p> | |
13062 <p class=titleinfo> | |
13063 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/396639355?report=genbank&log$=nuclalign">pdb|2J03|A</a> | |
13064 </p> | |
13065 </div> | |
13066 </div> | |
13067 | |
13068 <div class=hotspot> | |
13069 <p class=range> | |
13070 <span class=range>Range 1: 1948 to 1955</span> | |
13071 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/396639330?report=genbank&log$=nuclalign&from=1948&to=1955">GenBank</a> | |
13072 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/396639330?report=graph&log$=nuclalign&from=1948&to=1955">Graphics</a> | |
13073 </p> | |
13074 | |
13075 <table class=hotspotstable> | |
13076 <tr> | |
13077 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
13078 </tr> | |
13079 <tr> | |
13080 <td>16.4 bits(8)</td> | |
13081 <td>47.0</td> | |
13082 <td>8/8(100%)</td> | |
13083 <td>0/8(0%)</td> | |
13084 <td>Plus/Plus</td> | |
13085 </tr> | |
13086 </table> | |
13087 | |
13088 <pre class=alignmentgraphic>Query 8 CGTGAAGA 15 | |
13089 |||||||| | |
13090 Subject 1948 CGTGAAGA 1955</pre> | |
13091 </div> | |
13092 <div class=hotspot> | |
13093 <p class=range> | |
13094 <span class=range>Range 2: 2474 to 2481</span> | |
13095 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/396639330?report=genbank&log$=nuclalign&from=2474&to=2481">GenBank</a> | |
13096 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/396639330?report=graph&log$=nuclalign&from=2474&to=2481">Graphics</a> | |
13097 </p> | |
13098 | |
13099 <table class=hotspotstable> | |
13100 <tr> | |
13101 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
13102 </tr> | |
13103 <tr> | |
13104 <td>16.4 bits(8)</td> | |
13105 <td>47.0</td> | |
13106 <td>8/8(100%)</td> | |
13107 <td>0/8(0%)</td> | |
13108 <td>Plus/Plus</td> | |
13109 </tr> | |
13110 </table> | |
13111 | |
13112 <pre class=alignmentgraphic>Query 5 CGTCGTGA 12 | |
13113 |||||||| | |
13114 Subject 2474 CGTCGTGA 2481</pre> | |
13115 </div> | |
13116 | |
13117 </div> | |
13118 | |
13119 <div class=alignment id=hit99> | |
13120 | |
13121 <div class=linkheader> | |
13122 <div class=right><a href="#description99">Descriptions</a></div> | |
13123 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/393715375?report=genbank&log$=nuclalign">GenBank</a> | |
13124 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/393715375?report=graph&log$=nuclalign">Graphics</a> | |
13125 </div> | |
13126 | |
13127 <div class=title> | |
13128 <p class=hittitle>Chain C, Crystal Structure Of I-Crei Complexed With Its Target Methylated At Position Plus 2 (In The B Strand) In The Presence Of Magnesium</p> | |
13129 <p class=titleinfo> | |
13130 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/393715375?report=genbank&log$=nuclalign">pdb|4AQX|C</a> | |
13131 <span class=b>Length:</span> 14 | |
13132 <span class=b>Number of Matches:</span> 1 | |
13133 </p> | |
13134 </div> | |
13135 | |
13136 | |
13137 <div class=hotspot> | |
13138 <p class=range> | |
13139 <span class=range>Range 1: 7 to 14</span> | |
13140 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/393715375?report=genbank&log$=nuclalign&from=7&to=14">GenBank</a> | |
13141 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/393715375?report=graph&log$=nuclalign&from=7&to=14">Graphics</a> | |
13142 </p> | |
13143 | |
13144 <table class=hotspotstable> | |
13145 <tr> | |
13146 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
13147 </tr> | |
13148 <tr> | |
13149 <td>16.4 bits(8)</td> | |
13150 <td>47.0</td> | |
13151 <td>8/8(100%)</td> | |
13152 <td>0/8(0%)</td> | |
13153 <td>Plus/Plus</td> | |
13154 </tr> | |
13155 </table> | |
13156 | |
13157 <pre class=alignmentgraphic>Query 5 CGTCGTGA 12 | |
13158 |||||||| | |
13159 Subject 7 CGTCGTGA 14</pre> | |
13160 </div> | |
13161 | |
13162 </div> | |
13163 | |
13164 <div class=alignment id=hit100> | |
13165 | |
13166 <div class=linkheader> | |
13167 <div class=right><a href="#description100">Descriptions</a></div> | |
13168 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/393715371?report=genbank&log$=nuclalign">GenBank</a> | |
13169 <a class=linkheader href="http://www.ncbi.nlm.nih.gov/nucleotide/393715371?report=graph&log$=nuclalign">Graphics</a> | |
13170 </div> | |
13171 | |
13172 <div class=title> | |
13173 <p class=hittitle>Chain C, Crystal Structure Of I-Crei Complexed With Its Target Methylated At Position Plus 2 (In The B Strand) In The Presence Of Calcium</p> | |
13174 <p class=titleinfo> | |
13175 <span class=b>Sequence ID:</span> <a href="http://www.ncbi.nlm.nih.gov/nucleotide/393715371?report=genbank&log$=nuclalign">pdb|4AQU|C</a> | |
13176 <span class=b>Length:</span> 24 | |
13177 <span class=b>Number of Matches:</span> 1 | |
13178 </p> | |
13179 </div> | |
13180 | |
13181 | |
13182 <div class=hotspot> | |
13183 <p class=range> | |
13184 <span class=range>Range 1: 7 to 14</span> | |
13185 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/393715371?report=genbank&log$=nuclalign&from=7&to=14">GenBank</a> | |
13186 <a class=range href="http://www.ncbi.nlm.nih.gov/nucleotide/393715371?report=graph&log$=nuclalign&from=7&to=14">Graphics</a> | |
13187 </p> | |
13188 | |
13189 <table class=hotspotstable> | |
13190 <tr> | |
13191 <th>Score</th><th>Expect</th><th>Identities</th><th>Gaps</th><th>Strand</th> | |
13192 </tr> | |
13193 <tr> | |
13194 <td>16.4 bits(8)</td> | |
13195 <td>47.0</td> | |
13196 <td>8/8(100%)</td> | |
13197 <td>0/8(0%)</td> | |
13198 <td>Plus/Plus</td> | |
13199 </tr> | |
13200 </table> | |
13201 | |
13202 <pre class=alignmentgraphic>Query 5 CGTCGTGA 12 | |
13203 |||||||| | |
13204 Subject 7 CGTCGTGA 14</pre> | |
13205 </div> | |
13206 | |
13207 </div> | |
13208 | |
13209 </div></div> | |
13210 </section> | |
13211 </section> | |
13212 | |
13213 </div> | |
13214 | |
13215 <footer> | |
33
3bb5da68305e
add test update script, add url to github page
Jan Kanis <jan.code@jankanis.nl>
parents:
32
diff
changeset
|
13216 This page was generated by <a href="https://github.com/thehyve/blast2html/">blast2html</a>. |
32 | 13217 </footer> |
13218 </body> | |
13219 </html> | |
13220 |