Mercurial > repos > iuc > blastxml_to_gapped_gff3
changeset 2:561e827baa5f draft default tip
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/blastxml_to_gapped_gff3 commit 908f16ea4eb082227437dc93e06e8cb742f5a257
author | iuc |
---|---|
date | Wed, 15 Nov 2017 15:14:58 -0500 |
parents | 877cd0833221 |
children | |
files | blastxml_to_gapped_gff3.py blastxml_to_gapped_gff3.xml test-data/blast.gff |
diffstat | 3 files changed, 2004 insertions(+), 1995 deletions(-) [+] |
line wrap: on
line diff
--- a/blastxml_to_gapped_gff3.py Wed Feb 15 05:48:02 2017 -0500 +++ b/blastxml_to_gapped_gff3.py Wed Nov 15 15:14:58 2017 -0500 @@ -6,47 +6,58 @@ import sys from BCBio import GFF - logging.basicConfig(level=logging.INFO) log = logging.getLogger(name='blastxml2gff3') -__author__ = "Eric Rasche" -__version__ = "0.4.0" -__maintainer__ = "Eric Rasche" -__email__ = "esr@tamu.edu" - __doc__ = """ BlastXML files, when transformed to GFF3, do not normally show gaps in the blast hits. This tool aims to fill that "gap". """ -def blastxml2gff3(blastxml, min_gap=3, trim=False, trim_end=False): +def blastxml2gff3(blastxml, min_gap=3, trim=False, trim_end=False, include_seq=False): from Bio.Blast import NCBIXML from Bio.Seq import Seq from Bio.SeqRecord import SeqRecord from Bio.SeqFeature import SeqFeature, FeatureLocation blast_records = NCBIXML.parse(blastxml) - records = [] - for record in blast_records: + for idx_record, record in enumerate(blast_records): # http://www.sequenceontology.org/browser/release_2.4/term/SO:0000343 match_type = { # Currently we can only handle BLASTN, BLASTP 'BLASTN': 'nucleotide_match', 'BLASTP': 'protein_match', }.get(record.application, 'match') - rec = SeqRecord(Seq("ACTG"), id=record.query) - for hit in record.alignments: - for hsp in hit.hsps: + recid = record.query + if ' ' in recid: + recid = recid[0:recid.index(' ')] + + rec = SeqRecord(Seq("ACTG"), id=recid) + for idx_hit, hit in enumerate(record.alignments): + for idx_hsp, hsp in enumerate(hit.hsps): qualifiers = { + "ID": 'b2g.%s.%s.%s' % (idx_record, idx_hit, idx_hsp), "source": "blast", "score": hsp.expect, "accession": hit.accession, "hit_id": hit.hit_id, "length": hit.length, - "hit_titles": hit.title.split(' >') + "hit_titles": hit.title.split(' >'), } + if include_seq: + qualifiers.update({ + 'blast_qseq': hsp.query, + 'blast_sseq': hsp.sbjct, + 'blast_mseq': hsp.match, + }) + + for prop in ('score', 'bits', 'identities', 'positives', + 'gaps', 'align_length', 'strand', 'frame', + 'query_start', 'query_end', 'sbjct_start', + 'sbjct_end'): + qualifiers['blast_' + prop] = getattr(hsp, prop, None) + desc = hit.title.split(' >')[0] qualifiers['description'] = desc[desc.index(' '):] @@ -62,14 +73,11 @@ # protein. parent_match_end = hsp.query_start + hit.length + hsp.query.count('-') - # However, if the user requests that we trim the feature, then - # we need to cut the ``match`` start to 0 to match the parent feature. - # We'll also need to cut the end to match the query's end. It (maybe) - # should be the feature end? But we don't have access to that data, so - # We settle for this. + # If we trim the left end, we need to trim without losing information. + used_parent_match_start = parent_match_start if trim: if parent_match_start < 1: - parent_match_start = 0 + used_parent_match_start = 0 if trim or trim_end: if parent_match_end > hsp.query_end: @@ -77,7 +85,7 @@ # The ``match`` feature will hold one or more ``match_part``s top_feature = SeqFeature( - FeatureLocation(parent_match_start, parent_match_end), + FeatureLocation(used_parent_match_start, parent_match_end), type=match_type, strand=0, qualifiers=qualifiers ) @@ -87,19 +95,15 @@ "source": "blast", } top_feature.sub_features = [] - for start, end, cigar in generate_parts(hsp.query, hsp.match, - hsp.sbjct, - ignore_under=min_gap): + for idx_part, (start, end, cigar) in \ + enumerate(generate_parts(hsp.query, hsp.match, + hsp.sbjct, + ignore_under=min_gap)): part_qualifiers['Gap'] = cigar - part_qualifiers['ID'] = hit.hit_id + part_qualifiers['ID'] = qualifiers['ID'] + ('.%s' % idx_part) - if trim: - # If trimming, then we start relative to the - # match's start - match_part_start = parent_match_start + start - else: - # Otherwise, we have to account for the subject start's location - match_part_start = parent_match_start + hsp.sbjct_start + start - 1 + # Otherwise, we have to account for the subject start's location + match_part_start = parent_match_start + hsp.sbjct_start + start - 1 # We used to use hsp.align_length here, but that includes # gaps in the parent sequence @@ -117,8 +121,7 @@ rec.features.append(top_feature) rec.annotations = {} - records.append(rec) - return records + yield rec def __remove_query_gaps(query, match, subject): @@ -253,11 +256,13 @@ if __name__ == '__main__': parser = argparse.ArgumentParser(description='Convert Blast XML to gapped GFF3', epilog='') - parser.add_argument('blastxml', type=open, help='Blast XML Output') + parser.add_argument('blastxml', type=argparse.FileType("r"), help='Blast XML Output') parser.add_argument('--min_gap', type=int, help='Maximum gap size before generating a new match_part', default=3) parser.add_argument('--trim', action='store_true', help='Trim blast hits to be only as long as the parent feature') parser.add_argument('--trim_end', action='store_true', help='Cut blast results off at end of gene') + parser.add_argument('--include_seq', action='store_true', help='Include sequence') args = parser.parse_args() - result = blastxml2gff3(**vars(args)) - GFF.write(result, sys.stdout) + for rec in blastxml2gff3(**vars(args)): + if len(rec.features): + GFF.write([rec], sys.stdout)
--- a/blastxml_to_gapped_gff3.xml Wed Feb 15 05:48:02 2017 -0500 +++ b/blastxml_to_gapped_gff3.xml Wed Nov 15 15:14:58 2017 -0500 @@ -29,8 +29,8 @@ </outputs> <tests> <test> - <param name="blastxml" ftype="blastxml" value="input.xml"/> - <output name="output" file="blast.gff"/> + <param name="blastxml" ftype="blastxml" value="input.xml" /> + <output name="output" file="blast.gff" compare="sim_size" /> </test> </tests> <help><![CDATA[
--- a/test-data/blast.gff Wed Feb 15 05:48:02 2017 -0500 +++ b/test-data/blast.gff Wed Nov 15 15:14:58 2017 -0500 @@ -1,1963 +1,1967 @@ ##gff-version 3 ##sequence-region Merlin_1 1 4 -Merlin_1 blast protein_match -471 230 3.74548e-55 . . ID=biopygen1;accession=YP_007004572;description=hypothetical protein %5BEnterobacteria phage ime09%5D;hit_id=gi%7C422934611%7Cref%7CYP_007004572.1%7C;hit_titles=gi%7C422934611%7Cref%7CYP_007004572.1%7C hypothetical protein %5BEnterobacteria phage ime09%5D,gi%7C339791394%7Cgb%7CAEK12451.1%7C hypothetical protein %5BEnterobacteria phage ime09%5D;length=685 -Merlin_1 blast match_part 2 14 . . . Gap=M13;ID=gi%7C422934611%7Cref%7CYP_007004572.1%7C;Parent=biopygen1 -Merlin_1 blast match_part 18 55 . . . Gap=M38;ID=gi%7C422934611%7Cref%7CYP_007004572.1%7C;Parent=biopygen1 -Merlin_1 blast match_part 59 63 . . . Gap=M5;ID=gi%7C422934611%7Cref%7CYP_007004572.1%7C;Parent=biopygen1 -Merlin_1 blast match_part 73 82 . . . Gap=M10;ID=gi%7C422934611%7Cref%7CYP_007004572.1%7C;Parent=biopygen1 -Merlin_1 blast match_part 87 90 . . . Gap=M4;ID=gi%7C422934611%7Cref%7CYP_007004572.1%7C;Parent=biopygen1 -Merlin_1 blast match_part 103 207 . . . Gap=M72 I2 M26 I2 M3;ID=gi%7C422934611%7Cref%7CYP_007004572.1%7C;Parent=biopygen1 -Merlin_1 blast match_part 212 229 . . . Gap=M18;ID=gi%7C422934611%7Cref%7CYP_007004572.1%7C;Parent=biopygen1 -Merlin_1 blast protein_match -471 230 4.31042e-55 . . ID=biopygen2;accession=YP_004415089;description=hypothetical protein Shfl2p198 %5BShigella phage Shfl2%5D;hit_id=gi%7C330858714%7Cref%7CYP_004415089.1%7C;hit_titles=gi%7C330858714%7Cref%7CYP_004415089.1%7C hypothetical protein Shfl2p198 %5BShigella phage Shfl2%5D,gi%7C327397648%7Cgb%7CAEA73150.1%7C hypothetical protein Shfl2p198 %5BShigella phage Shfl2%5D;length=685 -Merlin_1 blast match_part 2 14 . . . Gap=M13;ID=gi%7C330858714%7Cref%7CYP_004415089.1%7C;Parent=biopygen2 -Merlin_1 blast match_part 18 55 . . . Gap=M38;ID=gi%7C330858714%7Cref%7CYP_004415089.1%7C;Parent=biopygen2 -Merlin_1 blast match_part 59 63 . . . Gap=M5;ID=gi%7C330858714%7Cref%7CYP_004415089.1%7C;Parent=biopygen2 -Merlin_1 blast match_part 73 82 . . . Gap=M10;ID=gi%7C330858714%7Cref%7CYP_004415089.1%7C;Parent=biopygen2 -Merlin_1 blast match_part 87 90 . . . Gap=M4;ID=gi%7C330858714%7Cref%7CYP_004415089.1%7C;Parent=biopygen2 -Merlin_1 blast match_part 103 207 . . . Gap=M72 I2 M26 I2 M3;ID=gi%7C330858714%7Cref%7CYP_004415089.1%7C;Parent=biopygen2 -Merlin_1 blast match_part 212 229 . . . Gap=M18;ID=gi%7C330858714%7Cref%7CYP_004415089.1%7C;Parent=biopygen2 -Merlin_1 blast protein_match -471 230 4.35388e-55 . . ID=biopygen3;accession=YP_002854530;description=alt.-2 hypothetical protein %5BEnterobacteria phage RB14%5D;hit_id=gi%7C228861509%7Cref%7CYP_002854530.1%7C;hit_titles=gi%7C228861509%7Cref%7CYP_002854530.1%7C alt.-2 hypothetical protein %5BEnterobacteria phage RB14%5D,gi%7C227438525%7Cgb%7CACP30838.1%7C alt.-2 hypothetical protein %5BEnterobacteria phage RB14%5D;length=685 -Merlin_1 blast match_part 2 14 . . . Gap=M13;ID=gi%7C228861509%7Cref%7CYP_002854530.1%7C;Parent=biopygen3 -Merlin_1 blast match_part 18 55 . . . Gap=M38;ID=gi%7C228861509%7Cref%7CYP_002854530.1%7C;Parent=biopygen3 -Merlin_1 blast match_part 59 63 . . . Gap=M5;ID=gi%7C228861509%7Cref%7CYP_002854530.1%7C;Parent=biopygen3 -Merlin_1 blast match_part 73 82 . . . Gap=M10;ID=gi%7C228861509%7Cref%7CYP_002854530.1%7C;Parent=biopygen3 -Merlin_1 blast match_part 96 99 . . . Gap=M4;ID=gi%7C228861509%7Cref%7CYP_002854530.1%7C;Parent=biopygen3 -Merlin_1 blast match_part 103 148 . . . Gap=M46;ID=gi%7C228861509%7Cref%7CYP_002854530.1%7C;Parent=biopygen3 -Merlin_1 blast match_part 152 207 . . . Gap=M23 I2 M26 I2 M3;ID=gi%7C228861509%7Cref%7CYP_002854530.1%7C;Parent=biopygen3 -Merlin_1 blast match_part 212 229 . . . Gap=M18;ID=gi%7C228861509%7Cref%7CYP_002854530.1%7C;Parent=biopygen3 +Merlin_1 blast protein_match -471 689 3.74548e-55 . . ID=b2g.0.0.0;accession=YP_007004572;blast_align_length=230;blast_bits=197.593;blast_frame=0;blast_gaps=21;blast_identities=106;blast_positives=154;blast_query_end=229;blast_query_start=2;blast_sbjct_end=684;blast_sbjct_start=474;blast_score=501.0;blast_strand=None;description=hypothetical protein %5BEnterobacteria phage ime09%5D;hit_id=gi%7C422934611%7Cref%7CYP_007004572.1%7C;hit_titles=gi%7C422934611%7Cref%7CYP_007004572.1%7C hypothetical protein %5BEnterobacteria phage ime09%5D,gi%7C339791394%7Cgb%7CAEK12451.1%7C hypothetical protein %5BEnterobacteria phage ime09%5D;length=685 +Merlin_1 blast match_part 2 14 . . . Gap=M13;ID=b2g.0.0.0.0;Parent=b2g.0.0.0 +Merlin_1 blast match_part 18 55 . . . Gap=M38;ID=b2g.0.0.0.1;Parent=b2g.0.0.0 +Merlin_1 blast match_part 59 63 . . . Gap=M5;ID=b2g.0.0.0.2;Parent=b2g.0.0.0 +Merlin_1 blast match_part 73 82 . . . Gap=M10;ID=b2g.0.0.0.3;Parent=b2g.0.0.0 +Merlin_1 blast match_part 87 90 . . . Gap=M4;ID=b2g.0.0.0.4;Parent=b2g.0.0.0 +Merlin_1 blast match_part 103 207 . . . Gap=M72 I2 M26 I2 M3;ID=b2g.0.0.0.5;Parent=b2g.0.0.0 +Merlin_1 blast match_part 212 229 . . . Gap=M18;ID=b2g.0.0.0.6;Parent=b2g.0.0.0 +Merlin_1 blast protein_match -471 689 4.31042e-55 . . ID=b2g.0.1.0;accession=YP_004415089;blast_align_length=230;blast_bits=197.593;blast_frame=0;blast_gaps=21;blast_identities=106;blast_positives=154;blast_query_end=229;blast_query_start=2;blast_sbjct_end=684;blast_sbjct_start=474;blast_score=501.0;blast_strand=None;description=hypothetical protein Shfl2p198 %5BShigella phage Shfl2%5D;hit_id=gi%7C330858714%7Cref%7CYP_004415089.1%7C;hit_titles=gi%7C330858714%7Cref%7CYP_004415089.1%7C hypothetical protein Shfl2p198 %5BShigella phage Shfl2%5D,gi%7C327397648%7Cgb%7CAEA73150.1%7C hypothetical protein Shfl2p198 %5BShigella phage Shfl2%5D;length=685 +Merlin_1 blast match_part 2 14 . . . Gap=M13;ID=b2g.0.1.0.0;Parent=b2g.0.1.0 +Merlin_1 blast match_part 18 55 . . . Gap=M38;ID=b2g.0.1.0.1;Parent=b2g.0.1.0 +Merlin_1 blast match_part 59 63 . . . Gap=M5;ID=b2g.0.1.0.2;Parent=b2g.0.1.0 +Merlin_1 blast match_part 73 82 . . . Gap=M10;ID=b2g.0.1.0.3;Parent=b2g.0.1.0 +Merlin_1 blast match_part 87 90 . . . Gap=M4;ID=b2g.0.1.0.4;Parent=b2g.0.1.0 +Merlin_1 blast match_part 103 207 . . . Gap=M72 I2 M26 I2 M3;ID=b2g.0.1.0.5;Parent=b2g.0.1.0 +Merlin_1 blast match_part 212 229 . . . Gap=M18;ID=b2g.0.1.0.6;Parent=b2g.0.1.0 +Merlin_1 blast protein_match -471 689 4.35388e-55 . . ID=b2g.0.2.0;accession=YP_002854530;blast_align_length=230;blast_bits=197.593;blast_frame=0;blast_gaps=21;blast_identities=108;blast_positives=152;blast_query_end=229;blast_query_start=2;blast_sbjct_end=684;blast_sbjct_start=474;blast_score=501.0;blast_strand=None;description=alt.-2 hypothetical protein %5BEnterobacteria phage RB14%5D;hit_id=gi%7C228861509%7Cref%7CYP_002854530.1%7C;hit_titles=gi%7C228861509%7Cref%7CYP_002854530.1%7C alt.-2 hypothetical protein %5BEnterobacteria phage RB14%5D,gi%7C227438525%7Cgb%7CACP30838.1%7C alt.-2 hypothetical protein %5BEnterobacteria phage RB14%5D;length=685 +Merlin_1 blast match_part 2 14 . . . Gap=M13;ID=b2g.0.2.0.0;Parent=b2g.0.2.0 +Merlin_1 blast match_part 18 55 . . . Gap=M38;ID=b2g.0.2.0.1;Parent=b2g.0.2.0 +Merlin_1 blast match_part 59 63 . . . Gap=M5;ID=b2g.0.2.0.2;Parent=b2g.0.2.0 +Merlin_1 blast match_part 73 82 . . . Gap=M10;ID=b2g.0.2.0.3;Parent=b2g.0.2.0 +Merlin_1 blast match_part 96 99 . . . Gap=M4;ID=b2g.0.2.0.4;Parent=b2g.0.2.0 +Merlin_1 blast match_part 103 148 . . . Gap=M46;ID=b2g.0.2.0.5;Parent=b2g.0.2.0 +Merlin_1 blast match_part 152 207 . . . Gap=M23 I2 M26 I2 M3;ID=b2g.0.2.0.6;Parent=b2g.0.2.0 +Merlin_1 blast match_part 212 229 . . . Gap=M18;ID=b2g.0.2.0.7;Parent=b2g.0.2.0 +##gff-version 3 ##sequence-region Merlin_2 1 4 -Merlin_2 blast protein_match -10 96 9.23754e-17 . . ID=biopygen4;accession=YP_003934833;description=hypothetical protein SP18_gp210 %5BShigella phage SP18%5D;hit_id=gi%7C308814559%7Cref%7CYP_003934833.1%7C;hit_titles=gi%7C308814559%7Cref%7CYP_003934833.1%7C hypothetical protein SP18_gp210 %5BShigella phage SP18%5D,gi%7C308206151%7Cgb%7CADO19550.1%7C hypothetical protein SP18gp210 %5BShigella phage SP18%5D;length=107 -Merlin_2 blast match_part 1 40 . . . Gap=M40;ID=gi%7C308814559%7Cref%7CYP_003934833.1%7C;Parent=biopygen4 -Merlin_2 blast match_part 45 49 . . . Gap=M5;ID=gi%7C308814559%7Cref%7CYP_003934833.1%7C;Parent=biopygen4 -Merlin_2 blast match_part 53 56 . . . Gap=M4;ID=gi%7C308814559%7Cref%7CYP_003934833.1%7C;Parent=biopygen4 -Merlin_2 blast match_part 62 75 . . . Gap=M14;ID=gi%7C308814559%7Cref%7CYP_003934833.1%7C;Parent=biopygen4 -Merlin_2 blast match_part 82 86 . . . Gap=M5;ID=gi%7C308814559%7Cref%7CYP_003934833.1%7C;Parent=biopygen4 -Merlin_2 blast match_part 90 95 . . . Gap=M6;ID=gi%7C308814559%7Cref%7CYP_003934833.1%7C;Parent=biopygen4 -Merlin_2 blast protein_match -9 95 2.9568e-16 . . ID=biopygen5;accession=YP_007501230;description=hypothetical protein %5BSalmonella phage S16%5D;hit_id=gi%7C456351278%7Cref%7CYP_007501230.1%7C;hit_titles=gi%7C456351278%7Cref%7CYP_007501230.1%7C hypothetical protein %5BSalmonella phage S16%5D,gi%7C448913695%7Cgb%7CAGE48199.1%7C hypothetical protein %5BSalmonella phage S16%5D;length=106 -Merlin_2 blast match_part 1 7 . . . Gap=M7;ID=gi%7C456351278%7Cref%7CYP_007501230.1%7C;Parent=biopygen5 -Merlin_2 blast match_part 11 70 . . . Gap=M60;ID=gi%7C456351278%7Cref%7CYP_007501230.1%7C;Parent=biopygen5 -Merlin_2 blast match_part 74 94 . . . Gap=M21;ID=gi%7C456351278%7Cref%7CYP_007501230.1%7C;Parent=biopygen5 -Merlin_2 blast protein_match 1 95 5.19436e-16 . . ID=biopygen6;accession=AFU64136;description=hypothetical protein %5BSalmonella phage STML-198%5D;hit_id=gi%7C408387127%7Cgb%7CAFU64136.1%7C;hit_titles=gi%7C408387127%7Cgb%7CAFU64136.1%7C hypothetical protein %5BSalmonella phage STML-198%5D;length=96 -Merlin_2 blast match_part 1 7 . . . Gap=M7;ID=gi%7C408387127%7Cgb%7CAFU64136.1%7C;Parent=biopygen6 -Merlin_2 blast match_part 11 70 . . . Gap=M60;ID=gi%7C408387127%7Cgb%7CAFU64136.1%7C;Parent=biopygen6 -Merlin_2 blast match_part 74 94 . . . Gap=M21;ID=gi%7C408387127%7Cgb%7CAFU64136.1%7C;Parent=biopygen6 -Merlin_2 blast protein_match 1 96 7.7684e-16 . . ID=biopygen7;accession=YP_004063893;description=Alt.-3 conserved hypothetical protein %5BEnterobacteria phage vB_EcoM-VR7%5D;hit_id=gi%7C314121774%7Cref%7CYP_004063893.1%7C;hit_titles=gi%7C314121774%7Cref%7CYP_004063893.1%7C Alt.-3 conserved hypothetical protein %5BEnterobacteria phage vB_EcoM-VR7%5D,gi%7C313151531%7Cgb%7CADR32587.1%7C Alt.-3 conserved hypothetical protein %5BEnterobacteria phage vB_EcoM-VR7%5D;length=96 -Merlin_2 blast match_part 1 40 . . . Gap=M40;ID=gi%7C314121774%7Cref%7CYP_004063893.1%7C;Parent=biopygen7 -Merlin_2 blast match_part 45 49 . . . Gap=M5;ID=gi%7C314121774%7Cref%7CYP_004063893.1%7C;Parent=biopygen7 -Merlin_2 blast match_part 53 56 . . . Gap=M4;ID=gi%7C314121774%7Cref%7CYP_004063893.1%7C;Parent=biopygen7 -Merlin_2 blast match_part 62 75 . . . Gap=M14;ID=gi%7C314121774%7Cref%7CYP_004063893.1%7C;Parent=biopygen7 -Merlin_2 blast match_part 82 95 . . . Gap=M14;ID=gi%7C314121774%7Cref%7CYP_004063893.1%7C;Parent=biopygen7 -Merlin_2 blast protein_match 1 96 2.41009e-15 . . ID=biopygen8;accession=YP_001595321;description=Alt.-3 conserved hypothetical protein %5BEnterobacteria phage JS98%5D;hit_id=gi%7C161622625%7Cref%7CYP_001595321.1%7C;hit_titles=gi%7C161622625%7Cref%7CYP_001595321.1%7C Alt.-3 conserved hypothetical protein %5BEnterobacteria phage JS98%5D,gi%7C52139951%7Cgb%7CAAU29321.1%7C Alt.-3 conserved hypothetical protein %5BEnterobacteria phage JS98%5D;length=96 -Merlin_2 blast match_part 1 40 . . . Gap=M40;ID=gi%7C161622625%7Cref%7CYP_001595321.1%7C;Parent=biopygen8 -Merlin_2 blast match_part 45 49 . . . Gap=M5;ID=gi%7C161622625%7Cref%7CYP_001595321.1%7C;Parent=biopygen8 -Merlin_2 blast match_part 53 56 . . . Gap=M4;ID=gi%7C161622625%7Cref%7CYP_001595321.1%7C;Parent=biopygen8 -Merlin_2 blast match_part 62 75 . . . Gap=M14;ID=gi%7C161622625%7Cref%7CYP_001595321.1%7C;Parent=biopygen8 -Merlin_2 blast match_part 82 86 . . . Gap=M5;ID=gi%7C161622625%7Cref%7CYP_001595321.1%7C;Parent=biopygen8 -Merlin_2 blast match_part 90 95 . . . Gap=M6;ID=gi%7C161622625%7Cref%7CYP_001595321.1%7C;Parent=biopygen8 -Merlin_2 blast protein_match 1 96 3.63965e-15 . . ID=biopygen9;accession=YP_007004249;description=conserved hypothetical protein %5BEnterobacteria phage Bp7%5D;hit_id=gi%7C422934213%7Cref%7CYP_007004249.1%7C;hit_titles=gi%7C422934213%7Cref%7CYP_007004249.1%7C conserved hypothetical protein %5BEnterobacteria phage Bp7%5D,gi%7C345450722%7Cgb%7CAEN93925.1%7C conserved hypothetical protein %5BEnterobacteria phage Bp7%5D;length=96 -Merlin_2 blast match_part 1 40 . . . Gap=M40;ID=gi%7C422934213%7Cref%7CYP_007004249.1%7C;Parent=biopygen9 -Merlin_2 blast match_part 45 49 . . . Gap=M5;ID=gi%7C422934213%7Cref%7CYP_007004249.1%7C;Parent=biopygen9 -Merlin_2 blast match_part 53 56 . . . Gap=M4;ID=gi%7C422934213%7Cref%7CYP_007004249.1%7C;Parent=biopygen9 -Merlin_2 blast match_part 62 75 . . . Gap=M14;ID=gi%7C422934213%7Cref%7CYP_007004249.1%7C;Parent=biopygen9 -Merlin_2 blast match_part 82 86 . . . Gap=M5;ID=gi%7C422934213%7Cref%7CYP_007004249.1%7C;Parent=biopygen9 -Merlin_2 blast match_part 90 95 . . . Gap=M6;ID=gi%7C422934213%7Cref%7CYP_007004249.1%7C;Parent=biopygen9 -Merlin_2 blast protein_match 1 96 4.31e-15 . . ID=biopygen10;accession=YP_002922541;description=Alt.-3 conserved hypothetical protein %5BEnterobacteria phage JS10%5D;hit_id=gi%7C238695348%7Cref%7CYP_002922541.1%7C;hit_titles=gi%7C238695348%7Cref%7CYP_002922541.1%7C Alt.-3 conserved hypothetical protein %5BEnterobacteria phage JS10%5D,gi%7C220029484%7Cgb%7CACL78418.1%7C Alt.-3 conserved hypothetical protein %5BEnterobacteria phage JS10%5D;length=96 -Merlin_2 blast match_part 1 40 . . . Gap=M40;ID=gi%7C238695348%7Cref%7CYP_002922541.1%7C;Parent=biopygen10 -Merlin_2 blast match_part 45 49 . . . Gap=M5;ID=gi%7C238695348%7Cref%7CYP_002922541.1%7C;Parent=biopygen10 -Merlin_2 blast match_part 53 56 . . . Gap=M4;ID=gi%7C238695348%7Cref%7CYP_002922541.1%7C;Parent=biopygen10 -Merlin_2 blast match_part 62 75 . . . Gap=M14;ID=gi%7C238695348%7Cref%7CYP_002922541.1%7C;Parent=biopygen10 -Merlin_2 blast match_part 82 86 . . . Gap=M5;ID=gi%7C238695348%7Cref%7CYP_002922541.1%7C;Parent=biopygen10 -Merlin_2 blast match_part 90 95 . . . Gap=M6;ID=gi%7C238695348%7Cref%7CYP_002922541.1%7C;Parent=biopygen10 -Merlin_2 blast protein_match -9 96 6.30983e-15 . . ID=biopygen11;accession=YP_003734337;description=alt.-3 gene product %5BEnterobacteria phage IME08%5D;hit_id=gi%7C299779143%7Cref%7CYP_003734337.1%7C;hit_titles=gi%7C299779143%7Cref%7CYP_003734337.1%7C alt.-3 gene product %5BEnterobacteria phage IME08%5D,gi%7C298105872%7Cgb%7CADI55516.1%7C hypothetical protein %5BEnterobacteria phage IME08%5D;length=106 -Merlin_2 blast match_part 1 40 . . . Gap=M40;ID=gi%7C299779143%7Cref%7CYP_003734337.1%7C;Parent=biopygen11 -Merlin_2 blast match_part 45 49 . . . Gap=M5;ID=gi%7C299779143%7Cref%7CYP_003734337.1%7C;Parent=biopygen11 -Merlin_2 blast match_part 53 56 . . . Gap=M4;ID=gi%7C299779143%7Cref%7CYP_003734337.1%7C;Parent=biopygen11 -Merlin_2 blast match_part 62 75 . . . Gap=M14;ID=gi%7C299779143%7Cref%7CYP_003734337.1%7C;Parent=biopygen11 -Merlin_2 blast match_part 82 86 . . . Gap=M5;ID=gi%7C299779143%7Cref%7CYP_003734337.1%7C;Parent=biopygen11 -Merlin_2 blast match_part 90 95 . . . Gap=M6;ID=gi%7C299779143%7Cref%7CYP_003734337.1%7C;Parent=biopygen11 -Merlin_2 blast protein_match 1 96 1.13441e-12 . . ID=biopygen12;accession=YP_004010056;description=hypothetical protein CC31p198 %5BEnterobacteria phage CC31%5D;hit_id=gi%7C311993190%7Cref%7CYP_004010056.1%7C;hit_titles=gi%7C311993190%7Cref%7CYP_004010056.1%7C hypothetical protein CC31p198 %5BEnterobacteria phage CC31%5D,gi%7C284178028%7Cgb%7CADB81694.1%7C conserved hypothetical protein %5BEnterobacteria phage CC31%5D;length=96 -Merlin_2 blast match_part 1 35 . . . Gap=M35;ID=gi%7C311993190%7Cref%7CYP_004010056.1%7C;Parent=biopygen12 -Merlin_2 blast match_part 41 59 . . . Gap=M19;ID=gi%7C311993190%7Cref%7CYP_004010056.1%7C;Parent=biopygen12 -Merlin_2 blast match_part 63 85 . . . Gap=M23;ID=gi%7C311993190%7Cref%7CYP_004010056.1%7C;Parent=biopygen12 -Merlin_2 blast match_part 89 95 . . . Gap=M7;ID=gi%7C311993190%7Cref%7CYP_004010056.1%7C;Parent=biopygen12 -Merlin_2 blast protein_match 1 96 1.18288e-12 . . ID=biopygen13;accession=YP_009005477;description=hypothetical protein PG7_213 %5BEnterobacter phage PG7%5D;hit_id=gi%7C589889941%7Cref%7CYP_009005477.1%7C;hit_titles=gi%7C589889941%7Cref%7CYP_009005477.1%7C hypothetical protein PG7_213 %5BEnterobacter phage PG7%5D,gi%7C583927854%7Cgb%7CAHI61116.1%7C hypothetical protein PG7_213 %5BEnterobacter phage PG7%5D;length=96 -Merlin_2 blast match_part 1 35 . . . Gap=M35;ID=gi%7C589889941%7Cref%7CYP_009005477.1%7C;Parent=biopygen13 -Merlin_2 blast match_part 41 59 . . . Gap=M19;ID=gi%7C589889941%7Cref%7CYP_009005477.1%7C;Parent=biopygen13 -Merlin_2 blast match_part 63 85 . . . Gap=M23;ID=gi%7C589889941%7Cref%7CYP_009005477.1%7C;Parent=biopygen13 -Merlin_2 blast match_part 89 95 . . . Gap=M7;ID=gi%7C589889941%7Cref%7CYP_009005477.1%7C;Parent=biopygen13 -Merlin_2 blast protein_match 1 96 9.33346e-12 . . ID=biopygen14;accession=NP_049808;description=Alt.-3 conserved hypothetical protein %5BEnterobacteria phage T4%5D;hit_id=gi%7C9632705%7Cref%7CNP_049808.1%7C;hit_titles=gi%7C9632705%7Cref%7CNP_049808.1%7C Alt.-3 conserved hypothetical protein %5BEnterobacteria phage T4%5D,gi%7C116326415%7Cref%7CYP_803135.1%7C hypothetical protein RB32ORF193c %5BEnterobacteria phage RB32%5D,gi%7C228861508%7Cref%7CYP_002854529.1%7C alt.-3 hypothetical protein %5BEnterobacteria phage RB14%5D,gi%7C330858713%7Cref%7CYP_004415088.1%7C hypothetical protein Shfl2p197 %5BShigella phage Shfl2%5D,gi%7C731233%7Csp%7CP39493.1%7CY12A_BPT4 RecName: Full%3DUncharacterized 10.7 kDa protein in Gp54-alt intergenic region %5BEnterobacteria phage T4%5D,gi%7C5354329%7Cgb%7CAAD42536.1%7CAF158101_123 Alt.-3 conserved hypothetical protein %5BEnterobacteria phage T4%5D,gi%7C984519%7Cgb%7CAAA75320.1%7C alt.-3 %5BEnterobacteria phage T4%5D,gi%7C115344008%7Cgb%7CABI95017.1%7C hypothetical protein RB32ORF193c %5BEnterobacteria phage RB32%5D,gi%7C227438524%7Cgb%7CACP30837.1%7C alt.-3 hypothetical protein %5BEnterobacteria phage RB14%5D,gi%7C299780556%7Cgb%7CADJ39918.1%7C hypothetical protein T4Tp201 %5BEnterobacteria phage T4T%5D,gi%7C327397647%7Cgb%7CAEA73149.1%7C hypothetical protein Shfl2p197 %5BShigella phage Shfl2%5D,gi%7C397134212%7Cgb%7CAFO10719.1%7C hypothetical protein ECML134_193 %5BEscherichia phage ECML-134%5D,gi%7C628971904%7Cgb%7CAHY83625.1%7C hypothetical protein T4wild_197 %5BEnterobacteria phage T4%5D,gi%7C628972094%7Cgb%7CAHY83814.1%7C hypothetical protein T4147_197 %5BEnterobacteria phage T4%5D,gi%7C628972289%7Cgb%7CAHY84008.1%7C hypothetical protein T4GT7_197 %5BEnterobacteria phage T4%5D;length=96 -Merlin_2 blast match_part 1 19 . . . Gap=M19;ID=gi%7C9632705%7Cref%7CNP_049808.1%7C;Parent=biopygen14 -Merlin_2 blast match_part 24 40 . . . Gap=M17;ID=gi%7C9632705%7Cref%7CNP_049808.1%7C;Parent=biopygen14 -Merlin_2 blast match_part 45 45 . . . Gap=M1;ID=gi%7C9632705%7Cref%7CNP_049808.1%7C;Parent=biopygen14 -Merlin_2 blast match_part 49 49 . . . Gap=M1;ID=gi%7C9632705%7Cref%7CNP_049808.1%7C;Parent=biopygen14 -Merlin_2 blast match_part 53 76 . . . Gap=M24;ID=gi%7C9632705%7Cref%7CNP_049808.1%7C;Parent=biopygen14 -Merlin_2 blast match_part 81 95 . . . Gap=M15;ID=gi%7C9632705%7Cref%7CNP_049808.1%7C;Parent=biopygen14 -Merlin_2 blast protein_match 1 96 9.52974e-12 . . ID=biopygen15;accession=YP_006986750;description=hypothetical protein ACG-C40_0194 %5BEnterobacteria phage vB_EcoM_ACG-C40%5D;hit_id=gi%7C414086561%7Cref%7CYP_006986750.1%7C;hit_titles=gi%7C414086561%7Cref%7CYP_006986750.1%7C hypothetical protein ACG-C40_0194 %5BEnterobacteria phage vB_EcoM_ACG-C40%5D,gi%7C639438845%7Cref%7CYP_009030802.1%7C hypothetical protein %5BEscherichia phage e11/2%5D,gi%7C383396342%7Cgb%7CAFH20158.1%7C hypothetical protein ACG-C40_0194 %5BEnterobacteria phage vB_EcoM_ACG-C40%5D,gi%7C398313743%7Cemb%7CCCI89090.1%7C protein of unknown function %5BYersinia phage phiD1%5D,gi%7C525334461%7Cgb%7CAGR46143.1%7C hypothetical protein %5BYersinia phage PST%5D,gi%7C628971673%7Cgb%7CAHY83395.1%7C hypothetical protein %5BEscherichia phage e11/2%5D;length=96 -Merlin_2 blast match_part 1 19 . . . Gap=M19;ID=gi%7C414086561%7Cref%7CYP_006986750.1%7C;Parent=biopygen15 -Merlin_2 blast match_part 24 40 . . . Gap=M17;ID=gi%7C414086561%7Cref%7CYP_006986750.1%7C;Parent=biopygen15 -Merlin_2 blast match_part 45 45 . . . Gap=M1;ID=gi%7C414086561%7Cref%7CYP_006986750.1%7C;Parent=biopygen15 -Merlin_2 blast match_part 49 49 . . . Gap=M1;ID=gi%7C414086561%7Cref%7CYP_006986750.1%7C;Parent=biopygen15 -Merlin_2 blast match_part 53 76 . . . Gap=M24;ID=gi%7C414086561%7Cref%7CYP_006986750.1%7C;Parent=biopygen15 -Merlin_2 blast match_part 81 95 . . . Gap=M15;ID=gi%7C414086561%7Cref%7CYP_006986750.1%7C;Parent=biopygen15 -Merlin_2 blast protein_match 1 96 3.48235e-11 . . ID=biopygen16;accession=YP_006907288;description=hypothetical protein HX01_0247 %5BEnterobacteria phage HX01%5D;hit_id=gi%7C410492102%7Cref%7CYP_006907288.1%7C;hit_titles=gi%7C410492102%7Cref%7CYP_006907288.1%7C hypothetical protein HX01_0247 %5BEnterobacteria phage HX01%5D,gi%7C407437691%7Cgb%7CAFU20451.1%7C hypothetical protein HX01_0247 %5BEnterobacteria phage HX01%5D;length=97 -Merlin_2 blast match_part 1 19 . . . Gap=M19;ID=gi%7C410492102%7Cref%7CYP_006907288.1%7C;Parent=biopygen16 -Merlin_2 blast match_part 24 37 . . . Gap=M14;ID=gi%7C410492102%7Cref%7CYP_006907288.1%7C;Parent=biopygen16 -Merlin_2 blast match_part 41 41 . . . Gap=M1;ID=gi%7C410492102%7Cref%7CYP_006907288.1%7C;Parent=biopygen16 -Merlin_2 blast match_part 45 49 . . . Gap=M5;ID=gi%7C410492102%7Cref%7CYP_006907288.1%7C;Parent=biopygen16 -Merlin_2 blast match_part 53 56 . . . Gap=M4;ID=gi%7C410492102%7Cref%7CYP_006907288.1%7C;Parent=biopygen16 -Merlin_2 blast match_part 62 75 . . . Gap=M14;ID=gi%7C410492102%7Cref%7CYP_006907288.1%7C;Parent=biopygen16 -Merlin_2 blast match_part 81 82 . . . Gap=M2;ID=gi%7C410492102%7Cref%7CYP_006907288.1%7C;Parent=biopygen16 -Merlin_2 blast match_part 88 95 . . . Gap=M8;ID=gi%7C410492102%7Cref%7CYP_006907288.1%7C;Parent=biopygen16 -Merlin_2 blast protein_match 1 96 3.60146e-11 . . ID=biopygen17;accession=YP_007004571;description=conserved hypothetical protein %5BEnterobacteria phage ime09%5D;hit_id=gi%7C422934610%7Cref%7CYP_007004571.1%7C;hit_titles=gi%7C422934610%7Cref%7CYP_007004571.1%7C conserved hypothetical protein %5BEnterobacteria phage ime09%5D,gi%7C339791393%7Cgb%7CAEK12450.1%7C conserved hypothetical protein %5BEnterobacteria phage ime09%5D;length=96 -Merlin_2 blast match_part 1 19 . . . Gap=M19;ID=gi%7C422934610%7Cref%7CYP_007004571.1%7C;Parent=biopygen17 -Merlin_2 blast match_part 24 40 . . . Gap=M17;ID=gi%7C422934610%7Cref%7CYP_007004571.1%7C;Parent=biopygen17 -Merlin_2 blast match_part 45 45 . . . Gap=M1;ID=gi%7C422934610%7Cref%7CYP_007004571.1%7C;Parent=biopygen17 -Merlin_2 blast match_part 49 49 . . . Gap=M1;ID=gi%7C422934610%7Cref%7CYP_007004571.1%7C;Parent=biopygen17 -Merlin_2 blast match_part 53 76 . . . Gap=M24;ID=gi%7C422934610%7Cref%7CYP_007004571.1%7C;Parent=biopygen17 -Merlin_2 blast match_part 81 95 . . . Gap=M15;ID=gi%7C422934610%7Cref%7CYP_007004571.1%7C;Parent=biopygen17 -Merlin_2 blast protein_match 1 96 1.00057e-10 . . ID=biopygen18;accession=AHV82898;description=hypothetical protein PhAPEC2_189 %5BEscherichia phage vB_EcoM_PhAPEC2%5D;hit_id=gi%7C604671904%7Cgb%7CAHV82898.1%7C;hit_titles=gi%7C604671904%7Cgb%7CAHV82898.1%7C hypothetical protein PhAPEC2_189 %5BEscherichia phage vB_EcoM_PhAPEC2%5D;length=97 -Merlin_2 blast match_part 1 19 . . . Gap=M19;ID=gi%7C604671904%7Cgb%7CAHV82898.1%7C;Parent=biopygen18 -Merlin_2 blast match_part 24 37 . . . Gap=M14;ID=gi%7C604671904%7Cgb%7CAHV82898.1%7C;Parent=biopygen18 -Merlin_2 blast match_part 41 41 . . . Gap=M1;ID=gi%7C604671904%7Cgb%7CAHV82898.1%7C;Parent=biopygen18 -Merlin_2 blast match_part 45 49 . . . Gap=M5;ID=gi%7C604671904%7Cgb%7CAHV82898.1%7C;Parent=biopygen18 -Merlin_2 blast match_part 53 56 . . . Gap=M4;ID=gi%7C604671904%7Cgb%7CAHV82898.1%7C;Parent=biopygen18 -Merlin_2 blast match_part 62 75 . . . Gap=M14;ID=gi%7C604671904%7Cgb%7CAHV82898.1%7C;Parent=biopygen18 -Merlin_2 blast match_part 81 82 . . . Gap=M2;ID=gi%7C604671904%7Cgb%7CAHV82898.1%7C;Parent=biopygen18 -Merlin_2 blast match_part 88 95 . . . Gap=M8;ID=gi%7C604671904%7Cgb%7CAHV82898.1%7C;Parent=biopygen18 -Merlin_2 blast protein_match 1 96 1.42584e-10 . . ID=biopygen19;accession=YP_002854150;description=alt.-3 hypothetical protein %5BEnterobacteria phage RB51%5D;hit_id=gi%7C228861127%7Cref%7CYP_002854150.1%7C;hit_titles=gi%7C228861127%7Cref%7CYP_002854150.1%7C alt.-3 hypothetical protein %5BEnterobacteria phage RB51%5D,gi%7C422934975%7Cref%7CYP_007004935.1%7C hypothetical protein %5BEscherichia phage wV7%5D,gi%7C227438801%7Cgb%7CACP31113.1%7C alt.-3 hypothetical protein %5BEnterobacteria phage RB51%5D,gi%7C343177529%7Cgb%7CAEM00855.1%7C hypothetical protein %5BEscherichia phage wV7%5D;length=96 -Merlin_2 blast match_part 1 19 . . . Gap=M19;ID=gi%7C228861127%7Cref%7CYP_002854150.1%7C;Parent=biopygen19 -Merlin_2 blast match_part 24 40 . . . Gap=M17;ID=gi%7C228861127%7Cref%7CYP_002854150.1%7C;Parent=biopygen19 -Merlin_2 blast match_part 45 45 . . . Gap=M1;ID=gi%7C228861127%7Cref%7CYP_002854150.1%7C;Parent=biopygen19 -Merlin_2 blast match_part 49 49 . . . Gap=M1;ID=gi%7C228861127%7Cref%7CYP_002854150.1%7C;Parent=biopygen19 -Merlin_2 blast match_part 53 76 . . . Gap=M24;ID=gi%7C228861127%7Cref%7CYP_002854150.1%7C;Parent=biopygen19 -Merlin_2 blast match_part 81 95 . . . Gap=M15;ID=gi%7C228861127%7Cref%7CYP_002854150.1%7C;Parent=biopygen19 -Merlin_2 blast protein_match 1 96 1.90349e-10 . . ID=biopygen20;accession=BAI83208;description=conserved hypothetical protein %5BEnterobacteria phage AR1%5D;hit_id=gi%7C291290413%7Cdbj%7CBAI83208.1%7C;hit_titles=gi%7C291290413%7Cdbj%7CBAI83208.1%7C conserved hypothetical protein %5BEnterobacteria phage AR1%5D;length=96 -Merlin_2 blast match_part 1 19 . . . Gap=M19;ID=gi%7C291290413%7Cdbj%7CBAI83208.1%7C;Parent=biopygen20 -Merlin_2 blast match_part 24 40 . . . Gap=M17;ID=gi%7C291290413%7Cdbj%7CBAI83208.1%7C;Parent=biopygen20 -Merlin_2 blast match_part 45 45 . . . Gap=M1;ID=gi%7C291290413%7Cdbj%7CBAI83208.1%7C;Parent=biopygen20 -Merlin_2 blast match_part 49 49 . . . Gap=M1;ID=gi%7C291290413%7Cdbj%7CBAI83208.1%7C;Parent=biopygen20 -Merlin_2 blast match_part 53 76 . . . Gap=M24;ID=gi%7C291290413%7Cdbj%7CBAI83208.1%7C;Parent=biopygen20 -Merlin_2 blast match_part 81 95 . . . Gap=M15;ID=gi%7C291290413%7Cdbj%7CBAI83208.1%7C;Parent=biopygen20 -Merlin_2 blast protein_match 1 96 2.61121e-10 . . ID=biopygen21;accession=YP_009037572;description=hypothetical protein JS09_0249 %5BEscherichia phage vB_EcoM_JS09%5D;hit_id=gi%7C642906035%7Cref%7CYP_009037572.1%7C;hit_titles=gi%7C642906035%7Cref%7CYP_009037572.1%7C hypothetical protein JS09_0249 %5BEscherichia phage vB_EcoM_JS09%5D,gi%7C642904189%7Cgb%7CAIA80209.1%7C hypothetical protein JS09_0249 %5BEscherichia phage vB_EcoM_JS09%5D;length=97 -Merlin_2 blast match_part 1 19 . . . Gap=M19;ID=gi%7C642906035%7Cref%7CYP_009037572.1%7C;Parent=biopygen21 -Merlin_2 blast match_part 24 37 . . . Gap=M14;ID=gi%7C642906035%7Cref%7CYP_009037572.1%7C;Parent=biopygen21 -Merlin_2 blast match_part 41 41 . . . Gap=M1;ID=gi%7C642906035%7Cref%7CYP_009037572.1%7C;Parent=biopygen21 -Merlin_2 blast match_part 45 49 . . . Gap=M5;ID=gi%7C642906035%7Cref%7CYP_009037572.1%7C;Parent=biopygen21 -Merlin_2 blast match_part 53 56 . . . Gap=M4;ID=gi%7C642906035%7Cref%7CYP_009037572.1%7C;Parent=biopygen21 -Merlin_2 blast match_part 62 75 . . . Gap=M14;ID=gi%7C642906035%7Cref%7CYP_009037572.1%7C;Parent=biopygen21 -Merlin_2 blast match_part 81 82 . . . Gap=M2;ID=gi%7C642906035%7Cref%7CYP_009037572.1%7C;Parent=biopygen21 -Merlin_2 blast match_part 88 95 . . . Gap=M8;ID=gi%7C642906035%7Cref%7CYP_009037572.1%7C;Parent=biopygen21 -Merlin_2 blast protein_match 1 96 5.64687e-10 . . ID=biopygen22;accession=NP_861899;description=Alt.-3 conserved hypothetical protein %5BEnterobacteria phage RB69%5D;hit_id=gi%7C32453690%7Cref%7CNP_861899.1%7C;hit_titles=gi%7C32453690%7Cref%7CNP_861899.1%7C Alt.-3 conserved hypothetical protein %5BEnterobacteria phage RB69%5D,gi%7C32350509%7Cgb%7CAAP76108.1%7C Alt.-3 conserved hypothetical protein %5BEnterobacteria phage RB69%5D;length=97 -Merlin_2 blast match_part 1 19 . . . Gap=M19;ID=gi%7C32453690%7Cref%7CNP_861899.1%7C;Parent=biopygen22 -Merlin_2 blast match_part 24 37 . . . Gap=M14;ID=gi%7C32453690%7Cref%7CNP_861899.1%7C;Parent=biopygen22 -Merlin_2 blast match_part 41 41 . . . Gap=M1;ID=gi%7C32453690%7Cref%7CNP_861899.1%7C;Parent=biopygen22 -Merlin_2 blast match_part 45 49 . . . Gap=M5;ID=gi%7C32453690%7Cref%7CNP_861899.1%7C;Parent=biopygen22 -Merlin_2 blast match_part 53 56 . . . Gap=M4;ID=gi%7C32453690%7Cref%7CNP_861899.1%7C;Parent=biopygen22 -Merlin_2 blast match_part 62 75 . . . Gap=M14;ID=gi%7C32453690%7Cref%7CNP_861899.1%7C;Parent=biopygen22 -Merlin_2 blast match_part 81 82 . . . Gap=M2;ID=gi%7C32453690%7Cref%7CNP_861899.1%7C;Parent=biopygen22 -Merlin_2 blast match_part 88 95 . . . Gap=M8;ID=gi%7C32453690%7Cref%7CNP_861899.1%7C;Parent=biopygen22 +Merlin_2 blast protein_match -10 109 9.23754e-17 . . ID=b2g.1.0.0;accession=YP_003934833;blast_align_length=96;blast_bits=79.337;blast_frame=0;blast_gaps=1;blast_identities=42;blast_positives=56;blast_query_end=95;blast_query_start=1;blast_sbjct_end=107;blast_sbjct_start=12;blast_score=194.0;blast_strand=None;description=hypothetical protein SP18_gp210 %5BShigella phage SP18%5D;hit_id=gi%7C308814559%7Cref%7CYP_003934833.1%7C;hit_titles=gi%7C308814559%7Cref%7CYP_003934833.1%7C hypothetical protein SP18_gp210 %5BShigella phage SP18%5D,gi%7C308206151%7Cgb%7CADO19550.1%7C hypothetical protein SP18gp210 %5BShigella phage SP18%5D;length=107 +Merlin_2 blast match_part 1 40 . . . Gap=M40;ID=b2g.1.0.0.0;Parent=b2g.1.0.0 +Merlin_2 blast match_part 45 49 . . . Gap=M5;ID=b2g.1.0.0.1;Parent=b2g.1.0.0 +Merlin_2 blast match_part 53 56 . . . Gap=M4;ID=b2g.1.0.0.2;Parent=b2g.1.0.0 +Merlin_2 blast match_part 62 75 . . . Gap=M14;ID=b2g.1.0.0.3;Parent=b2g.1.0.0 +Merlin_2 blast match_part 82 86 . . . Gap=M5;ID=b2g.1.0.0.4;Parent=b2g.1.0.0 +Merlin_2 blast match_part 90 95 . . . Gap=M6;ID=b2g.1.0.0.5;Parent=b2g.1.0.0 +Merlin_2 blast protein_match -9 109 2.9568e-16 . . ID=b2g.1.1.0;accession=YP_007501230;blast_align_length=96;blast_bits=77.7962;blast_frame=0;blast_gaps=2;blast_identities=42;blast_positives=57;blast_query_end=94;blast_query_start=1;blast_sbjct_end=106;blast_sbjct_start=11;blast_score=190.0;blast_strand=None;description=hypothetical protein %5BSalmonella phage S16%5D;hit_id=gi%7C456351278%7Cref%7CYP_007501230.1%7C;hit_titles=gi%7C456351278%7Cref%7CYP_007501230.1%7C hypothetical protein %5BSalmonella phage S16%5D,gi%7C448913695%7Cgb%7CAGE48199.1%7C hypothetical protein %5BSalmonella phage S16%5D;length=106 +Merlin_2 blast match_part 1 7 . . . Gap=M7;ID=b2g.1.1.0.0;Parent=b2g.1.1.0 +Merlin_2 blast match_part 11 70 . . . Gap=M60;ID=b2g.1.1.0.1;Parent=b2g.1.1.0 +Merlin_2 blast match_part 74 94 . . . Gap=M21;ID=b2g.1.1.0.2;Parent=b2g.1.1.0 +Merlin_2 blast protein_match 1 99 5.19436e-16 . . ID=b2g.1.2.0;accession=AFU64136;blast_align_length=96;blast_bits=77.0258;blast_frame=0;blast_gaps=2;blast_identities=42;blast_positives=57;blast_query_end=94;blast_query_start=1;blast_sbjct_end=96;blast_sbjct_start=1;blast_score=188.0;blast_strand=None;description=hypothetical protein %5BSalmonella phage STML-198%5D;hit_id=gi%7C408387127%7Cgb%7CAFU64136.1%7C;hit_titles=gi%7C408387127%7Cgb%7CAFU64136.1%7C hypothetical protein %5BSalmonella phage STML-198%5D;length=96 +Merlin_2 blast match_part 1 7 . . . Gap=M7;ID=b2g.1.2.0.0;Parent=b2g.1.2.0 +Merlin_2 blast match_part 11 70 . . . Gap=M60;ID=b2g.1.2.0.1;Parent=b2g.1.2.0 +Merlin_2 blast match_part 74 94 . . . Gap=M21;ID=b2g.1.2.0.2;Parent=b2g.1.2.0 +Merlin_2 blast protein_match 1 98 7.7684e-16 . . ID=b2g.1.3.0;accession=YP_004063893;blast_align_length=96;blast_bits=76.6406;blast_frame=0;blast_gaps=1;blast_identities=40;blast_positives=56;blast_query_end=95;blast_query_start=1;blast_sbjct_end=96;blast_sbjct_start=1;blast_score=187.0;blast_strand=None;description=Alt.-3 conserved hypothetical protein %5BEnterobacteria phage vB_EcoM-VR7%5D;hit_id=gi%7C314121774%7Cref%7CYP_004063893.1%7C;hit_titles=gi%7C314121774%7Cref%7CYP_004063893.1%7C Alt.-3 conserved hypothetical protein %5BEnterobacteria phage vB_EcoM-VR7%5D,gi%7C313151531%7Cgb%7CADR32587.1%7C Alt.-3 conserved hypothetical protein %5BEnterobacteria phage vB_EcoM-VR7%5D;length=96 +Merlin_2 blast match_part 1 40 . . . Gap=M40;ID=b2g.1.3.0.0;Parent=b2g.1.3.0 +Merlin_2 blast match_part 45 49 . . . Gap=M5;ID=b2g.1.3.0.1;Parent=b2g.1.3.0 +Merlin_2 blast match_part 53 56 . . . Gap=M4;ID=b2g.1.3.0.2;Parent=b2g.1.3.0 +Merlin_2 blast match_part 62 75 . . . Gap=M14;ID=b2g.1.3.0.3;Parent=b2g.1.3.0 +Merlin_2 blast match_part 82 95 . . . Gap=M14;ID=b2g.1.3.0.4;Parent=b2g.1.3.0 +Merlin_2 blast protein_match 1 98 2.41009e-15 . . ID=b2g.1.4.0;accession=YP_001595321;blast_align_length=96;blast_bits=75.485;blast_frame=0;blast_gaps=1;blast_identities=39;blast_positives=55;blast_query_end=95;blast_query_start=1;blast_sbjct_end=96;blast_sbjct_start=1;blast_score=184.0;blast_strand=None;description=Alt.-3 conserved hypothetical protein %5BEnterobacteria phage JS98%5D;hit_id=gi%7C161622625%7Cref%7CYP_001595321.1%7C;hit_titles=gi%7C161622625%7Cref%7CYP_001595321.1%7C Alt.-3 conserved hypothetical protein %5BEnterobacteria phage JS98%5D,gi%7C52139951%7Cgb%7CAAU29321.1%7C Alt.-3 conserved hypothetical protein %5BEnterobacteria phage JS98%5D;length=96 +Merlin_2 blast match_part 1 40 . . . Gap=M40;ID=b2g.1.4.0.0;Parent=b2g.1.4.0 +Merlin_2 blast match_part 45 49 . . . Gap=M5;ID=b2g.1.4.0.1;Parent=b2g.1.4.0 +Merlin_2 blast match_part 53 56 . . . Gap=M4;ID=b2g.1.4.0.2;Parent=b2g.1.4.0 +Merlin_2 blast match_part 62 75 . . . Gap=M14;ID=b2g.1.4.0.3;Parent=b2g.1.4.0 +Merlin_2 blast match_part 82 86 . . . Gap=M5;ID=b2g.1.4.0.4;Parent=b2g.1.4.0 +Merlin_2 blast match_part 90 95 . . . Gap=M6;ID=b2g.1.4.0.5;Parent=b2g.1.4.0 +Merlin_2 blast protein_match 1 98 3.63965e-15 . . ID=b2g.1.5.0;accession=YP_007004249;blast_align_length=96;blast_bits=74.7146;blast_frame=0;blast_gaps=1;blast_identities=39;blast_positives=55;blast_query_end=95;blast_query_start=1;blast_sbjct_end=96;blast_sbjct_start=1;blast_score=182.0;blast_strand=None;description=conserved hypothetical protein %5BEnterobacteria phage Bp7%5D;hit_id=gi%7C422934213%7Cref%7CYP_007004249.1%7C;hit_titles=gi%7C422934213%7Cref%7CYP_007004249.1%7C conserved hypothetical protein %5BEnterobacteria phage Bp7%5D,gi%7C345450722%7Cgb%7CAEN93925.1%7C conserved hypothetical protein %5BEnterobacteria phage Bp7%5D;length=96 +Merlin_2 blast match_part 1 40 . . . Gap=M40;ID=b2g.1.5.0.0;Parent=b2g.1.5.0 +Merlin_2 blast match_part 45 49 . . . Gap=M5;ID=b2g.1.5.0.1;Parent=b2g.1.5.0 +Merlin_2 blast match_part 53 56 . . . Gap=M4;ID=b2g.1.5.0.2;Parent=b2g.1.5.0 +Merlin_2 blast match_part 62 75 . . . Gap=M14;ID=b2g.1.5.0.3;Parent=b2g.1.5.0 +Merlin_2 blast match_part 82 86 . . . Gap=M5;ID=b2g.1.5.0.4;Parent=b2g.1.5.0 +Merlin_2 blast match_part 90 95 . . . Gap=M6;ID=b2g.1.5.0.5;Parent=b2g.1.5.0 +Merlin_2 blast protein_match 1 98 4.31e-15 . . ID=b2g.1.6.0;accession=YP_002922541;blast_align_length=96;blast_bits=74.7146;blast_frame=0;blast_gaps=1;blast_identities=38;blast_positives=55;blast_query_end=95;blast_query_start=1;blast_sbjct_end=96;blast_sbjct_start=1;blast_score=182.0;blast_strand=None;description=Alt.-3 conserved hypothetical protein %5BEnterobacteria phage JS10%5D;hit_id=gi%7C238695348%7Cref%7CYP_002922541.1%7C;hit_titles=gi%7C238695348%7Cref%7CYP_002922541.1%7C Alt.-3 conserved hypothetical protein %5BEnterobacteria phage JS10%5D,gi%7C220029484%7Cgb%7CACL78418.1%7C Alt.-3 conserved hypothetical protein %5BEnterobacteria phage JS10%5D;length=96 +Merlin_2 blast match_part 1 40 . . . Gap=M40;ID=b2g.1.6.0.0;Parent=b2g.1.6.0 +Merlin_2 blast match_part 45 49 . . . Gap=M5;ID=b2g.1.6.0.1;Parent=b2g.1.6.0 +Merlin_2 blast match_part 53 56 . . . Gap=M4;ID=b2g.1.6.0.2;Parent=b2g.1.6.0 +Merlin_2 blast match_part 62 75 . . . Gap=M14;ID=b2g.1.6.0.3;Parent=b2g.1.6.0 +Merlin_2 blast match_part 82 86 . . . Gap=M5;ID=b2g.1.6.0.4;Parent=b2g.1.6.0 +Merlin_2 blast match_part 90 95 . . . Gap=M6;ID=b2g.1.6.0.5;Parent=b2g.1.6.0 +Merlin_2 blast protein_match -9 108 6.30983e-15 . . ID=b2g.1.7.0;accession=YP_003734337;blast_align_length=96;blast_bits=74.3294;blast_frame=0;blast_gaps=1;blast_identities=38;blast_positives=55;blast_query_end=95;blast_query_start=1;blast_sbjct_end=106;blast_sbjct_start=11;blast_score=181.0;blast_strand=None;description=alt.-3 gene product %5BEnterobacteria phage IME08%5D;hit_id=gi%7C299779143%7Cref%7CYP_003734337.1%7C;hit_titles=gi%7C299779143%7Cref%7CYP_003734337.1%7C alt.-3 gene product %5BEnterobacteria phage IME08%5D,gi%7C298105872%7Cgb%7CADI55516.1%7C hypothetical protein %5BEnterobacteria phage IME08%5D;length=106 +Merlin_2 blast match_part 1 40 . . . Gap=M40;ID=b2g.1.7.0.0;Parent=b2g.1.7.0 +Merlin_2 blast match_part 45 49 . . . Gap=M5;ID=b2g.1.7.0.1;Parent=b2g.1.7.0 +Merlin_2 blast match_part 53 56 . . . Gap=M4;ID=b2g.1.7.0.2;Parent=b2g.1.7.0 +Merlin_2 blast match_part 62 75 . . . Gap=M14;ID=b2g.1.7.0.3;Parent=b2g.1.7.0 +Merlin_2 blast match_part 82 86 . . . Gap=M5;ID=b2g.1.7.0.4;Parent=b2g.1.7.0 +Merlin_2 blast match_part 90 95 . . . Gap=M6;ID=b2g.1.7.0.5;Parent=b2g.1.7.0 +Merlin_2 blast protein_match 1 101 1.13441e-12 . . ID=b2g.1.8.0;accession=YP_004010056;blast_align_length=99;blast_bits=68.1662;blast_frame=0;blast_gaps=7;blast_identities=44;blast_positives=62;blast_query_end=95;blast_query_start=1;blast_sbjct_end=96;blast_sbjct_start=1;blast_score=165.0;blast_strand=None;description=hypothetical protein CC31p198 %5BEnterobacteria phage CC31%5D;hit_id=gi%7C311993190%7Cref%7CYP_004010056.1%7C;hit_titles=gi%7C311993190%7Cref%7CYP_004010056.1%7C hypothetical protein CC31p198 %5BEnterobacteria phage CC31%5D,gi%7C284178028%7Cgb%7CADB81694.1%7C conserved hypothetical protein %5BEnterobacteria phage CC31%5D;length=96 +Merlin_2 blast match_part 1 35 . . . Gap=M35;ID=b2g.1.8.0.0;Parent=b2g.1.8.0 +Merlin_2 blast match_part 41 59 . . . Gap=M19;ID=b2g.1.8.0.1;Parent=b2g.1.8.0 +Merlin_2 blast match_part 63 85 . . . Gap=M23;ID=b2g.1.8.0.2;Parent=b2g.1.8.0 +Merlin_2 blast match_part 89 95 . . . Gap=M7;ID=b2g.1.8.0.3;Parent=b2g.1.8.0 +Merlin_2 blast protein_match 1 101 1.18288e-12 . . ID=b2g.1.9.0;accession=YP_009005477;blast_align_length=99;blast_bits=68.1662;blast_frame=0;blast_gaps=7;blast_identities=45;blast_positives=62;blast_query_end=95;blast_query_start=1;blast_sbjct_end=96;blast_sbjct_start=1;blast_score=165.0;blast_strand=None;description=hypothetical protein PG7_213 %5BEnterobacter phage PG7%5D;hit_id=gi%7C589889941%7Cref%7CYP_009005477.1%7C;hit_titles=gi%7C589889941%7Cref%7CYP_009005477.1%7C hypothetical protein PG7_213 %5BEnterobacter phage PG7%5D,gi%7C583927854%7Cgb%7CAHI61116.1%7C hypothetical protein PG7_213 %5BEnterobacter phage PG7%5D;length=96 +Merlin_2 blast match_part 1 35 . . . Gap=M35;ID=b2g.1.9.0.0;Parent=b2g.1.9.0 +Merlin_2 blast match_part 41 59 . . . Gap=M19;ID=b2g.1.9.0.1;Parent=b2g.1.9.0 +Merlin_2 blast match_part 63 85 . . . Gap=M23;ID=b2g.1.9.0.2;Parent=b2g.1.9.0 +Merlin_2 blast match_part 89 95 . . . Gap=M7;ID=b2g.1.9.0.3;Parent=b2g.1.9.0 +Merlin_2 blast protein_match 1 98 9.33346e-12 . . ID=b2g.1.10.0;accession=NP_049808;blast_align_length=96;blast_bits=65.855;blast_frame=0;blast_gaps=1;blast_identities=38;blast_positives=52;blast_query_end=95;blast_query_start=1;blast_sbjct_end=96;blast_sbjct_start=1;blast_score=159.0;blast_strand=None;description=Alt.-3 conserved hypothetical protein %5BEnterobacteria phage T4%5D;hit_id=gi%7C9632705%7Cref%7CNP_049808.1%7C;hit_titles=gi%7C9632705%7Cref%7CNP_049808.1%7C Alt.-3 conserved hypothetical protein %5BEnterobacteria phage T4%5D,gi%7C116326415%7Cref%7CYP_803135.1%7C hypothetical protein RB32ORF193c %5BEnterobacteria phage RB32%5D,gi%7C228861508%7Cref%7CYP_002854529.1%7C alt.-3 hypothetical protein %5BEnterobacteria phage RB14%5D,gi%7C330858713%7Cref%7CYP_004415088.1%7C hypothetical protein Shfl2p197 %5BShigella phage Shfl2%5D,gi%7C731233%7Csp%7CP39493.1%7CY12A_BPT4 RecName: Full%3DUncharacterized 10.7 kDa protein in Gp54-alt intergenic region %5BEnterobacteria phage T4%5D,gi%7C5354329%7Cgb%7CAAD42536.1%7CAF158101_123 Alt.-3 conserved hypothetical protein %5BEnterobacteria phage T4%5D,gi%7C984519%7Cgb%7CAAA75320.1%7C alt.-3 %5BEnterobacteria phage T4%5D,gi%7C115344008%7Cgb%7CABI95017.1%7C hypothetical protein RB32ORF193c %5BEnterobacteria phage RB32%5D,gi%7C227438524%7Cgb%7CACP30837.1%7C alt.-3 hypothetical protein %5BEnterobacteria phage RB14%5D,gi%7C299780556%7Cgb%7CADJ39918.1%7C hypothetical protein T4Tp201 %5BEnterobacteria phage T4T%5D,gi%7C327397647%7Cgb%7CAEA73149.1%7C hypothetical protein Shfl2p197 %5BShigella phage Shfl2%5D,gi%7C397134212%7Cgb%7CAFO10719.1%7C hypothetical protein ECML134_193 %5BEscherichia phage ECML-134%5D,gi%7C628971904%7Cgb%7CAHY83625.1%7C hypothetical protein T4wild_197 %5BEnterobacteria phage T4%5D,gi%7C628972094%7Cgb%7CAHY83814.1%7C hypothetical protein T4147_197 %5BEnterobacteria phage T4%5D,gi%7C628972289%7Cgb%7CAHY84008.1%7C hypothetical protein T4GT7_197 %5BEnterobacteria phage T4%5D;length=96 +Merlin_2 blast match_part 1 19 . . . Gap=M19;ID=b2g.1.10.0.0;Parent=b2g.1.10.0 +Merlin_2 blast match_part 24 40 . . . Gap=M17;ID=b2g.1.10.0.1;Parent=b2g.1.10.0 +Merlin_2 blast match_part 45 45 . . . Gap=M1;ID=b2g.1.10.0.2;Parent=b2g.1.10.0 +Merlin_2 blast match_part 49 49 . . . Gap=M1;ID=b2g.1.10.0.3;Parent=b2g.1.10.0 +Merlin_2 blast match_part 53 76 . . . Gap=M24;ID=b2g.1.10.0.4;Parent=b2g.1.10.0 +Merlin_2 blast match_part 81 95 . . . Gap=M15;ID=b2g.1.10.0.5;Parent=b2g.1.10.0 +Merlin_2 blast protein_match 1 98 9.52974e-12 . . ID=b2g.1.11.0;accession=YP_006986750;blast_align_length=96;blast_bits=65.855;blast_frame=0;blast_gaps=1;blast_identities=38;blast_positives=52;blast_query_end=95;blast_query_start=1;blast_sbjct_end=96;blast_sbjct_start=1;blast_score=159.0;blast_strand=None;description=hypothetical protein ACG-C40_0194 %5BEnterobacteria phage vB_EcoM_ACG-C40%5D;hit_id=gi%7C414086561%7Cref%7CYP_006986750.1%7C;hit_titles=gi%7C414086561%7Cref%7CYP_006986750.1%7C hypothetical protein ACG-C40_0194 %5BEnterobacteria phage vB_EcoM_ACG-C40%5D,gi%7C639438845%7Cref%7CYP_009030802.1%7C hypothetical protein %5BEscherichia phage e11/2%5D,gi%7C383396342%7Cgb%7CAFH20158.1%7C hypothetical protein ACG-C40_0194 %5BEnterobacteria phage vB_EcoM_ACG-C40%5D,gi%7C398313743%7Cemb%7CCCI89090.1%7C protein of unknown function %5BYersinia phage phiD1%5D,gi%7C525334461%7Cgb%7CAGR46143.1%7C hypothetical protein %5BYersinia phage PST%5D,gi%7C628971673%7Cgb%7CAHY83395.1%7C hypothetical protein %5BEscherichia phage e11/2%5D;length=96 +Merlin_2 blast match_part 1 19 . . . Gap=M19;ID=b2g.1.11.0.0;Parent=b2g.1.11.0 +Merlin_2 blast match_part 24 40 . . . Gap=M17;ID=b2g.1.11.0.1;Parent=b2g.1.11.0 +Merlin_2 blast match_part 45 45 . . . Gap=M1;ID=b2g.1.11.0.2;Parent=b2g.1.11.0 +Merlin_2 blast match_part 49 49 . . . Gap=M1;ID=b2g.1.11.0.3;Parent=b2g.1.11.0 +Merlin_2 blast match_part 53 76 . . . Gap=M24;ID=b2g.1.11.0.4;Parent=b2g.1.11.0 +Merlin_2 blast match_part 81 95 . . . Gap=M15;ID=b2g.1.11.0.5;Parent=b2g.1.11.0 +Merlin_2 blast protein_match 1 100 3.48235e-11 . . ID=b2g.1.12.0;accession=YP_006907288;blast_align_length=97;blast_bits=64.3142;blast_frame=0;blast_gaps=2;blast_identities=39;blast_positives=50;blast_query_end=95;blast_query_start=1;blast_sbjct_end=97;blast_sbjct_start=1;blast_score=155.0;blast_strand=None;description=hypothetical protein HX01_0247 %5BEnterobacteria phage HX01%5D;hit_id=gi%7C410492102%7Cref%7CYP_006907288.1%7C;hit_titles=gi%7C410492102%7Cref%7CYP_006907288.1%7C hypothetical protein HX01_0247 %5BEnterobacteria phage HX01%5D,gi%7C407437691%7Cgb%7CAFU20451.1%7C hypothetical protein HX01_0247 %5BEnterobacteria phage HX01%5D;length=97 +Merlin_2 blast match_part 1 19 . . . Gap=M19;ID=b2g.1.12.0.0;Parent=b2g.1.12.0 +Merlin_2 blast match_part 24 37 . . . Gap=M14;ID=b2g.1.12.0.1;Parent=b2g.1.12.0 +Merlin_2 blast match_part 41 41 . . . Gap=M1;ID=b2g.1.12.0.2;Parent=b2g.1.12.0 +Merlin_2 blast match_part 45 49 . . . Gap=M5;ID=b2g.1.12.0.3;Parent=b2g.1.12.0 +Merlin_2 blast match_part 53 56 . . . Gap=M4;ID=b2g.1.12.0.4;Parent=b2g.1.12.0 +Merlin_2 blast match_part 62 75 . . . Gap=M14;ID=b2g.1.12.0.5;Parent=b2g.1.12.0 +Merlin_2 blast match_part 81 82 . . . Gap=M2;ID=b2g.1.12.0.6;Parent=b2g.1.12.0 +Merlin_2 blast match_part 88 95 . . . Gap=M8;ID=b2g.1.12.0.7;Parent=b2g.1.12.0 +Merlin_2 blast protein_match 1 98 3.60146e-11 . . ID=b2g.1.13.0;accession=YP_007004571;blast_align_length=96;blast_bits=64.3142;blast_frame=0;blast_gaps=1;blast_identities=38;blast_positives=52;blast_query_end=95;blast_query_start=1;blast_sbjct_end=96;blast_sbjct_start=1;blast_score=155.0;blast_strand=None;description=conserved hypothetical protein %5BEnterobacteria phage ime09%5D;hit_id=gi%7C422934610%7Cref%7CYP_007004571.1%7C;hit_titles=gi%7C422934610%7Cref%7CYP_007004571.1%7C conserved hypothetical protein %5BEnterobacteria phage ime09%5D,gi%7C339791393%7Cgb%7CAEK12450.1%7C conserved hypothetical protein %5BEnterobacteria phage ime09%5D;length=96 +Merlin_2 blast match_part 1 19 . . . Gap=M19;ID=b2g.1.13.0.0;Parent=b2g.1.13.0 +Merlin_2 blast match_part 24 40 . . . Gap=M17;ID=b2g.1.13.0.1;Parent=b2g.1.13.0 +Merlin_2 blast match_part 45 45 . . . Gap=M1;ID=b2g.1.13.0.2;Parent=b2g.1.13.0 +Merlin_2 blast match_part 49 49 . . . Gap=M1;ID=b2g.1.13.0.3;Parent=b2g.1.13.0 +Merlin_2 blast match_part 53 76 . . . Gap=M24;ID=b2g.1.13.0.4;Parent=b2g.1.13.0 +Merlin_2 blast match_part 81 95 . . . Gap=M15;ID=b2g.1.13.0.5;Parent=b2g.1.13.0 +Merlin_2 blast protein_match 1 100 1.00057e-10 . . ID=b2g.1.14.0;accession=AHV82898;blast_align_length=97;blast_bits=63.1586;blast_frame=0;blast_gaps=2;blast_identities=38;blast_positives=50;blast_query_end=95;blast_query_start=1;blast_sbjct_end=97;blast_sbjct_start=1;blast_score=152.0;blast_strand=None;description=hypothetical protein PhAPEC2_189 %5BEscherichia phage vB_EcoM_PhAPEC2%5D;hit_id=gi%7C604671904%7Cgb%7CAHV82898.1%7C;hit_titles=gi%7C604671904%7Cgb%7CAHV82898.1%7C hypothetical protein PhAPEC2_189 %5BEscherichia phage vB_EcoM_PhAPEC2%5D;length=97 +Merlin_2 blast match_part 1 19 . . . Gap=M19;ID=b2g.1.14.0.0;Parent=b2g.1.14.0 +Merlin_2 blast match_part 24 37 . . . Gap=M14;ID=b2g.1.14.0.1;Parent=b2g.1.14.0 +Merlin_2 blast match_part 41 41 . . . Gap=M1;ID=b2g.1.14.0.2;Parent=b2g.1.14.0 +Merlin_2 blast match_part 45 49 . . . Gap=M5;ID=b2g.1.14.0.3;Parent=b2g.1.14.0 +Merlin_2 blast match_part 53 56 . . . Gap=M4;ID=b2g.1.14.0.4;Parent=b2g.1.14.0 +Merlin_2 blast match_part 62 75 . . . Gap=M14;ID=b2g.1.14.0.5;Parent=b2g.1.14.0 +Merlin_2 blast match_part 81 82 . . . Gap=M2;ID=b2g.1.14.0.6;Parent=b2g.1.14.0 +Merlin_2 blast match_part 88 95 . . . Gap=M8;ID=b2g.1.14.0.7;Parent=b2g.1.14.0 +Merlin_2 blast protein_match 1 98 1.42584e-10 . . ID=b2g.1.15.0;accession=YP_002854150;blast_align_length=96;blast_bits=62.7734;blast_frame=0;blast_gaps=1;blast_identities=37;blast_positives=51;blast_query_end=95;blast_query_start=1;blast_sbjct_end=96;blast_sbjct_start=1;blast_score=151.0;blast_strand=None;description=alt.-3 hypothetical protein %5BEnterobacteria phage RB51%5D;hit_id=gi%7C228861127%7Cref%7CYP_002854150.1%7C;hit_titles=gi%7C228861127%7Cref%7CYP_002854150.1%7C alt.-3 hypothetical protein %5BEnterobacteria phage RB51%5D,gi%7C422934975%7Cref%7CYP_007004935.1%7C hypothetical protein %5BEscherichia phage wV7%5D,gi%7C227438801%7Cgb%7CACP31113.1%7C alt.-3 hypothetical protein %5BEnterobacteria phage RB51%5D,gi%7C343177529%7Cgb%7CAEM00855.1%7C hypothetical protein %5BEscherichia phage wV7%5D;length=96 +Merlin_2 blast match_part 1 19 . . . Gap=M19;ID=b2g.1.15.0.0;Parent=b2g.1.15.0 +Merlin_2 blast match_part 24 40 . . . Gap=M17;ID=b2g.1.15.0.1;Parent=b2g.1.15.0 +Merlin_2 blast match_part 45 45 . . . Gap=M1;ID=b2g.1.15.0.2;Parent=b2g.1.15.0 +Merlin_2 blast match_part 49 49 . . . Gap=M1;ID=b2g.1.15.0.3;Parent=b2g.1.15.0 +Merlin_2 blast match_part 53 76 . . . Gap=M24;ID=b2g.1.15.0.4;Parent=b2g.1.15.0 +Merlin_2 blast match_part 81 95 . . . Gap=M15;ID=b2g.1.15.0.5;Parent=b2g.1.15.0 +Merlin_2 blast protein_match 1 98 1.90349e-10 . . ID=b2g.1.16.0;accession=BAI83208;blast_align_length=96;blast_bits=62.3882;blast_frame=0;blast_gaps=1;blast_identities=37;blast_positives=51;blast_query_end=95;blast_query_start=1;blast_sbjct_end=96;blast_sbjct_start=1;blast_score=150.0;blast_strand=None;description=conserved hypothetical protein %5BEnterobacteria phage AR1%5D;hit_id=gi%7C291290413%7Cdbj%7CBAI83208.1%7C;hit_titles=gi%7C291290413%7Cdbj%7CBAI83208.1%7C conserved hypothetical protein %5BEnterobacteria phage AR1%5D;length=96 +Merlin_2 blast match_part 1 19 . . . Gap=M19;ID=b2g.1.16.0.0;Parent=b2g.1.16.0 +Merlin_2 blast match_part 24 40 . . . Gap=M17;ID=b2g.1.16.0.1;Parent=b2g.1.16.0 +Merlin_2 blast match_part 45 45 . . . Gap=M1;ID=b2g.1.16.0.2;Parent=b2g.1.16.0 +Merlin_2 blast match_part 49 49 . . . Gap=M1;ID=b2g.1.16.0.3;Parent=b2g.1.16.0 +Merlin_2 blast match_part 53 76 . . . Gap=M24;ID=b2g.1.16.0.4;Parent=b2g.1.16.0 +Merlin_2 blast match_part 81 95 . . . Gap=M15;ID=b2g.1.16.0.5;Parent=b2g.1.16.0 +Merlin_2 blast protein_match 1 100 2.61121e-10 . . ID=b2g.1.17.0;accession=YP_009037572;blast_align_length=97;blast_bits=62.003;blast_frame=0;blast_gaps=2;blast_identities=38;blast_positives=49;blast_query_end=95;blast_query_start=1;blast_sbjct_end=97;blast_sbjct_start=1;blast_score=149.0;blast_strand=None;description=hypothetical protein JS09_0249 %5BEscherichia phage vB_EcoM_JS09%5D;hit_id=gi%7C642906035%7Cref%7CYP_009037572.1%7C;hit_titles=gi%7C642906035%7Cref%7CYP_009037572.1%7C hypothetical protein JS09_0249 %5BEscherichia phage vB_EcoM_JS09%5D,gi%7C642904189%7Cgb%7CAIA80209.1%7C hypothetical protein JS09_0249 %5BEscherichia phage vB_EcoM_JS09%5D;length=97 +Merlin_2 blast match_part 1 19 . . . Gap=M19;ID=b2g.1.17.0.0;Parent=b2g.1.17.0 +Merlin_2 blast match_part 24 37 . . . Gap=M14;ID=b2g.1.17.0.1;Parent=b2g.1.17.0 +Merlin_2 blast match_part 41 41 . . . Gap=M1;ID=b2g.1.17.0.2;Parent=b2g.1.17.0 +Merlin_2 blast match_part 45 49 . . . Gap=M5;ID=b2g.1.17.0.3;Parent=b2g.1.17.0 +Merlin_2 blast match_part 53 56 . . . Gap=M4;ID=b2g.1.17.0.4;Parent=b2g.1.17.0 +Merlin_2 blast match_part 62 75 . . . Gap=M14;ID=b2g.1.17.0.5;Parent=b2g.1.17.0 +Merlin_2 blast match_part 81 82 . . . Gap=M2;ID=b2g.1.17.0.6;Parent=b2g.1.17.0 +Merlin_2 blast match_part 88 95 . . . Gap=M8;ID=b2g.1.17.0.7;Parent=b2g.1.17.0 +Merlin_2 blast protein_match 1 100 5.64687e-10 . . ID=b2g.1.18.0;accession=NP_861899;blast_align_length=97;blast_bits=61.2326;blast_frame=0;blast_gaps=2;blast_identities=38;blast_positives=50;blast_query_end=95;blast_query_start=1;blast_sbjct_end=97;blast_sbjct_start=1;blast_score=147.0;blast_strand=None;description=Alt.-3 conserved hypothetical protein %5BEnterobacteria phage RB69%5D;hit_id=gi%7C32453690%7Cref%7CNP_861899.1%7C;hit_titles=gi%7C32453690%7Cref%7CNP_861899.1%7C Alt.-3 conserved hypothetical protein %5BEnterobacteria phage RB69%5D,gi%7C32350509%7Cgb%7CAAP76108.1%7C Alt.-3 conserved hypothetical protein %5BEnterobacteria phage RB69%5D;length=97 +Merlin_2 blast match_part 1 19 . . . Gap=M19;ID=b2g.1.18.0.0;Parent=b2g.1.18.0 +Merlin_2 blast match_part 24 37 . . . Gap=M14;ID=b2g.1.18.0.1;Parent=b2g.1.18.0 +Merlin_2 blast match_part 41 41 . . . Gap=M1;ID=b2g.1.18.0.2;Parent=b2g.1.18.0 +Merlin_2 blast match_part 45 49 . . . Gap=M5;ID=b2g.1.18.0.3;Parent=b2g.1.18.0 +Merlin_2 blast match_part 53 56 . . . Gap=M4;ID=b2g.1.18.0.4;Parent=b2g.1.18.0 +Merlin_2 blast match_part 62 75 . . . Gap=M14;ID=b2g.1.18.0.5;Parent=b2g.1.18.0 +Merlin_2 blast match_part 81 82 . . . Gap=M2;ID=b2g.1.18.0.6;Parent=b2g.1.18.0 +Merlin_2 blast match_part 88 95 . . . Gap=M8;ID=b2g.1.18.0.7;Parent=b2g.1.18.0 +##gff-version 3 ##sequence-region Merlin_3 1 4 -Merlin_3 blast protein_match 1 303 0.0 . . ID=biopygen23;accession=YP_007501229;description=baseplate subunit %5BSalmonella phage S16%5D;hit_id=gi%7C456351277%7Cref%7CYP_007501229.1%7C;hit_titles=gi%7C456351277%7Cref%7CYP_007501229.1%7C baseplate subunit %5BSalmonella phage S16%5D,gi%7C347466342%7Cgb%7CAEO97128.1%7C baseplate subunit %5BSalmonella phage S16%5D,gi%7C408387126%7Cgb%7CAFU64135.1%7C tail assembly %5BSalmonella phage STML-198%5D;length=305 -Merlin_3 blast match_part 1 302 . . . Gap=M302;ID=gi%7C456351277%7Cref%7CYP_007501229.1%7C;Parent=biopygen23 -Merlin_3 blast protein_match 1 315 0.0 . . ID=biopygen24;accession=YP_004010055;description=gp54 base plate tail tube initiator %5BEnterobacteria phage CC31%5D;hit_id=gi%7C311993189%7Cref%7CYP_004010055.1%7C;hit_titles=gi%7C311993189%7Cref%7CYP_004010055.1%7C gp54 base plate tail tube initiator %5BEnterobacteria phage CC31%5D,gi%7C284178027%7Cgb%7CADB81693.1%7C gp54 base plate tail tube initiator %5BEnterobacteria phage CC31%5D;length=320 -Merlin_3 blast match_part 1 314 . . . Gap=M314;ID=gi%7C311993189%7Cref%7CYP_004010055.1%7C;Parent=biopygen24 -Merlin_3 blast protein_match 1 315 0.0 . . ID=biopygen25;accession=YP_009005476;description=baseplate subunit %5BEnterobacter phage PG7%5D;hit_id=gi%7C589889940%7Cref%7CYP_009005476.1%7C;hit_titles=gi%7C589889940%7Cref%7CYP_009005476.1%7C baseplate subunit %5BEnterobacter phage PG7%5D,gi%7C583927853%7Cgb%7CAHI61115.1%7C baseplate subunit %5BEnterobacter phage PG7%5D;length=320 -Merlin_3 blast match_part 1 314 . . . Gap=M314;ID=gi%7C589889940%7Cref%7CYP_009005476.1%7C;Parent=biopygen25 -Merlin_3 blast protein_match 1 314 6.96493e-167 . . ID=biopygen26;accession=YP_004063892;description=gp54 baseplate subunit %5BEnterobacteria phage vB_EcoM-VR7%5D;hit_id=gi%7C314121773%7Cref%7CYP_004063892.1%7C;hit_titles=gi%7C314121773%7Cref%7CYP_004063892.1%7C gp54 baseplate subunit %5BEnterobacteria phage vB_EcoM-VR7%5D,gi%7C313151530%7Cgb%7CADR32586.1%7C gp54 baseplate subunit %5BEnterobacteria phage vB_EcoM-VR7%5D;length=319 -Merlin_3 blast match_part 1 303 . . . Gap=M303;ID=gi%7C314121773%7Cref%7CYP_004063892.1%7C;Parent=biopygen26 -Merlin_3 blast match_part 307 307 . . . Gap=M1;ID=gi%7C314121773%7Cref%7CYP_004063892.1%7C;Parent=biopygen26 -Merlin_3 blast match_part 311 313 . . . Gap=M3;ID=gi%7C314121773%7Cref%7CYP_004063892.1%7C;Parent=biopygen26 -Merlin_3 blast protein_match 1 304 1.05147e-166 . . ID=biopygen27;accession=YP_003934832;description=baseplate tail tube initiator %5BShigella phage SP18%5D;hit_id=gi%7C308814558%7Cref%7CYP_003934832.1%7C;hit_titles=gi%7C308814558%7Cref%7CYP_003934832.1%7C baseplate tail tube initiator %5BShigella phage SP18%5D,gi%7C308206150%7Cgb%7CADO19549.1%7C baseplate tail tube initiator %5BShigella phage SP18%5D;length=314 -Merlin_3 blast match_part 1 303 . . . Gap=M303;ID=gi%7C308814558%7Cref%7CYP_003934832.1%7C;Parent=biopygen27 -Merlin_3 blast protein_match 1 304 9.66148e-163 . . ID=biopygen28;accession=YP_001595320;description=gp54 baseplate tail tube initiator %5BEnterobacteria phage JS98%5D;hit_id=gi%7C161622624%7Cref%7CYP_001595320.1%7C;hit_titles=gi%7C161622624%7Cref%7CYP_001595320.1%7C gp54 baseplate tail tube initiator %5BEnterobacteria phage JS98%5D,gi%7C238695347%7Cref%7CYP_002922540.1%7C gp54 baseplate tail tube initiator %5BEnterobacteria phage JS10%5D,gi%7C52139950%7Cgb%7CAAU29320.1%7C gp54 baseplate tail tube initiator %5BEnterobacteria phage JS98%5D,gi%7C220029483%7Cgb%7CACL78417.1%7C gp54 baseplate tail tube initiator %5BEnterobacteria phage JS10%5D;length=317 -Merlin_3 blast match_part 1 275 . . . Gap=M275;ID=gi%7C161622624%7Cref%7CYP_001595320.1%7C;Parent=biopygen28 -Merlin_3 blast match_part 279 303 . . . Gap=M25;ID=gi%7C161622624%7Cref%7CYP_001595320.1%7C;Parent=biopygen28 -Merlin_3 blast protein_match 1 313 2.90603e-161 . . ID=biopygen29;accession=YP_007236031;description=phage tail assembly %5BYersinia phage phiR1-RT%5D;hit_id=gi%7C431809134%7Cref%7CYP_007236031.1%7C;hit_titles=gi%7C431809134%7Cref%7CYP_007236031.1%7C phage tail assembly %5BYersinia phage phiR1-RT%5D,gi%7C398313423%7Cemb%7CCCI88772.1%7C phage tail assembly %5BYersinia phage phiR1-RT%5D;length=312 -Merlin_3 blast match_part 1 62 . . . Gap=M62;ID=gi%7C431809134%7Cref%7CYP_007236031.1%7C;Parent=biopygen29 -Merlin_3 blast match_part 66 275 . . . Gap=M210;ID=gi%7C431809134%7Cref%7CYP_007236031.1%7C;Parent=biopygen29 -Merlin_3 blast match_part 279 301 . . . Gap=M23;ID=gi%7C431809134%7Cref%7CYP_007236031.1%7C;Parent=biopygen29 -Merlin_3 blast match_part 307 312 . . . Gap=M6;ID=gi%7C431809134%7Cref%7CYP_007236031.1%7C;Parent=biopygen29 -Merlin_3 blast protein_match 1 304 2.42235e-160 . . ID=biopygen30;accession=YP_007004250;description=baseplate tail tube initiator %5BEnterobacteria phage Bp7%5D;hit_id=gi%7C422934214%7Cref%7CYP_007004250.1%7C;hit_titles=gi%7C422934214%7Cref%7CYP_007004250.1%7C baseplate tail tube initiator %5BEnterobacteria phage Bp7%5D,gi%7C345450723%7Cgb%7CAEN93926.1%7C baseplate tail tube initiator %5BEnterobacteria phage Bp7%5D;length=313 -Merlin_3 blast match_part 1 275 . . . Gap=M275;ID=gi%7C422934214%7Cref%7CYP_007004250.1%7C;Parent=biopygen30 -Merlin_3 blast match_part 279 303 . . . Gap=M25;ID=gi%7C422934214%7Cref%7CYP_007004250.1%7C;Parent=biopygen30 -Merlin_3 blast protein_match 1 315 2.72149e-160 . . ID=biopygen31;accession=NP_861898;description=baseplate subunit %5BEnterobacteria phage RB69%5D;hit_id=gi%7C32453689%7Cref%7CNP_861898.1%7C;hit_titles=gi%7C32453689%7Cref%7CNP_861898.1%7C baseplate subunit %5BEnterobacteria phage RB69%5D,gi%7C32350508%7Cgb%7CAAP76107.1%7C gp54 baseplate tail tube initiator %5BEnterobacteria phage RB69%5D;length=320 -Merlin_3 blast match_part 1 38 . . . Gap=M38;ID=gi%7C32453689%7Cref%7CNP_861898.1%7C;Parent=biopygen31 -Merlin_3 blast match_part 42 42 . . . Gap=M1;ID=gi%7C32453689%7Cref%7CNP_861898.1%7C;Parent=biopygen31 -Merlin_3 blast match_part 46 62 . . . Gap=M17;ID=gi%7C32453689%7Cref%7CNP_861898.1%7C;Parent=biopygen31 -Merlin_3 blast match_part 66 264 . . . Gap=M199;ID=gi%7C32453689%7Cref%7CNP_861898.1%7C;Parent=biopygen31 -Merlin_3 blast match_part 268 301 . . . Gap=M34;ID=gi%7C32453689%7Cref%7CNP_861898.1%7C;Parent=biopygen31 -Merlin_3 blast match_part 306 314 . . . Gap=M9;ID=gi%7C32453689%7Cref%7CNP_861898.1%7C;Parent=biopygen31 -Merlin_3 blast protein_match 1 315 4.35158e-160 . . ID=biopygen32;accession=AHV82897;description=baseplate tail tube initiator %5BEscherichia phage vB_EcoM_PhAPEC2%5D;hit_id=gi%7C604671903%7Cgb%7CAHV82897.1%7C;hit_titles=gi%7C604671903%7Cgb%7CAHV82897.1%7C baseplate tail tube initiator %5BEscherichia phage vB_EcoM_PhAPEC2%5D;length=320 -Merlin_3 blast match_part 1 38 . . . Gap=M38;ID=gi%7C604671903%7Cgb%7CAHV82897.1%7C;Parent=biopygen32 -Merlin_3 blast match_part 42 42 . . . Gap=M1;ID=gi%7C604671903%7Cgb%7CAHV82897.1%7C;Parent=biopygen32 -Merlin_3 blast match_part 46 62 . . . Gap=M17;ID=gi%7C604671903%7Cgb%7CAHV82897.1%7C;Parent=biopygen32 -Merlin_3 blast match_part 66 264 . . . Gap=M199;ID=gi%7C604671903%7Cgb%7CAHV82897.1%7C;Parent=biopygen32 -Merlin_3 blast match_part 268 301 . . . Gap=M34;ID=gi%7C604671903%7Cgb%7CAHV82897.1%7C;Parent=biopygen32 -Merlin_3 blast match_part 306 314 . . . Gap=M9;ID=gi%7C604671903%7Cgb%7CAHV82897.1%7C;Parent=biopygen32 -Merlin_3 blast protein_match -1 304 5.45864e-160 . . ID=biopygen33;accession=YP_003734336;description=54 gene product %5BEnterobacteria phage IME08%5D;hit_id=gi%7C299779142%7Cref%7CYP_003734336.1%7C;hit_titles=gi%7C299779142%7Cref%7CYP_003734336.1%7C 54 gene product %5BEnterobacteria phage IME08%5D,gi%7C298105871%7Cgb%7CADI55515.1%7C gp54 baseplate tail tube initiator %5BEnterobacteria phage IME08%5D;length=319 -Merlin_3 blast match_part 1 222 . . . Gap=M222;ID=gi%7C299779142%7Cref%7CYP_003734336.1%7C;Parent=biopygen33 -Merlin_3 blast match_part 226 275 . . . Gap=M50;ID=gi%7C299779142%7Cref%7CYP_003734336.1%7C;Parent=biopygen33 -Merlin_3 blast match_part 279 303 . . . Gap=M25;ID=gi%7C299779142%7Cref%7CYP_003734336.1%7C;Parent=biopygen33 -Merlin_3 blast protein_match 1 314 5.48662e-160 . . ID=biopygen34;accession=YP_002854149;description=gp54 base plate-tail tube initiator %5BEnterobacteria phage RB51%5D;hit_id=gi%7C228861126%7Cref%7CYP_002854149.1%7C;hit_titles=gi%7C228861126%7Cref%7CYP_002854149.1%7C gp54 base plate-tail tube initiator %5BEnterobacteria phage RB51%5D,gi%7C422934974%7Cref%7CYP_007004934.1%7C baseplate tail tube initiator %5BEscherichia phage wV7%5D,gi%7C227438800%7Cgb%7CACP31112.1%7C gp54 base plate-tail tube initiator %5BEnterobacteria phage RB51%5D,gi%7C291290412%7Cdbj%7CBAI83207.1%7C baseplate tail tube initiator %5BEnterobacteria phage AR1%5D,gi%7C343177528%7Cgb%7CAEM00854.1%7C baseplate tail tube initiator %5BEscherichia phage wV7%5D;length=321 -Merlin_3 blast match_part 1 38 . . . Gap=M38;ID=gi%7C228861126%7Cref%7CYP_002854149.1%7C;Parent=biopygen34 -Merlin_3 blast match_part 46 62 . . . Gap=M17;ID=gi%7C228861126%7Cref%7CYP_002854149.1%7C;Parent=biopygen34 -Merlin_3 blast match_part 66 264 . . . Gap=M199;ID=gi%7C228861126%7Cref%7CYP_002854149.1%7C;Parent=biopygen34 -Merlin_3 blast match_part 268 276 . . . Gap=M9;ID=gi%7C228861126%7Cref%7CYP_002854149.1%7C;Parent=biopygen34 -Merlin_3 blast match_part 280 301 . . . Gap=M22;ID=gi%7C228861126%7Cref%7CYP_002854149.1%7C;Parent=biopygen34 -Merlin_3 blast match_part 306 313 . . . Gap=M8;ID=gi%7C228861126%7Cref%7CYP_002854149.1%7C;Parent=biopygen34 -Merlin_3 blast protein_match 1 314 2.9788e-159 . . ID=biopygen35;accession=YP_803134;description=base plate-tail tube initiator %5BEnterobacteria phage RB32%5D;hit_id=gi%7C116326414%7Cref%7CYP_803134.1%7C;hit_titles=gi%7C116326414%7Cref%7CYP_803134.1%7C base plate-tail tube initiator %5BEnterobacteria phage RB32%5D,gi%7C115344007%7Cgb%7CABI95016.1%7C base plate-tail tube initiator %5BEnterobacteria phage RB32%5D;length=321 -Merlin_3 blast match_part 1 38 . . . Gap=M38;ID=gi%7C116326414%7Cref%7CYP_803134.1%7C;Parent=biopygen35 -Merlin_3 blast match_part 46 62 . . . Gap=M17;ID=gi%7C116326414%7Cref%7CYP_803134.1%7C;Parent=biopygen35 -Merlin_3 blast match_part 66 274 . . . Gap=M209;ID=gi%7C116326414%7Cref%7CYP_803134.1%7C;Parent=biopygen35 -Merlin_3 blast match_part 280 301 . . . Gap=M22;ID=gi%7C116326414%7Cref%7CYP_803134.1%7C;Parent=biopygen35 -Merlin_3 blast match_part 306 313 . . . Gap=M8;ID=gi%7C116326414%7Cref%7CYP_803134.1%7C;Parent=biopygen35 -Merlin_3 blast protein_match 1 315 4.03338e-159 . . ID=biopygen36;accession=YP_009037573;description=baseplate subunit %5BEscherichia phage vB_EcoM_JS09%5D;hit_id=gi%7C642905804%7Cref%7CYP_009037573.1%7C;hit_titles=gi%7C642905804%7Cref%7CYP_009037573.1%7C baseplate subunit %5BEscherichia phage vB_EcoM_JS09%5D,gi%7C642903958%7Cgb%7CAIA79978.1%7C baseplate subunit %5BEscherichia phage vB_EcoM_JS09%5D;length=320 -Merlin_3 blast match_part 1 38 . . . Gap=M38;ID=gi%7C642905804%7Cref%7CYP_009037573.1%7C;Parent=biopygen36 -Merlin_3 blast match_part 42 42 . . . Gap=M1;ID=gi%7C642905804%7Cref%7CYP_009037573.1%7C;Parent=biopygen36 -Merlin_3 blast match_part 46 62 . . . Gap=M17;ID=gi%7C642905804%7Cref%7CYP_009037573.1%7C;Parent=biopygen36 -Merlin_3 blast match_part 66 264 . . . Gap=M199;ID=gi%7C642905804%7Cref%7CYP_009037573.1%7C;Parent=biopygen36 -Merlin_3 blast match_part 268 301 . . . Gap=M34;ID=gi%7C642905804%7Cref%7CYP_009037573.1%7C;Parent=biopygen36 -Merlin_3 blast match_part 306 314 . . . Gap=M9;ID=gi%7C642905804%7Cref%7CYP_009037573.1%7C;Parent=biopygen36 -Merlin_3 blast protein_match 1 314 4.97538e-159 . . ID=biopygen37;accession=ADJ39917;description=baseplate subunit %5BEnterobacteria phage T4T%5D;hit_id=gi%7C299780555%7Cgb%7CADJ39917.1%7C;hit_titles=gi%7C299780555%7Cgb%7CADJ39917.1%7C baseplate subunit %5BEnterobacteria phage T4T%5D,gi%7C397134211%7Cgb%7CAFO10718.1%7C hypothetical protein ECML134_192 %5BEscherichia phage ECML-134%5D,gi%7C398313742%7Cemb%7CCCI89089.1%7C phage tail assembly %5BYersinia phage phiD1%5D;length=321 -Merlin_3 blast match_part 1 38 . . . Gap=M38;ID=gi%7C299780555%7Cgb%7CADJ39917.1%7C;Parent=biopygen37 -Merlin_3 blast match_part 46 62 . . . Gap=M17;ID=gi%7C299780555%7Cgb%7CADJ39917.1%7C;Parent=biopygen37 -Merlin_3 blast match_part 66 274 . . . Gap=M209;ID=gi%7C299780555%7Cgb%7CADJ39917.1%7C;Parent=biopygen37 -Merlin_3 blast match_part 280 301 . . . Gap=M22;ID=gi%7C299780555%7Cgb%7CADJ39917.1%7C;Parent=biopygen37 -Merlin_3 blast match_part 306 313 . . . Gap=M8;ID=gi%7C299780555%7Cgb%7CADJ39917.1%7C;Parent=biopygen37 -Merlin_3 blast protein_match 1 314 9.78828e-159 . . ID=biopygen38;accession=AGR46142;description=baseplate tail tube initiator %5BYersinia phage PST%5D;hit_id=gi%7C525334460%7Cgb%7CAGR46142.1%7C;hit_titles=gi%7C525334460%7Cgb%7CAGR46142.1%7C baseplate tail tube initiator %5BYersinia phage PST%5D;length=321 -Merlin_3 blast match_part 1 38 . . . Gap=M38;ID=gi%7C525334460%7Cgb%7CAGR46142.1%7C;Parent=biopygen38 -Merlin_3 blast match_part 46 62 . . . Gap=M17;ID=gi%7C525334460%7Cgb%7CAGR46142.1%7C;Parent=biopygen38 -Merlin_3 blast match_part 66 274 . . . Gap=M209;ID=gi%7C525334460%7Cgb%7CAGR46142.1%7C;Parent=biopygen38 -Merlin_3 blast match_part 280 301 . . . Gap=M22;ID=gi%7C525334460%7Cgb%7CAGR46142.1%7C;Parent=biopygen38 -Merlin_3 blast match_part 306 313 . . . Gap=M8;ID=gi%7C525334460%7Cgb%7CAGR46142.1%7C;Parent=biopygen38 -Merlin_3 blast protein_match 1 314 9.78828e-159 . . ID=biopygen39;accession=YP_004415087;description=putative baseplate-tail tube initiator %5BShigella phage Shfl2%5D;hit_id=gi%7C330858712%7Cref%7CYP_004415087.1%7C;hit_titles=gi%7C330858712%7Cref%7CYP_004415087.1%7C putative baseplate-tail tube initiator %5BShigella phage Shfl2%5D,gi%7C422934609%7Cref%7CYP_007004570.1%7C phage baseplate tail tube initiator %5BEnterobacteria phage ime09%5D,gi%7C327397646%7Cgb%7CAEA73148.1%7C putative baseplate-tail tube initiator %5BShigella phage Shfl2%5D,gi%7C339791392%7Cgb%7CAEK12449.1%7C phage baseplate tail tube initiator %5BEnterobacteria phage ime09%5D;length=321 -Merlin_3 blast match_part 1 38 . . . Gap=M38;ID=gi%7C330858712%7Cref%7CYP_004415087.1%7C;Parent=biopygen39 -Merlin_3 blast match_part 46 62 . . . Gap=M17;ID=gi%7C330858712%7Cref%7CYP_004415087.1%7C;Parent=biopygen39 -Merlin_3 blast match_part 66 274 . . . Gap=M209;ID=gi%7C330858712%7Cref%7CYP_004415087.1%7C;Parent=biopygen39 -Merlin_3 blast match_part 280 301 . . . Gap=M22;ID=gi%7C330858712%7Cref%7CYP_004415087.1%7C;Parent=biopygen39 -Merlin_3 blast match_part 306 313 . . . Gap=M8;ID=gi%7C330858712%7Cref%7CYP_004415087.1%7C;Parent=biopygen39 -Merlin_3 blast protein_match -2 306 2.89005e-158 . . ID=biopygen40;accession=YP_009030256;description=baseplate tail tube initiator %5BSerratia phage PS2%5D;hit_id=gi%7C639438590%7Cref%7CYP_009030256.1%7C;hit_titles=gi%7C639438590%7Cref%7CYP_009030256.1%7C baseplate tail tube initiator %5BSerratia phage PS2%5D,gi%7C625370663%7Cgb%7CAHY25523.1%7C baseplate tail tube initiator %5BSerratia phage PS2%5D;length=309 -Merlin_3 blast match_part 3 222 . . . Gap=M220;ID=gi%7C639438590%7Cref%7CYP_009030256.1%7C;Parent=biopygen40 -Merlin_3 blast match_part 226 279 . . . Gap=M54;ID=gi%7C639438590%7Cref%7CYP_009030256.1%7C;Parent=biopygen40 -Merlin_3 blast match_part 284 305 . . . Gap=M22;ID=gi%7C639438590%7Cref%7CYP_009030256.1%7C;Parent=biopygen40 -Merlin_3 blast protein_match 1 314 3.78835e-158 . . ID=biopygen41;accession=YP_006986749;description=baseplate tail tube initiator %5BEnterobacteria phage vB_EcoM_ACG-C40%5D;hit_id=gi%7C414086560%7Cref%7CYP_006986749.1%7C;hit_titles=gi%7C414086560%7Cref%7CYP_006986749.1%7C baseplate tail tube initiator %5BEnterobacteria phage vB_EcoM_ACG-C40%5D,gi%7C383396341%7Cgb%7CAFH20157.1%7C baseplate tail tube initiator %5BEnterobacteria phage vB_EcoM_ACG-C40%5D;length=321 -Merlin_3 blast match_part 1 38 . . . Gap=M38;ID=gi%7C414086560%7Cref%7CYP_006986749.1%7C;Parent=biopygen41 -Merlin_3 blast match_part 46 62 . . . Gap=M17;ID=gi%7C414086560%7Cref%7CYP_006986749.1%7C;Parent=biopygen41 -Merlin_3 blast match_part 66 264 . . . Gap=M199;ID=gi%7C414086560%7Cref%7CYP_006986749.1%7C;Parent=biopygen41 -Merlin_3 blast match_part 268 274 . . . Gap=M7;ID=gi%7C414086560%7Cref%7CYP_006986749.1%7C;Parent=biopygen41 -Merlin_3 blast match_part 280 301 . . . Gap=M22;ID=gi%7C414086560%7Cref%7CYP_006986749.1%7C;Parent=biopygen41 -Merlin_3 blast match_part 306 313 . . . Gap=M8;ID=gi%7C414086560%7Cref%7CYP_006986749.1%7C;Parent=biopygen41 -Merlin_3 blast protein_match 1 314 6.12348e-158 . . ID=biopygen42;accession=YP_002854528;description=gp54 base plate-tail tube initiator %5BEnterobacteria phage RB14%5D;hit_id=gi%7C228861507%7Cref%7CYP_002854528.1%7C;hit_titles=gi%7C228861507%7Cref%7CYP_002854528.1%7C gp54 base plate-tail tube initiator %5BEnterobacteria phage RB14%5D,gi%7C227438523%7Cgb%7CACP30836.1%7C gp54 base plate-tail tube initiator %5BEnterobacteria phage RB14%5D;length=321 -Merlin_3 blast match_part 1 38 . . . Gap=M38;ID=gi%7C228861507%7Cref%7CYP_002854528.1%7C;Parent=biopygen42 -Merlin_3 blast match_part 46 62 . . . Gap=M17;ID=gi%7C228861507%7Cref%7CYP_002854528.1%7C;Parent=biopygen42 -Merlin_3 blast match_part 66 274 . . . Gap=M209;ID=gi%7C228861507%7Cref%7CYP_002854528.1%7C;Parent=biopygen42 -Merlin_3 blast match_part 280 301 . . . Gap=M22;ID=gi%7C228861507%7Cref%7CYP_002854528.1%7C;Parent=biopygen42 -Merlin_3 blast match_part 306 313 . . . Gap=M8;ID=gi%7C228861507%7Cref%7CYP_002854528.1%7C;Parent=biopygen42 -Merlin_3 blast protein_match 1 301 4.45165e-157 . . ID=biopygen43;accession=YP_009030801;description=baseplate tail tube initiator %5BEscherichia phage e11/2%5D;hit_id=gi%7C639438844%7Cref%7CYP_009030801.1%7C;hit_titles=gi%7C639438844%7Cref%7CYP_009030801.1%7C baseplate tail tube initiator %5BEscherichia phage e11/2%5D,gi%7C628971672%7Cgb%7CAHY83394.1%7C baseplate tail tube initiator %5BEscherichia phage e11/2%5D;length=307 -Merlin_3 blast match_part 1 38 . . . Gap=M38;ID=gi%7C639438844%7Cref%7CYP_009030801.1%7C;Parent=biopygen43 -Merlin_3 blast match_part 46 62 . . . Gap=M17;ID=gi%7C639438844%7Cref%7CYP_009030801.1%7C;Parent=biopygen43 -Merlin_3 blast match_part 66 276 . . . Gap=M211;ID=gi%7C639438844%7Cref%7CYP_009030801.1%7C;Parent=biopygen43 -Merlin_3 blast match_part 280 300 . . . Gap=M21;ID=gi%7C639438844%7Cref%7CYP_009030801.1%7C;Parent=biopygen43 -Merlin_3 blast protein_match 1 314 8.55241e-152 . . ID=biopygen44;accession=NP_049807;description=gp54 baseplate tail tube initiator %5BEnterobacteria phage T4%5D;hit_id=gi%7C9632659%7Cref%7CNP_049807.1%7C;hit_titles=gi%7C9632659%7Cref%7CNP_049807.1%7C gp54 baseplate tail tube initiator %5BEnterobacteria phage T4%5D,gi%7C138062%7Csp%7CP13341.1%7CVG54_BPT4 RecName: Full%3DTail-tube assembly protein Gp54 %5BEnterobacteria phage T4%5D,gi%7C5354283%7Cgb%7CAAD42490.1%7CAF158101_77 gp54 baseplate tail tube initiator %5BEnterobacteria phage T4%5D,gi%7C215948%7Cgb%7CAAA32540.1%7C tail-tube assembly protein %5BEnterobacteria phage T4%5D;length=320 -Merlin_3 blast match_part 1 38 . . . Gap=M38;ID=gi%7C9632659%7Cref%7CNP_049807.1%7C;Parent=biopygen44 -Merlin_3 blast match_part 46 62 . . . Gap=M17;ID=gi%7C9632659%7Cref%7CNP_049807.1%7C;Parent=biopygen44 -Merlin_3 blast match_part 66 217 . . . Gap=M152;ID=gi%7C9632659%7Cref%7CNP_049807.1%7C;Parent=biopygen44 -Merlin_3 blast match_part 222 276 . . . Gap=M55;ID=gi%7C9632659%7Cref%7CNP_049807.1%7C;Parent=biopygen44 -Merlin_3 blast match_part 280 301 . . . Gap=M22;ID=gi%7C9632659%7Cref%7CNP_049807.1%7C;Parent=biopygen44 -Merlin_3 blast match_part 306 313 . . . Gap=M8;ID=gi%7C9632659%7Cref%7CNP_049807.1%7C;Parent=biopygen44 -Merlin_3 blast protein_match 1 307 4.51456e-137 . . ID=biopygen45;accession=YP_001469528;description=gp54 baseplate tail tube initiator %5BEnterobacteria phage Phi1%5D;hit_id=gi%7C157311485%7Cref%7CYP_001469528.1%7C;hit_titles=gi%7C157311485%7Cref%7CYP_001469528.1%7C gp54 baseplate tail tube initiator %5BEnterobacteria phage Phi1%5D,gi%7C149380689%7Cgb%7CABR24694.1%7C gp54 baseplate tail tube initiator %5BEnterobacteria phage Phi1%5D;length=310 -Merlin_3 blast match_part 1 70 . . . Gap=M70;ID=gi%7C157311485%7Cref%7CYP_001469528.1%7C;Parent=biopygen45 -Merlin_3 blast match_part 74 222 . . . Gap=M149;ID=gi%7C157311485%7Cref%7CYP_001469528.1%7C;Parent=biopygen45 -Merlin_3 blast match_part 226 272 . . . Gap=M47;ID=gi%7C157311485%7Cref%7CYP_001469528.1%7C;Parent=biopygen45 -Merlin_3 blast match_part 280 295 . . . Gap=M16;ID=gi%7C157311485%7Cref%7CYP_001469528.1%7C;Parent=biopygen45 -Merlin_3 blast match_part 300 306 . . . Gap=M7;ID=gi%7C157311485%7Cref%7CYP_001469528.1%7C;Parent=biopygen45 -Merlin_3 blast protein_match 1 307 4.9258e-137 . . ID=biopygen46;accession=NP_891752;description=baseplate tail tube initiator %5BEnterobacteria phage RB49%5D;hit_id=gi%7C33620696%7Cref%7CNP_891752.1%7C;hit_titles=gi%7C33620696%7Cref%7CNP_891752.1%7C baseplate tail tube initiator %5BEnterobacteria phage RB49%5D,gi%7C33438566%7Cgb%7CAAL15122.2%7C baseplate tail tube initiator %5BEnterobacteria phage RB49%5D;length=310 -Merlin_3 blast match_part 1 70 . . . Gap=M70;ID=gi%7C33620696%7Cref%7CNP_891752.1%7C;Parent=biopygen46 -Merlin_3 blast match_part 74 222 . . . Gap=M149;ID=gi%7C33620696%7Cref%7CNP_891752.1%7C;Parent=biopygen46 -Merlin_3 blast match_part 226 272 . . . Gap=M47;ID=gi%7C33620696%7Cref%7CNP_891752.1%7C;Parent=biopygen46 -Merlin_3 blast match_part 280 295 . . . Gap=M16;ID=gi%7C33620696%7Cref%7CNP_891752.1%7C;Parent=biopygen46 -Merlin_3 blast match_part 300 306 . . . Gap=M7;ID=gi%7C33620696%7Cref%7CNP_891752.1%7C;Parent=biopygen46 -Merlin_3 blast protein_match 1 307 1.02225e-136 . . ID=biopygen47;accession=YP_002922260;description=baseplate tail tube initiator %5BEnterobacteria phage JSE%5D;hit_id=gi%7C238695066%7Cref%7CYP_002922260.1%7C;hit_titles=gi%7C238695066%7Cref%7CYP_002922260.1%7C baseplate tail tube initiator %5BEnterobacteria phage JSE%5D,gi%7C220029202%7Cgb%7CACL78137.1%7C baseplate tail tube initiator %5BEnterobacteria phage JSE%5D;length=310 -Merlin_3 blast match_part 1 70 . . . Gap=M70;ID=gi%7C238695066%7Cref%7CYP_002922260.1%7C;Parent=biopygen47 -Merlin_3 blast match_part 74 222 . . . Gap=M149;ID=gi%7C238695066%7Cref%7CYP_002922260.1%7C;Parent=biopygen47 -Merlin_3 blast match_part 226 272 . . . Gap=M47;ID=gi%7C238695066%7Cref%7CYP_002922260.1%7C;Parent=biopygen47 -Merlin_3 blast match_part 280 295 . . . Gap=M16;ID=gi%7C238695066%7Cref%7CYP_002922260.1%7C;Parent=biopygen47 -Merlin_3 blast match_part 300 306 . . . Gap=M7;ID=gi%7C238695066%7Cref%7CYP_002922260.1%7C;Parent=biopygen47 -Merlin_3 blast protein_match -3 301 9.23112e-129 . . ID=biopygen48;accession=YP_004009816;description=gp54 baseplate tail tube initiator %5BAcinetobacter phage Acj61%5D;hit_id=gi%7C311992949%7Cref%7CYP_004009816.1%7C;hit_titles=gi%7C311992949%7Cref%7CYP_004009816.1%7C gp54 baseplate tail tube initiator %5BAcinetobacter phage Acj61%5D,gi%7C295815238%7Cgb%7CADG36164.1%7C gp54 baseplate tail tube initiator %5BAcinetobacter phage Acj61%5D;length=301 -Merlin_3 blast match_part 3 45 . . . Gap=M43;ID=gi%7C311992949%7Cref%7CYP_004009816.1%7C;Parent=biopygen48 -Merlin_3 blast match_part 49 50 . . . Gap=M2;ID=gi%7C311992949%7Cref%7CYP_004009816.1%7C;Parent=biopygen48 -Merlin_3 blast match_part 54 222 . . . Gap=M169;ID=gi%7C311992949%7Cref%7CYP_004009816.1%7C;Parent=biopygen48 -Merlin_3 blast match_part 226 268 . . . Gap=M43;ID=gi%7C311992949%7Cref%7CYP_004009816.1%7C;Parent=biopygen48 -Merlin_3 blast match_part 273 273 . . . Gap=M1;ID=gi%7C311992949%7Cref%7CYP_004009816.1%7C;Parent=biopygen48 -Merlin_3 blast match_part 278 300 . . . Gap=M23;ID=gi%7C311992949%7Cref%7CYP_004009816.1%7C;Parent=biopygen48 -Merlin_3 blast protein_match 1 265 1.13007e-128 . . ID=biopygen49;accession=YP_656411;description=gp54 base plate-tail tube initiator %5BAeromonas phage 25%5D;hit_id=gi%7C109290162%7Cref%7CYP_656411.1%7C;hit_titles=gi%7C109290162%7Cref%7CYP_656411.1%7C gp54 base plate-tail tube initiator %5BAeromonas phage 25%5D,gi%7C104345835%7Cgb%7CABF72735.1%7C gp54 base plate-tail tube initiator %5BAeromonas phage 25%5D;length=285 -Merlin_3 blast match_part 1 50 . . . Gap=M8 I1 M41;ID=gi%7C109290162%7Cref%7CYP_656411.1%7C;Parent=biopygen49 -Merlin_3 blast match_part 54 115 . . . Gap=M62;ID=gi%7C109290162%7Cref%7CYP_656411.1%7C;Parent=biopygen49 -Merlin_3 blast match_part 121 256 . . . Gap=M136;ID=gi%7C109290162%7Cref%7CYP_656411.1%7C;Parent=biopygen49 -Merlin_3 blast match_part 261 264 . . . Gap=M4;ID=gi%7C109290162%7Cref%7CYP_656411.1%7C;Parent=biopygen49 -Merlin_3 blast protein_match 1 265 1.24647e-128 . . ID=biopygen50;accession=YP_007010859;description=base plate-tail tube initiator %5BAeromonas phage Aes508%5D;hit_id=gi%7C423262260%7Cref%7CYP_007010859.1%7C;hit_titles=gi%7C423262260%7Cref%7CYP_007010859.1%7C base plate-tail tube initiator %5BAeromonas phage Aes508%5D,gi%7C402762138%7Cgb%7CAFQ97252.1%7C base plate-tail tube initiator %5BAeromonas phage Aes508%5D;length=285 -Merlin_3 blast match_part 1 50 . . . Gap=M8 I1 M41;ID=gi%7C423262260%7Cref%7CYP_007010859.1%7C;Parent=biopygen50 -Merlin_3 blast match_part 54 115 . . . Gap=M62;ID=gi%7C423262260%7Cref%7CYP_007010859.1%7C;Parent=biopygen50 -Merlin_3 blast match_part 121 256 . . . Gap=M136;ID=gi%7C423262260%7Cref%7CYP_007010859.1%7C;Parent=biopygen50 -Merlin_3 blast match_part 261 264 . . . Gap=M4;ID=gi%7C423262260%7Cref%7CYP_007010859.1%7C;Parent=biopygen50 -Merlin_3 blast protein_match 1 265 3.21556e-128 . . ID=biopygen51;accession=YP_007677898;description=baseplate-tail tube initiator %5BAeromonas phage Aes012%5D;hit_id=gi%7C472438118%7Cref%7CYP_007677898.1%7C;hit_titles=gi%7C472438118%7Cref%7CYP_007677898.1%7C baseplate-tail tube initiator %5BAeromonas phage Aes012%5D,gi%7C395653256%7Cgb%7CAFN69811.1%7C baseplate-tail tube initiator %5BAeromonas phage Aes012%5D;length=285 -Merlin_3 blast match_part 1 50 . . . Gap=M8 I1 M41;ID=gi%7C472438118%7Cref%7CYP_007677898.1%7C;Parent=biopygen51 -Merlin_3 blast match_part 54 115 . . . Gap=M62;ID=gi%7C472438118%7Cref%7CYP_007677898.1%7C;Parent=biopygen51 -Merlin_3 blast match_part 121 256 . . . Gap=M136;ID=gi%7C472438118%7Cref%7CYP_007677898.1%7C;Parent=biopygen51 -Merlin_3 blast match_part 261 264 . . . Gap=M4;ID=gi%7C472438118%7Cref%7CYP_007677898.1%7C;Parent=biopygen51 -Merlin_3 blast protein_match 1 265 1.7397e-127 . . ID=biopygen52;accession=AFQ22672;description=tail assembly protein %5BStenotrophomonas phage IME13%5D;hit_id=gi%7C401824982%7Cgb%7CAFQ22672.1%7C;hit_titles=gi%7C401824982%7Cgb%7CAFQ22672.1%7C tail assembly protein %5BStenotrophomonas phage IME13%5D;length=285 -Merlin_3 blast match_part 1 50 . . . Gap=M8 I1 M41;ID=gi%7C401824982%7Cgb%7CAFQ22672.1%7C;Parent=biopygen52 -Merlin_3 blast match_part 54 115 . . . Gap=M62;ID=gi%7C401824982%7Cgb%7CAFQ22672.1%7C;Parent=biopygen52 -Merlin_3 blast match_part 121 256 . . . Gap=M136;ID=gi%7C401824982%7Cgb%7CAFQ22672.1%7C;Parent=biopygen52 -Merlin_3 blast match_part 261 264 . . . Gap=M4;ID=gi%7C401824982%7Cgb%7CAFQ22672.1%7C;Parent=biopygen52 -Merlin_3 blast protein_match 1 265 9.89077e-126 . . ID=biopygen53;accession=NP_932540;description=baseplate subunit %5BAeromonas phage 44RR2.8t%5D;hit_id=gi%7C37651666%7Cref%7CNP_932540.1%7C;hit_titles=gi%7C37651666%7Cref%7CNP_932540.1%7C baseplate subunit %5BAeromonas phage 44RR2.8t%5D,gi%7C66391987%7Cref%7CYP_238912.1%7C baseplate tail tube initiator %5BAeromonas phage 31%5D,gi%7C34732966%7Cgb%7CAAQ81503.1%7C baseplate tail tube initiator %5BAeromonas phage 44RR2.8t%5D,gi%7C62114824%7Cgb%7CAAX63672.1%7C gp54 %5BAeromonas phage 31%5D;length=285 -Merlin_3 blast match_part 1 50 . . . Gap=M8 I1 M41;ID=gi%7C37651666%7Cref%7CNP_932540.1%7C;Parent=biopygen53 -Merlin_3 blast match_part 54 115 . . . Gap=M62;ID=gi%7C37651666%7Cref%7CNP_932540.1%7C;Parent=biopygen53 -Merlin_3 blast match_part 121 254 . . . Gap=M134;ID=gi%7C37651666%7Cref%7CNP_932540.1%7C;Parent=biopygen53 -Merlin_3 blast match_part 261 264 . . . Gap=M4;ID=gi%7C37651666%7Cref%7CNP_932540.1%7C;Parent=biopygen53 -Merlin_3 blast protein_match -5 274 9.8716e-118 . . ID=biopygen54;accession=YP_006489089;description=baseplate tail tube initiator %5BAcinetobacter phage ZZ1%5D;hit_id=gi%7C392973131%7Cref%7CYP_006489089.1%7C;hit_titles=gi%7C392973131%7Cref%7CYP_006489089.1%7C baseplate tail tube initiator %5BAcinetobacter phage ZZ1%5D,gi%7C390058272%7Cgb%7CAFL47726.1%7C baseplate tail tube initiator %5BAcinetobacter phage ZZ1%5D;length=296 -Merlin_3 blast match_part 3 38 . . . Gap=M36;ID=gi%7C392973131%7Cref%7CYP_006489089.1%7C;Parent=biopygen54 -Merlin_3 blast match_part 47 49 . . . Gap=M3;ID=gi%7C392973131%7Cref%7CYP_006489089.1%7C;Parent=biopygen54 -Merlin_3 blast match_part 54 59 . . . Gap=M6;ID=gi%7C392973131%7Cref%7CYP_006489089.1%7C;Parent=biopygen54 -Merlin_3 blast match_part 65 269 . . . Gap=M205;ID=gi%7C392973131%7Cref%7CYP_006489089.1%7C;Parent=biopygen54 -Merlin_3 blast match_part 273 273 . . . Gap=M1;ID=gi%7C392973131%7Cref%7CYP_006489089.1%7C;Parent=biopygen54 -Merlin_3 blast protein_match -5 269 3.7432e-114 . . ID=biopygen55;accession=YP_004010340;description=gp54 baseplate tail tube initiator %5BAcinetobacter phage Acj9%5D;hit_id=gi%7C311993475%7Cref%7CYP_004010340.1%7C;hit_titles=gi%7C311993475%7Cref%7CYP_004010340.1%7C gp54 baseplate tail tube initiator %5BAcinetobacter phage Acj9%5D,gi%7C295917432%7Cgb%7CADG60103.1%7C gp54 baseplate tail tube initiator %5BAcinetobacter phage Acj9%5D;length=294 -Merlin_3 blast match_part 2 38 . . . Gap=M37;ID=gi%7C311993475%7Cref%7CYP_004010340.1%7C;Parent=biopygen55 -Merlin_3 blast match_part 47 49 . . . Gap=M3;ID=gi%7C311993475%7Cref%7CYP_004010340.1%7C;Parent=biopygen55 -Merlin_3 blast match_part 54 59 . . . Gap=M6;ID=gi%7C311993475%7Cref%7CYP_004010340.1%7C;Parent=biopygen55 -Merlin_3 blast match_part 65 113 . . . Gap=M49;ID=gi%7C311993475%7Cref%7CYP_004010340.1%7C;Parent=biopygen55 -Merlin_3 blast match_part 118 254 . . . Gap=M137;ID=gi%7C311993475%7Cref%7CYP_004010340.1%7C;Parent=biopygen55 -Merlin_3 blast match_part 258 268 . . . Gap=M11;ID=gi%7C311993475%7Cref%7CYP_004010340.1%7C;Parent=biopygen55 -Merlin_3 blast protein_match 0 264 2.8435e-95 . . ID=biopygen56;accession=YP_004009561;description=gp54 baseplate-tail tube initiator protein %5BAcinetobacter phage Ac42%5D;hit_id=gi%7C311992693%7Cref%7CYP_004009561.1%7C;hit_titles=gi%7C311992693%7Cref%7CYP_004009561.1%7C gp54 baseplate-tail tube initiator protein %5BAcinetobacter phage Ac42%5D,gi%7C298684476%7Cgb%7CADI96437.1%7C gp54 baseplate-tail tube initiator protein %5BAcinetobacter phage Ac42%5D;length=282 -Merlin_3 blast match_part 3 53 . . . Gap=M5 I1 M40 I1 M4;ID=gi%7C311992693%7Cref%7CYP_004009561.1%7C;Parent=biopygen56 -Merlin_3 blast match_part 60 62 . . . Gap=M3;ID=gi%7C311992693%7Cref%7CYP_004009561.1%7C;Parent=biopygen56 -Merlin_3 blast match_part 67 67 . . . Gap=M1;ID=gi%7C311992693%7Cref%7CYP_004009561.1%7C;Parent=biopygen56 -Merlin_3 blast match_part 71 71 . . . Gap=M1;ID=gi%7C311992693%7Cref%7CYP_004009561.1%7C;Parent=biopygen56 -Merlin_3 blast match_part 77 116 . . . Gap=M40;ID=gi%7C311992693%7Cref%7CYP_004009561.1%7C;Parent=biopygen56 -Merlin_3 blast match_part 120 263 . . . Gap=M144;ID=gi%7C311992693%7Cref%7CYP_004009561.1%7C;Parent=biopygen56 -Merlin_3 blast protein_match 0 264 2.61741e-86 . . ID=biopygen57;accession=YP_004300778;description=gp54 baseplate tail tube initiator %5BAcinetobacter phage 133%5D;hit_id=gi%7C326536337%7Cref%7CYP_004300778.1%7C;hit_titles=gi%7C326536337%7Cref%7CYP_004300778.1%7C gp54 baseplate tail tube initiator %5BAcinetobacter phage 133%5D,gi%7C299483418%7Cgb%7CADJ19512.1%7C gp54 baseplate tail tube initiator %5BAcinetobacter phage 133%5D;length=276 -Merlin_3 blast match_part 4 10 . . . Gap=M7;ID=gi%7C326536337%7Cref%7CYP_004300778.1%7C;Parent=biopygen57 -Merlin_3 blast match_part 15 41 . . . Gap=M27;ID=gi%7C326536337%7Cref%7CYP_004300778.1%7C;Parent=biopygen57 -Merlin_3 blast match_part 47 60 . . . Gap=M3 I1 M5 I1 M4;ID=gi%7C326536337%7Cref%7CYP_004300778.1%7C;Parent=biopygen57 -Merlin_3 blast match_part 67 77 . . . Gap=M11;ID=gi%7C326536337%7Cref%7CYP_004300778.1%7C;Parent=biopygen57 -Merlin_3 blast match_part 81 81 . . . Gap=M1;ID=gi%7C326536337%7Cref%7CYP_004300778.1%7C;Parent=biopygen57 -Merlin_3 blast match_part 87 116 . . . Gap=M30;ID=gi%7C326536337%7Cref%7CYP_004300778.1%7C;Parent=biopygen57 -Merlin_3 blast match_part 120 250 . . . Gap=M131;ID=gi%7C326536337%7Cref%7CYP_004300778.1%7C;Parent=biopygen57 -Merlin_3 blast match_part 254 263 . . . Gap=M10;ID=gi%7C326536337%7Cref%7CYP_004300778.1%7C;Parent=biopygen57 -Merlin_3 blast protein_match 92 265 3.48018e-85 . . ID=biopygen58;accession=YP_003969098;description=unnamed protein product %5BAeromonas phage phiAS4%5D;hit_id=gi%7C310722274%7Cref%7CYP_003969098.1%7C;hit_titles=gi%7C310722274%7Cref%7CYP_003969098.1%7C unnamed protein product %5BAeromonas phage phiAS4%5D,gi%7C306021117%7Cgb%7CADM79652.1%7C baseplate tail tube initiator %5BAeromonas phage phiAS4%5D;length=195 -Merlin_3 blast match_part 92 115 . . . Gap=M24;ID=gi%7C310722274%7Cref%7CYP_003969098.1%7C;Parent=biopygen58 -Merlin_3 blast match_part 121 256 . . . Gap=M136;ID=gi%7C310722274%7Cref%7CYP_003969098.1%7C;Parent=biopygen58 -Merlin_3 blast match_part 261 264 . . . Gap=M4;ID=gi%7C310722274%7Cref%7CYP_003969098.1%7C;Parent=biopygen58 -Merlin_3 blast protein_match 0 248 1.63718e-43 . . ID=biopygen59;accession=YP_239082;description=gp54 baseplate-tail tube initiator %5BEnterobacteria phage RB43%5D;hit_id=gi%7C66391557%7Cref%7CYP_239082.1%7C;hit_titles=gi%7C66391557%7Cref%7CYP_239082.1%7C gp54 baseplate-tail tube initiator %5BEnterobacteria phage RB43%5D,gi%7C62288645%7Cgb%7CAAX78628.1%7C gp54 baseplate-tail tube initiator %5BEnterobacteria phage RB43%5D,gi%7C406718847%7Cemb%7CCCL97572.1%7C protein of unknown function %5BEnterobacteria phage RB43%5D,gi%7C415434115%7Cemb%7CCCK73955.1%7C protein of unknown function %5BEnterobacteria phage RB43%5D;length=287 -Merlin_3 blast match_part 3 9 . . . Gap=M7;ID=gi%7C66391557%7Cref%7CYP_239082.1%7C;Parent=biopygen59 -Merlin_3 blast match_part 13 33 . . . Gap=M21;ID=gi%7C66391557%7Cref%7CYP_239082.1%7C;Parent=biopygen59 -Merlin_3 blast match_part 37 39 . . . Gap=M3;ID=gi%7C66391557%7Cref%7CYP_239082.1%7C;Parent=biopygen59 -Merlin_3 blast match_part 43 54 . . . Gap=M12;ID=gi%7C66391557%7Cref%7CYP_239082.1%7C;Parent=biopygen59 -Merlin_3 blast match_part 64 72 . . . Gap=M9;ID=gi%7C66391557%7Cref%7CYP_239082.1%7C;Parent=biopygen59 -Merlin_3 blast match_part 77 103 . . . Gap=M10 I1 M16;ID=gi%7C66391557%7Cref%7CYP_239082.1%7C;Parent=biopygen59 -Merlin_3 blast match_part 107 115 . . . Gap=M9;ID=gi%7C66391557%7Cref%7CYP_239082.1%7C;Parent=biopygen59 -Merlin_3 blast match_part 122 131 . . . Gap=M10;ID=gi%7C66391557%7Cref%7CYP_239082.1%7C;Parent=biopygen59 -Merlin_3 blast match_part 135 142 . . . Gap=M8;ID=gi%7C66391557%7Cref%7CYP_239082.1%7C;Parent=biopygen59 -Merlin_3 blast match_part 146 154 . . . Gap=M9;ID=gi%7C66391557%7Cref%7CYP_239082.1%7C;Parent=biopygen59 -Merlin_3 blast match_part 158 172 . . . Gap=M15;ID=gi%7C66391557%7Cref%7CYP_239082.1%7C;Parent=biopygen59 -Merlin_3 blast match_part 176 190 . . . Gap=M15;ID=gi%7C66391557%7Cref%7CYP_239082.1%7C;Parent=biopygen59 -Merlin_3 blast match_part 194 222 . . . Gap=M29;ID=gi%7C66391557%7Cref%7CYP_239082.1%7C;Parent=biopygen59 -Merlin_3 blast match_part 226 247 . . . Gap=M22;ID=gi%7C66391557%7Cref%7CYP_239082.1%7C;Parent=biopygen59 -Merlin_3 blast protein_match 0 248 6.9702e-43 . . ID=biopygen60;accession=YP_003858397;description=gp54 baseplate-tail tube initiator %5BEnterobacteria phage RB16%5D;hit_id=gi%7C304373652%7Cref%7CYP_003858397.1%7C;hit_titles=gi%7C304373652%7Cref%7CYP_003858397.1%7C gp54 baseplate-tail tube initiator %5BEnterobacteria phage RB16%5D,gi%7C299829608%7Cgb%7CADJ55401.1%7C gp54 baseplate-tail tube initiator %5BEnterobacteria phage RB16%5D;length=287 -Merlin_3 blast match_part 3 9 . . . Gap=M7;ID=gi%7C304373652%7Cref%7CYP_003858397.1%7C;Parent=biopygen60 -Merlin_3 blast match_part 13 33 . . . Gap=M21;ID=gi%7C304373652%7Cref%7CYP_003858397.1%7C;Parent=biopygen60 -Merlin_3 blast match_part 37 39 . . . Gap=M3;ID=gi%7C304373652%7Cref%7CYP_003858397.1%7C;Parent=biopygen60 -Merlin_3 blast match_part 43 54 . . . Gap=M12;ID=gi%7C304373652%7Cref%7CYP_003858397.1%7C;Parent=biopygen60 -Merlin_3 blast match_part 64 72 . . . Gap=M9;ID=gi%7C304373652%7Cref%7CYP_003858397.1%7C;Parent=biopygen60 -Merlin_3 blast match_part 77 103 . . . Gap=M10 I1 M16;ID=gi%7C304373652%7Cref%7CYP_003858397.1%7C;Parent=biopygen60 -Merlin_3 blast match_part 107 115 . . . Gap=M9;ID=gi%7C304373652%7Cref%7CYP_003858397.1%7C;Parent=biopygen60 -Merlin_3 blast match_part 122 131 . . . Gap=M10;ID=gi%7C304373652%7Cref%7CYP_003858397.1%7C;Parent=biopygen60 -Merlin_3 blast match_part 135 142 . . . Gap=M8;ID=gi%7C304373652%7Cref%7CYP_003858397.1%7C;Parent=biopygen60 -Merlin_3 blast match_part 146 154 . . . Gap=M9;ID=gi%7C304373652%7Cref%7CYP_003858397.1%7C;Parent=biopygen60 -Merlin_3 blast match_part 158 172 . . . Gap=M15;ID=gi%7C304373652%7Cref%7CYP_003858397.1%7C;Parent=biopygen60 -Merlin_3 blast match_part 176 190 . . . Gap=M15;ID=gi%7C304373652%7Cref%7CYP_003858397.1%7C;Parent=biopygen60 -Merlin_3 blast match_part 194 222 . . . Gap=M29;ID=gi%7C304373652%7Cref%7CYP_003858397.1%7C;Parent=biopygen60 -Merlin_3 blast match_part 226 247 . . . Gap=M22;ID=gi%7C304373652%7Cref%7CYP_003858397.1%7C;Parent=biopygen60 -Merlin_3 blast protein_match 0 248 1.48333e-42 . . ID=biopygen61;accession=YP_008060625;description=baseplate-tail tube initiator %5BEscherichia phage Lw1%5D;hit_id=gi%7C509141760%7Cref%7CYP_008060625.1%7C;hit_titles=gi%7C509141760%7Cref%7CYP_008060625.1%7C baseplate-tail tube initiator %5BEscherichia phage Lw1%5D,gi%7C479258587%7Cgb%7CAGJ71510.1%7C baseplate-tail tube initiator %5BEscherichia phage Lw1%5D;length=287 -Merlin_3 blast match_part 3 9 . . . Gap=M7;ID=gi%7C509141760%7Cref%7CYP_008060625.1%7C;Parent=biopygen61 -Merlin_3 blast match_part 13 33 . . . Gap=M21;ID=gi%7C509141760%7Cref%7CYP_008060625.1%7C;Parent=biopygen61 -Merlin_3 blast match_part 37 39 . . . Gap=M3;ID=gi%7C509141760%7Cref%7CYP_008060625.1%7C;Parent=biopygen61 -Merlin_3 blast match_part 43 54 . . . Gap=M12;ID=gi%7C509141760%7Cref%7CYP_008060625.1%7C;Parent=biopygen61 -Merlin_3 blast match_part 64 72 . . . Gap=M9;ID=gi%7C509141760%7Cref%7CYP_008060625.1%7C;Parent=biopygen61 -Merlin_3 blast match_part 77 103 . . . Gap=M10 I1 M16;ID=gi%7C509141760%7Cref%7CYP_008060625.1%7C;Parent=biopygen61 -Merlin_3 blast match_part 107 115 . . . Gap=M9;ID=gi%7C509141760%7Cref%7CYP_008060625.1%7C;Parent=biopygen61 -Merlin_3 blast match_part 122 131 . . . Gap=M10;ID=gi%7C509141760%7Cref%7CYP_008060625.1%7C;Parent=biopygen61 -Merlin_3 blast match_part 135 142 . . . Gap=M8;ID=gi%7C509141760%7Cref%7CYP_008060625.1%7C;Parent=biopygen61 -Merlin_3 blast match_part 146 154 . . . Gap=M9;ID=gi%7C509141760%7Cref%7CYP_008060625.1%7C;Parent=biopygen61 -Merlin_3 blast match_part 158 172 . . . Gap=M15;ID=gi%7C509141760%7Cref%7CYP_008060625.1%7C;Parent=biopygen61 -Merlin_3 blast match_part 176 190 . . . Gap=M15;ID=gi%7C509141760%7Cref%7CYP_008060625.1%7C;Parent=biopygen61 -Merlin_3 blast match_part 194 222 . . . Gap=M29;ID=gi%7C509141760%7Cref%7CYP_008060625.1%7C;Parent=biopygen61 -Merlin_3 blast match_part 226 247 . . . Gap=M22;ID=gi%7C509141760%7Cref%7CYP_008060625.1%7C;Parent=biopygen61 -Merlin_3 blast protein_match 0 248 3.02584e-42 . . ID=biopygen62;accession=YP_006986374;description=baseplate-tail tube initiator %5BCronobacter phage vB_CsaM_GAP161%5D;hit_id=gi%7C414086184%7Cref%7CYP_006986374.1%7C;hit_titles=gi%7C414086184%7Cref%7CYP_006986374.1%7C baseplate-tail tube initiator %5BCronobacter phage vB_CsaM_GAP161%5D,gi%7C378566509%7Cgb%7CAFC22205.1%7C baseplate-tail tube initiator %5BCronobacter phage vB_CsaM_GAP161%5D;length=287 -Merlin_3 blast match_part 3 9 . . . Gap=M7;ID=gi%7C414086184%7Cref%7CYP_006986374.1%7C;Parent=biopygen62 -Merlin_3 blast match_part 13 33 . . . Gap=M21;ID=gi%7C414086184%7Cref%7CYP_006986374.1%7C;Parent=biopygen62 -Merlin_3 blast match_part 37 39 . . . Gap=M3;ID=gi%7C414086184%7Cref%7CYP_006986374.1%7C;Parent=biopygen62 -Merlin_3 blast match_part 43 54 . . . Gap=M12;ID=gi%7C414086184%7Cref%7CYP_006986374.1%7C;Parent=biopygen62 -Merlin_3 blast match_part 64 72 . . . Gap=M9;ID=gi%7C414086184%7Cref%7CYP_006986374.1%7C;Parent=biopygen62 -Merlin_3 blast match_part 77 103 . . . Gap=M10 I1 M16;ID=gi%7C414086184%7Cref%7CYP_006986374.1%7C;Parent=biopygen62 -Merlin_3 blast match_part 107 115 . . . Gap=M9;ID=gi%7C414086184%7Cref%7CYP_006986374.1%7C;Parent=biopygen62 -Merlin_3 blast match_part 122 131 . . . Gap=M10;ID=gi%7C414086184%7Cref%7CYP_006986374.1%7C;Parent=biopygen62 -Merlin_3 blast match_part 135 142 . . . Gap=M8;ID=gi%7C414086184%7Cref%7CYP_006986374.1%7C;Parent=biopygen62 -Merlin_3 blast match_part 146 154 . . . Gap=M9;ID=gi%7C414086184%7Cref%7CYP_006986374.1%7C;Parent=biopygen62 -Merlin_3 blast match_part 158 172 . . . Gap=M15;ID=gi%7C414086184%7Cref%7CYP_006986374.1%7C;Parent=biopygen62 -Merlin_3 blast match_part 176 190 . . . Gap=M15;ID=gi%7C414086184%7Cref%7CYP_006986374.1%7C;Parent=biopygen62 -Merlin_3 blast match_part 194 222 . . . Gap=M29;ID=gi%7C414086184%7Cref%7CYP_006986374.1%7C;Parent=biopygen62 -Merlin_3 blast match_part 227 247 . . . Gap=M21;ID=gi%7C414086184%7Cref%7CYP_006986374.1%7C;Parent=biopygen62 -Merlin_3 blast protein_match 0 248 5.9168e-41 . . ID=biopygen63;accession=YP_007348741;description=baseplate-tail tube initiator %5BKlebsiella phage KP27%5D;hit_id=gi%7C448260647%7Cref%7CYP_007348741.1%7C;hit_titles=gi%7C448260647%7Cref%7CYP_007348741.1%7C baseplate-tail tube initiator %5BKlebsiella phage KP27%5D,gi%7C370343456%7Cgb%7CAEX26585.1%7C baseplate-tail tube initiator %5BKlebsiella phage KP27%5D;length=287 -Merlin_3 blast match_part 4 9 . . . Gap=M6;ID=gi%7C448260647%7Cref%7CYP_007348741.1%7C;Parent=biopygen63 -Merlin_3 blast match_part 13 33 . . . Gap=M21;ID=gi%7C448260647%7Cref%7CYP_007348741.1%7C;Parent=biopygen63 -Merlin_3 blast match_part 37 39 . . . Gap=M3;ID=gi%7C448260647%7Cref%7CYP_007348741.1%7C;Parent=biopygen63 -Merlin_3 blast match_part 43 56 . . . Gap=M14;ID=gi%7C448260647%7Cref%7CYP_007348741.1%7C;Parent=biopygen63 -Merlin_3 blast match_part 61 64 . . . Gap=M4;ID=gi%7C448260647%7Cref%7CYP_007348741.1%7C;Parent=biopygen63 -Merlin_3 blast match_part 68 71 . . . Gap=M4;ID=gi%7C448260647%7Cref%7CYP_007348741.1%7C;Parent=biopygen63 -Merlin_3 blast match_part 78 103 . . . Gap=M1 I1 M7 I1 M16;ID=gi%7C448260647%7Cref%7CYP_007348741.1%7C;Parent=biopygen63 -Merlin_3 blast match_part 107 115 . . . Gap=M9;ID=gi%7C448260647%7Cref%7CYP_007348741.1%7C;Parent=biopygen63 -Merlin_3 blast match_part 122 131 . . . Gap=M10;ID=gi%7C448260647%7Cref%7CYP_007348741.1%7C;Parent=biopygen63 -Merlin_3 blast match_part 135 142 . . . Gap=M8;ID=gi%7C448260647%7Cref%7CYP_007348741.1%7C;Parent=biopygen63 -Merlin_3 blast match_part 146 154 . . . Gap=M9;ID=gi%7C448260647%7Cref%7CYP_007348741.1%7C;Parent=biopygen63 -Merlin_3 blast match_part 158 172 . . . Gap=M15;ID=gi%7C448260647%7Cref%7CYP_007348741.1%7C;Parent=biopygen63 -Merlin_3 blast match_part 176 190 . . . Gap=M15;ID=gi%7C448260647%7Cref%7CYP_007348741.1%7C;Parent=biopygen63 -Merlin_3 blast match_part 194 222 . . . Gap=M29;ID=gi%7C448260647%7Cref%7CYP_007348741.1%7C;Parent=biopygen63 -Merlin_3 blast match_part 228 247 . . . Gap=M20;ID=gi%7C448260647%7Cref%7CYP_007348741.1%7C;Parent=biopygen63 -Merlin_3 blast protein_match -1 248 1.15825e-40 . . ID=biopygen64;accession=YP_003579966;description=gp54 baseplate subunit %5BKlebsiella phage KP15%5D;hit_id=gi%7C294661513%7Cref%7CYP_003579966.1%7C;hit_titles=gi%7C294661513%7Cref%7CYP_003579966.1%7C gp54 baseplate subunit %5BKlebsiella phage KP15%5D,gi%7C292660674%7Cgb%7CADE34922.1%7C gp54 baseplate subunit %5BKlebsiella phage KP15%5D;length=288 -Merlin_3 blast match_part 4 9 . . . Gap=M6;ID=gi%7C294661513%7Cref%7CYP_003579966.1%7C;Parent=biopygen64 -Merlin_3 blast match_part 13 33 . . . Gap=M21;ID=gi%7C294661513%7Cref%7CYP_003579966.1%7C;Parent=biopygen64 -Merlin_3 blast match_part 37 39 . . . Gap=M3;ID=gi%7C294661513%7Cref%7CYP_003579966.1%7C;Parent=biopygen64 -Merlin_3 blast match_part 43 56 . . . Gap=M14;ID=gi%7C294661513%7Cref%7CYP_003579966.1%7C;Parent=biopygen64 -Merlin_3 blast match_part 61 64 . . . Gap=M4;ID=gi%7C294661513%7Cref%7CYP_003579966.1%7C;Parent=biopygen64 -Merlin_3 blast match_part 68 71 . . . Gap=M4;ID=gi%7C294661513%7Cref%7CYP_003579966.1%7C;Parent=biopygen64 -Merlin_3 blast match_part 78 103 . . . Gap=M1 I1 M7 I1 M16;ID=gi%7C294661513%7Cref%7CYP_003579966.1%7C;Parent=biopygen64 -Merlin_3 blast match_part 107 115 . . . Gap=M9;ID=gi%7C294661513%7Cref%7CYP_003579966.1%7C;Parent=biopygen64 -Merlin_3 blast match_part 122 131 . . . Gap=M10;ID=gi%7C294661513%7Cref%7CYP_003579966.1%7C;Parent=biopygen64 -Merlin_3 blast match_part 135 142 . . . Gap=M8;ID=gi%7C294661513%7Cref%7CYP_003579966.1%7C;Parent=biopygen64 -Merlin_3 blast match_part 146 154 . . . Gap=M9;ID=gi%7C294661513%7Cref%7CYP_003579966.1%7C;Parent=biopygen64 -Merlin_3 blast match_part 158 172 . . . Gap=M15;ID=gi%7C294661513%7Cref%7CYP_003579966.1%7C;Parent=biopygen64 -Merlin_3 blast match_part 176 190 . . . Gap=M15;ID=gi%7C294661513%7Cref%7CYP_003579966.1%7C;Parent=biopygen64 -Merlin_3 blast match_part 194 222 . . . Gap=M29;ID=gi%7C294661513%7Cref%7CYP_003579966.1%7C;Parent=biopygen64 -Merlin_3 blast match_part 228 247 . . . Gap=M20;ID=gi%7C294661513%7Cref%7CYP_003579966.1%7C;Parent=biopygen64 -Merlin_3 blast protein_match -42 277 1.4396e-13 . . ID=biopygen65;accession=YP_009011613;description=gp54 baseplate tail tube initiator %5BAeromonas phage PX29%5D;hit_id=gi%7C593773990%7Cref%7CYP_009011613.1%7C;hit_titles=gi%7C593773990%7Cref%7CYP_009011613.1%7C gp54 baseplate tail tube initiator %5BAeromonas phage PX29%5D,gi%7C312262608%7Cgb%7CADQ52903.1%7C gp54 baseplate tail tube initiator %5BAeromonas phage PX29%5D;length=329 -Merlin_3 blast match_part 13 22 . . . Gap=M10;ID=gi%7C593773990%7Cref%7CYP_009011613.1%7C;Parent=biopygen65 -Merlin_3 blast match_part 26 26 . . . Gap=M1;ID=gi%7C593773990%7Cref%7CYP_009011613.1%7C;Parent=biopygen65 -Merlin_3 blast match_part 31 42 . . . Gap=M12;ID=gi%7C593773990%7Cref%7CYP_009011613.1%7C;Parent=biopygen65 -Merlin_3 blast match_part 50 69 . . . Gap=M17 I1 M2;ID=gi%7C593773990%7Cref%7CYP_009011613.1%7C;Parent=biopygen65 -Merlin_3 blast match_part 76 78 . . . Gap=M3;ID=gi%7C593773990%7Cref%7CYP_009011613.1%7C;Parent=biopygen65 -Merlin_3 blast match_part 83 92 . . . Gap=M10;ID=gi%7C593773990%7Cref%7CYP_009011613.1%7C;Parent=biopygen65 -Merlin_3 blast match_part 96 105 . . . Gap=M10;ID=gi%7C593773990%7Cref%7CYP_009011613.1%7C;Parent=biopygen65 -Merlin_3 blast match_part 110 113 . . . Gap=M4;ID=gi%7C593773990%7Cref%7CYP_009011613.1%7C;Parent=biopygen65 -Merlin_3 blast match_part 118 131 . . . Gap=M14;ID=gi%7C593773990%7Cref%7CYP_009011613.1%7C;Parent=biopygen65 -Merlin_3 blast match_part 138 142 . . . Gap=M5;ID=gi%7C593773990%7Cref%7CYP_009011613.1%7C;Parent=biopygen65 -Merlin_3 blast match_part 146 146 . . . Gap=M1;ID=gi%7C593773990%7Cref%7CYP_009011613.1%7C;Parent=biopygen65 -Merlin_3 blast match_part 150 162 . . . Gap=M13;ID=gi%7C593773990%7Cref%7CYP_009011613.1%7C;Parent=biopygen65 -Merlin_3 blast match_part 167 169 . . . Gap=M3;ID=gi%7C593773990%7Cref%7CYP_009011613.1%7C;Parent=biopygen65 -Merlin_3 blast match_part 177 187 . . . Gap=M11;ID=gi%7C593773990%7Cref%7CYP_009011613.1%7C;Parent=biopygen65 -Merlin_3 blast match_part 193 194 . . . Gap=M2;ID=gi%7C593773990%7Cref%7CYP_009011613.1%7C;Parent=biopygen65 -Merlin_3 blast match_part 198 201 . . . Gap=M4;ID=gi%7C593773990%7Cref%7CYP_009011613.1%7C;Parent=biopygen65 -Merlin_3 blast match_part 206 214 . . . Gap=M9;ID=gi%7C593773990%7Cref%7CYP_009011613.1%7C;Parent=biopygen65 -Merlin_3 blast match_part 218 244 . . . Gap=M27;ID=gi%7C593773990%7Cref%7CYP_009011613.1%7C;Parent=biopygen65 -Merlin_3 blast match_part 249 250 . . . Gap=M2;ID=gi%7C593773990%7Cref%7CYP_009011613.1%7C;Parent=biopygen65 -Merlin_3 blast match_part 255 256 . . . Gap=M2;ID=gi%7C593773990%7Cref%7CYP_009011613.1%7C;Parent=biopygen65 -Merlin_3 blast match_part 260 267 . . . Gap=M8;ID=gi%7C593773990%7Cref%7CYP_009011613.1%7C;Parent=biopygen65 -Merlin_3 blast match_part 271 276 . . . Gap=M6;ID=gi%7C593773990%7Cref%7CYP_009011613.1%7C;Parent=biopygen65 -Merlin_3 blast protein_match -44 275 9.24146e-12 . . ID=biopygen66;accession=NP_944078;description=gp54 baseplate tail tube initiator %5BAeromonas phage Aeh1%5D;hit_id=gi%7C38640122%7Cref%7CNP_944078.1%7C;hit_titles=gi%7C38640122%7Cref%7CNP_944078.1%7C gp54 baseplate tail tube initiator %5BAeromonas phage Aeh1%5D,gi%7C33414812%7Cgb%7CAAQ17855.1%7C gp54 baseplate tail tube initiator %5BAeromonas phage Aeh1%5D;length=331 -Merlin_3 blast match_part 13 22 . . . Gap=M10;ID=gi%7C38640122%7Cref%7CNP_944078.1%7C;Parent=biopygen66 -Merlin_3 blast match_part 26 26 . . . Gap=M1;ID=gi%7C38640122%7Cref%7CNP_944078.1%7C;Parent=biopygen66 -Merlin_3 blast match_part 31 34 . . . Gap=M4;ID=gi%7C38640122%7Cref%7CNP_944078.1%7C;Parent=biopygen66 -Merlin_3 blast match_part 38 38 . . . Gap=M1;ID=gi%7C38640122%7Cref%7CNP_944078.1%7C;Parent=biopygen66 -Merlin_3 blast match_part 43 45 . . . Gap=M3;ID=gi%7C38640122%7Cref%7CNP_944078.1%7C;Parent=biopygen66 -Merlin_3 blast match_part 49 49 . . . Gap=M1;ID=gi%7C38640122%7Cref%7CNP_944078.1%7C;Parent=biopygen66 -Merlin_3 blast match_part 54 69 . . . Gap=M13 I1 M2;ID=gi%7C38640122%7Cref%7CNP_944078.1%7C;Parent=biopygen66 -Merlin_3 blast match_part 76 78 . . . Gap=M3;ID=gi%7C38640122%7Cref%7CNP_944078.1%7C;Parent=biopygen66 -Merlin_3 blast match_part 83 92 . . . Gap=M10;ID=gi%7C38640122%7Cref%7CNP_944078.1%7C;Parent=biopygen66 -Merlin_3 blast match_part 96 105 . . . Gap=M10;ID=gi%7C38640122%7Cref%7CNP_944078.1%7C;Parent=biopygen66 -Merlin_3 blast match_part 110 113 . . . Gap=M4;ID=gi%7C38640122%7Cref%7CNP_944078.1%7C;Parent=biopygen66 -Merlin_3 blast match_part 118 131 . . . Gap=M14;ID=gi%7C38640122%7Cref%7CNP_944078.1%7C;Parent=biopygen66 -Merlin_3 blast match_part 138 142 . . . Gap=M5;ID=gi%7C38640122%7Cref%7CNP_944078.1%7C;Parent=biopygen66 -Merlin_3 blast match_part 146 146 . . . Gap=M1;ID=gi%7C38640122%7Cref%7CNP_944078.1%7C;Parent=biopygen66 -Merlin_3 blast match_part 150 162 . . . Gap=M13;ID=gi%7C38640122%7Cref%7CNP_944078.1%7C;Parent=biopygen66 -Merlin_3 blast match_part 167 169 . . . Gap=M3;ID=gi%7C38640122%7Cref%7CNP_944078.1%7C;Parent=biopygen66 -Merlin_3 blast match_part 177 187 . . . Gap=M11;ID=gi%7C38640122%7Cref%7CNP_944078.1%7C;Parent=biopygen66 -Merlin_3 blast match_part 193 194 . . . Gap=M2;ID=gi%7C38640122%7Cref%7CNP_944078.1%7C;Parent=biopygen66 -Merlin_3 blast match_part 198 201 . . . Gap=M4;ID=gi%7C38640122%7Cref%7CNP_944078.1%7C;Parent=biopygen66 -Merlin_3 blast match_part 206 214 . . . Gap=M9;ID=gi%7C38640122%7Cref%7CNP_944078.1%7C;Parent=biopygen66 -Merlin_3 blast match_part 218 221 . . . Gap=M4;ID=gi%7C38640122%7Cref%7CNP_944078.1%7C;Parent=biopygen66 -Merlin_3 blast match_part 225 244 . . . Gap=M20;ID=gi%7C38640122%7Cref%7CNP_944078.1%7C;Parent=biopygen66 -Merlin_3 blast match_part 249 249 . . . Gap=M1;ID=gi%7C38640122%7Cref%7CNP_944078.1%7C;Parent=biopygen66 -Merlin_3 blast match_part 255 256 . . . Gap=M2;ID=gi%7C38640122%7Cref%7CNP_944078.1%7C;Parent=biopygen66 -Merlin_3 blast match_part 260 267 . . . Gap=M8;ID=gi%7C38640122%7Cref%7CNP_944078.1%7C;Parent=biopygen66 -Merlin_3 blast match_part 271 274 . . . Gap=M4;ID=gi%7C38640122%7Cref%7CNP_944078.1%7C;Parent=biopygen66 -Merlin_3 blast protein_match -41 265 2.13981e-10 . . ID=biopygen67;accession=YP_003969616;description=unnamed protein product %5BAeromonas phage phiAS5%5D;hit_id=gi%7C310722793%7Cref%7CYP_003969616.1%7C;hit_titles=gi%7C310722793%7Cref%7CYP_003969616.1%7C unnamed protein product %5BAeromonas phage phiAS5%5D,gi%7C306021636%7Cgb%7CADM80170.1%7C baseplate tail tube initiator %5BAeromonas phage phiAS5%5D;length=323 -Merlin_3 blast match_part 86 92 . . . Gap=M7;ID=gi%7C310722793%7Cref%7CYP_003969616.1%7C;Parent=biopygen67 -Merlin_3 blast match_part 96 105 . . . Gap=M10;ID=gi%7C310722793%7Cref%7CYP_003969616.1%7C;Parent=biopygen67 -Merlin_3 blast match_part 110 113 . . . Gap=M4;ID=gi%7C310722793%7Cref%7CYP_003969616.1%7C;Parent=biopygen67 -Merlin_3 blast match_part 118 131 . . . Gap=M14;ID=gi%7C310722793%7Cref%7CYP_003969616.1%7C;Parent=biopygen67 -Merlin_3 blast match_part 138 146 . . . Gap=M9;ID=gi%7C310722793%7Cref%7CYP_003969616.1%7C;Parent=biopygen67 -Merlin_3 blast match_part 150 162 . . . Gap=M13;ID=gi%7C310722793%7Cref%7CYP_003969616.1%7C;Parent=biopygen67 -Merlin_3 blast match_part 166 169 . . . Gap=M4;ID=gi%7C310722793%7Cref%7CYP_003969616.1%7C;Parent=biopygen67 -Merlin_3 blast match_part 177 183 . . . Gap=M7;ID=gi%7C310722793%7Cref%7CYP_003969616.1%7C;Parent=biopygen67 -Merlin_3 blast match_part 187 187 . . . Gap=M1;ID=gi%7C310722793%7Cref%7CYP_003969616.1%7C;Parent=biopygen67 -Merlin_3 blast match_part 194 194 . . . Gap=M1;ID=gi%7C310722793%7Cref%7CYP_003969616.1%7C;Parent=biopygen67 -Merlin_3 blast match_part 198 201 . . . Gap=M4;ID=gi%7C310722793%7Cref%7CYP_003969616.1%7C;Parent=biopygen67 -Merlin_3 blast match_part 206 214 . . . Gap=M9;ID=gi%7C310722793%7Cref%7CYP_003969616.1%7C;Parent=biopygen67 -Merlin_3 blast match_part 218 221 . . . Gap=M4;ID=gi%7C310722793%7Cref%7CYP_003969616.1%7C;Parent=biopygen67 -Merlin_3 blast match_part 225 244 . . . Gap=M20;ID=gi%7C310722793%7Cref%7CYP_003969616.1%7C;Parent=biopygen67 -Merlin_3 blast match_part 249 250 . . . Gap=M2;ID=gi%7C310722793%7Cref%7CYP_003969616.1%7C;Parent=biopygen67 -Merlin_3 blast match_part 255 256 . . . Gap=M2;ID=gi%7C310722793%7Cref%7CYP_003969616.1%7C;Parent=biopygen67 -Merlin_3 blast match_part 260 264 . . . Gap=M5;ID=gi%7C310722793%7Cref%7CYP_003969616.1%7C;Parent=biopygen67 -Merlin_3 blast protein_match -38 265 6.9619e-10 . . ID=biopygen68;accession=YP_007010370;description=baseplate-tail tube initiator %5BAeromonas phage CC2%5D;hit_id=gi%7C423261834%7Cref%7CYP_007010370.1%7C;hit_titles=gi%7C423261834%7Cref%7CYP_007010370.1%7C baseplate-tail tube initiator %5BAeromonas phage CC2%5D,gi%7C394778355%7Cgb%7CAFN39562.1%7C baseplate-tail tube initiator %5BAeromonas phage CC2%5D;length=318 -Merlin_3 blast match_part 86 91 . . . Gap=M6;ID=gi%7C423261834%7Cref%7CYP_007010370.1%7C;Parent=biopygen68 -Merlin_3 blast match_part 96 106 . . . Gap=M11;ID=gi%7C423261834%7Cref%7CYP_007010370.1%7C;Parent=biopygen68 -Merlin_3 blast match_part 110 113 . . . Gap=M4;ID=gi%7C423261834%7Cref%7CYP_007010370.1%7C;Parent=biopygen68 -Merlin_3 blast match_part 118 135 . . . Gap=M18;ID=gi%7C423261834%7Cref%7CYP_007010370.1%7C;Parent=biopygen68 -Merlin_3 blast match_part 139 140 . . . Gap=M2;ID=gi%7C423261834%7Cref%7CYP_007010370.1%7C;Parent=biopygen68 -Merlin_3 blast match_part 146 146 . . . Gap=M1;ID=gi%7C423261834%7Cref%7CYP_007010370.1%7C;Parent=biopygen68 -Merlin_3 blast match_part 150 153 . . . Gap=M4;ID=gi%7C423261834%7Cref%7CYP_007010370.1%7C;Parent=biopygen68 -Merlin_3 blast match_part 158 162 . . . Gap=M5;ID=gi%7C423261834%7Cref%7CYP_007010370.1%7C;Parent=biopygen68 -Merlin_3 blast match_part 166 166 . . . Gap=M1;ID=gi%7C423261834%7Cref%7CYP_007010370.1%7C;Parent=biopygen68 -Merlin_3 blast match_part 174 187 . . . Gap=M14;ID=gi%7C423261834%7Cref%7CYP_007010370.1%7C;Parent=biopygen68 -Merlin_3 blast match_part 198 201 . . . Gap=M4;ID=gi%7C423261834%7Cref%7CYP_007010370.1%7C;Parent=biopygen68 -Merlin_3 blast match_part 206 245 . . . Gap=M40;ID=gi%7C423261834%7Cref%7CYP_007010370.1%7C;Parent=biopygen68 -Merlin_3 blast match_part 249 249 . . . Gap=M1;ID=gi%7C423261834%7Cref%7CYP_007010370.1%7C;Parent=biopygen68 -Merlin_3 blast match_part 255 264 . . . Gap=M10;ID=gi%7C423261834%7Cref%7CYP_007010370.1%7C;Parent=biopygen68 -Merlin_3 blast protein_match -35 265 4.67582e-09 . . ID=biopygen69;accession=YP_004300954;description=gp54 baseplate-tail tube initiator %5BAeromonas phage 65%5D;hit_id=gi%7C326536523%7Cref%7CYP_004300954.1%7C;hit_titles=gi%7C326536523%7Cref%7CYP_004300954.1%7C gp54 baseplate-tail tube initiator %5BAeromonas phage 65%5D,gi%7C312262869%7Cgb%7CADQ53125.1%7C gp54 baseplate-tail tube initiator %5BAeromonas phage 65%5D;length=315 -Merlin_3 blast match_part 86 91 . . . Gap=M6;ID=gi%7C326536523%7Cref%7CYP_004300954.1%7C;Parent=biopygen69 -Merlin_3 blast match_part 96 102 . . . Gap=M7;ID=gi%7C326536523%7Cref%7CYP_004300954.1%7C;Parent=biopygen69 -Merlin_3 blast match_part 107 113 . . . Gap=M7;ID=gi%7C326536523%7Cref%7CYP_004300954.1%7C;Parent=biopygen69 -Merlin_3 blast match_part 118 135 . . . Gap=M18;ID=gi%7C326536523%7Cref%7CYP_004300954.1%7C;Parent=biopygen69 -Merlin_3 blast match_part 139 140 . . . Gap=M2;ID=gi%7C326536523%7Cref%7CYP_004300954.1%7C;Parent=biopygen69 -Merlin_3 blast match_part 146 146 . . . Gap=M1;ID=gi%7C326536523%7Cref%7CYP_004300954.1%7C;Parent=biopygen69 -Merlin_3 blast match_part 150 153 . . . Gap=M4;ID=gi%7C326536523%7Cref%7CYP_004300954.1%7C;Parent=biopygen69 -Merlin_3 blast match_part 158 162 . . . Gap=M5;ID=gi%7C326536523%7Cref%7CYP_004300954.1%7C;Parent=biopygen69 -Merlin_3 blast match_part 166 166 . . . Gap=M1;ID=gi%7C326536523%7Cref%7CYP_004300954.1%7C;Parent=biopygen69 -Merlin_3 blast match_part 174 187 . . . Gap=M14;ID=gi%7C326536523%7Cref%7CYP_004300954.1%7C;Parent=biopygen69 -Merlin_3 blast match_part 199 201 . . . Gap=M3;ID=gi%7C326536523%7Cref%7CYP_004300954.1%7C;Parent=biopygen69 -Merlin_3 blast match_part 206 245 . . . Gap=M40;ID=gi%7C326536523%7Cref%7CYP_004300954.1%7C;Parent=biopygen69 -Merlin_3 blast match_part 249 249 . . . Gap=M1;ID=gi%7C326536523%7Cref%7CYP_004300954.1%7C;Parent=biopygen69 -Merlin_3 blast match_part 255 264 . . . Gap=M10;ID=gi%7C326536523%7Cref%7CYP_004300954.1%7C;Parent=biopygen69 -Merlin_3 blast protein_match 42 248 9.87211e-05 . . ID=biopygen70;accession=NP_899576;description=gp19 %5BVibrio phage KVP40%5D;hit_id=gi%7C34419563%7Cref%7CNP_899576.1%7C;hit_titles=gi%7C34419563%7Cref%7CNP_899576.1%7C gp19 %5BVibrio phage KVP40%5D,gi%7C34333244%7Cgb%7CAAQ64399.1%7C gp19 %5BVibrio phage KVP40%5D;length=248 -Merlin_3 blast match_part 122 133 . . . Gap=M12;ID=gi%7C34419563%7Cref%7CNP_899576.1%7C;Parent=biopygen70 -Merlin_3 blast match_part 138 140 . . . Gap=M3;ID=gi%7C34419563%7Cref%7CNP_899576.1%7C;Parent=biopygen70 -Merlin_3 blast match_part 146 166 . . . Gap=M21;ID=gi%7C34419563%7Cref%7CNP_899576.1%7C;Parent=biopygen70 -Merlin_3 blast match_part 172 177 . . . Gap=M6;ID=gi%7C34419563%7Cref%7CNP_899576.1%7C;Parent=biopygen70 -Merlin_3 blast match_part 181 181 . . . Gap=M1;ID=gi%7C34419563%7Cref%7CNP_899576.1%7C;Parent=biopygen70 -Merlin_3 blast match_part 186 186 . . . Gap=M1;ID=gi%7C34419563%7Cref%7CNP_899576.1%7C;Parent=biopygen70 -Merlin_3 blast match_part 193 194 . . . Gap=M2;ID=gi%7C34419563%7Cref%7CNP_899576.1%7C;Parent=biopygen70 -Merlin_3 blast match_part 199 207 . . . Gap=M9;ID=gi%7C34419563%7Cref%7CNP_899576.1%7C;Parent=biopygen70 -Merlin_3 blast match_part 212 213 . . . Gap=M2;ID=gi%7C34419563%7Cref%7CNP_899576.1%7C;Parent=biopygen70 -Merlin_3 blast match_part 221 246 . . . Gap=M27;ID=gi%7C34419563%7Cref%7CNP_899576.1%7C;Parent=biopygen70 -Merlin_3 blast protein_match 42 248 0.000105334 . . ID=biopygen71;accession=AFN37561;description=phage baseplate-tail tube initiator %5BVibriophage phi-pp2%5D;hit_id=gi%7C394774889%7Cgb%7CAFN37561.1%7C;hit_titles=gi%7C394774889%7Cgb%7CAFN37561.1%7C phage baseplate-tail tube initiator %5BVibriophage phi-pp2%5D;length=248 -Merlin_3 blast match_part 122 133 . . . Gap=M12;ID=gi%7C394774889%7Cgb%7CAFN37561.1%7C;Parent=biopygen71 -Merlin_3 blast match_part 138 140 . . . Gap=M3;ID=gi%7C394774889%7Cgb%7CAFN37561.1%7C;Parent=biopygen71 -Merlin_3 blast match_part 146 166 . . . Gap=M21;ID=gi%7C394774889%7Cgb%7CAFN37561.1%7C;Parent=biopygen71 -Merlin_3 blast match_part 172 177 . . . Gap=M6;ID=gi%7C394774889%7Cgb%7CAFN37561.1%7C;Parent=biopygen71 -Merlin_3 blast match_part 181 181 . . . Gap=M1;ID=gi%7C394774889%7Cgb%7CAFN37561.1%7C;Parent=biopygen71 -Merlin_3 blast match_part 186 186 . . . Gap=M1;ID=gi%7C394774889%7Cgb%7CAFN37561.1%7C;Parent=biopygen71 -Merlin_3 blast match_part 193 194 . . . Gap=M2;ID=gi%7C394774889%7Cgb%7CAFN37561.1%7C;Parent=biopygen71 -Merlin_3 blast match_part 199 207 . . . Gap=M9;ID=gi%7C394774889%7Cgb%7CAFN37561.1%7C;Parent=biopygen71 -Merlin_3 blast match_part 212 213 . . . Gap=M2;ID=gi%7C394774889%7Cgb%7CAFN37561.1%7C;Parent=biopygen71 -Merlin_3 blast match_part 221 246 . . . Gap=M27;ID=gi%7C394774889%7Cgb%7CAFN37561.1%7C;Parent=biopygen71 -Merlin_3 blast protein_match 42 248 0.000428314 . . ID=biopygen72;accession=YP_008125529;description=hypothetical protein VPFG_00383 %5BVibrio phage nt-1%5D;hit_id=gi%7C514050755%7Cref%7CYP_008125529.1%7C;hit_titles=gi%7C514050755%7Cref%7CYP_008125529.1%7C hypothetical protein VPFG_00383 %5BVibrio phage nt-1%5D,gi%7C509419912%7Cgb%7CAGN30380.1%7C baseplate tail tube initiator %5BVibrio phage nt-1%5D;length=248 -Merlin_3 blast match_part 122 133 . . . Gap=M12;ID=gi%7C514050755%7Cref%7CYP_008125529.1%7C;Parent=biopygen72 -Merlin_3 blast match_part 138 140 . . . Gap=M3;ID=gi%7C514050755%7Cref%7CYP_008125529.1%7C;Parent=biopygen72 -Merlin_3 blast match_part 146 166 . . . Gap=M21;ID=gi%7C514050755%7Cref%7CYP_008125529.1%7C;Parent=biopygen72 -Merlin_3 blast match_part 172 177 . . . Gap=M6;ID=gi%7C514050755%7Cref%7CYP_008125529.1%7C;Parent=biopygen72 -Merlin_3 blast match_part 181 181 . . . Gap=M1;ID=gi%7C514050755%7Cref%7CYP_008125529.1%7C;Parent=biopygen72 -Merlin_3 blast match_part 186 186 . . . Gap=M1;ID=gi%7C514050755%7Cref%7CYP_008125529.1%7C;Parent=biopygen72 -Merlin_3 blast match_part 194 194 . . . Gap=M1;ID=gi%7C514050755%7Cref%7CYP_008125529.1%7C;Parent=biopygen72 -Merlin_3 blast match_part 199 207 . . . Gap=M9;ID=gi%7C514050755%7Cref%7CYP_008125529.1%7C;Parent=biopygen72 -Merlin_3 blast match_part 212 213 . . . Gap=M2;ID=gi%7C514050755%7Cref%7CYP_008125529.1%7C;Parent=biopygen72 -Merlin_3 blast match_part 221 246 . . . Gap=M27;ID=gi%7C514050755%7Cref%7CYP_008125529.1%7C;Parent=biopygen72 +Merlin_3 blast protein_match 1 306 0.0 . . ID=b2g.2.0.0;accession=YP_007501229;blast_align_length=302;blast_bits=573.548;blast_frame=0;blast_gaps=0;blast_identities=266;blast_positives=289;blast_query_end=302;blast_query_start=1;blast_sbjct_end=302;blast_sbjct_start=1;blast_score=1477.0;blast_strand=None;description=baseplate subunit %5BSalmonella phage S16%5D;hit_id=gi%7C456351277%7Cref%7CYP_007501229.1%7C;hit_titles=gi%7C456351277%7Cref%7CYP_007501229.1%7C baseplate subunit %5BSalmonella phage S16%5D,gi%7C347466342%7Cgb%7CAEO97128.1%7C baseplate subunit %5BSalmonella phage S16%5D,gi%7C408387126%7Cgb%7CAFU64135.1%7C tail assembly %5BSalmonella phage STML-198%5D;length=305 +Merlin_3 blast match_part 1 302 . . . Gap=M302;ID=b2g.2.0.0.0;Parent=b2g.2.0.0 +Merlin_3 blast protein_match 1 327 0.0 . . ID=b2g.2.1.0;accession=YP_004010055;blast_align_length=320;blast_bits=539.265;blast_frame=0;blast_gaps=6;blast_identities=258;blast_positives=286;blast_query_end=314;blast_query_start=1;blast_sbjct_end=320;blast_sbjct_start=1;blast_score=1388.0;blast_strand=None;description=gp54 base plate tail tube initiator %5BEnterobacteria phage CC31%5D;hit_id=gi%7C311993189%7Cref%7CYP_004010055.1%7C;hit_titles=gi%7C311993189%7Cref%7CYP_004010055.1%7C gp54 base plate tail tube initiator %5BEnterobacteria phage CC31%5D,gi%7C284178027%7Cgb%7CADB81693.1%7C gp54 base plate tail tube initiator %5BEnterobacteria phage CC31%5D;length=320 +Merlin_3 blast match_part 1 314 . . . Gap=M314;ID=b2g.2.1.0.0;Parent=b2g.2.1.0 +Merlin_3 blast protein_match 1 327 0.0 . . ID=b2g.2.2.0;accession=YP_009005476;blast_align_length=320;blast_bits=535.798;blast_frame=0;blast_gaps=6;blast_identities=257;blast_positives=285;blast_query_end=314;blast_query_start=1;blast_sbjct_end=320;blast_sbjct_start=1;blast_score=1379.0;blast_strand=None;description=baseplate subunit %5BEnterobacter phage PG7%5D;hit_id=gi%7C589889940%7Cref%7CYP_009005476.1%7C;hit_titles=gi%7C589889940%7Cref%7CYP_009005476.1%7C baseplate subunit %5BEnterobacter phage PG7%5D,gi%7C583927853%7Cgb%7CAHI61115.1%7C baseplate subunit %5BEnterobacter phage PG7%5D;length=320 +Merlin_3 blast match_part 1 314 . . . Gap=M314;ID=b2g.2.2.0.0;Parent=b2g.2.2.0 +Merlin_3 blast protein_match 1 320 6.96493e-167 . . ID=b2g.2.3.0;accession=YP_004063892;blast_align_length=313;blast_bits=479.174;blast_frame=0;blast_gaps=0;blast_identities=218;blast_positives=264;blast_query_end=313;blast_query_start=1;blast_sbjct_end=313;blast_sbjct_start=1;blast_score=1232.0;blast_strand=None;description=gp54 baseplate subunit %5BEnterobacteria phage vB_EcoM-VR7%5D;hit_id=gi%7C314121773%7Cref%7CYP_004063892.1%7C;hit_titles=gi%7C314121773%7Cref%7CYP_004063892.1%7C gp54 baseplate subunit %5BEnterobacteria phage vB_EcoM-VR7%5D,gi%7C313151530%7Cgb%7CADR32586.1%7C gp54 baseplate subunit %5BEnterobacteria phage vB_EcoM-VR7%5D;length=319 +Merlin_3 blast match_part 1 303 . . . Gap=M303;ID=b2g.2.3.0.0;Parent=b2g.2.3.0 +Merlin_3 blast match_part 307 307 . . . Gap=M1;ID=b2g.2.3.0.1;Parent=b2g.2.3.0 +Merlin_3 blast match_part 311 313 . . . Gap=M3;ID=b2g.2.3.0.2;Parent=b2g.2.3.0 +Merlin_3 blast protein_match 1 315 1.05147e-166 . . ID=b2g.2.4.0;accession=YP_003934832;blast_align_length=303;blast_bits=478.404;blast_frame=0;blast_gaps=0;blast_identities=216;blast_positives=261;blast_query_end=303;blast_query_start=1;blast_sbjct_end=303;blast_sbjct_start=1;blast_score=1230.0;blast_strand=None;description=baseplate tail tube initiator %5BShigella phage SP18%5D;hit_id=gi%7C308814558%7Cref%7CYP_003934832.1%7C;hit_titles=gi%7C308814558%7Cref%7CYP_003934832.1%7C baseplate tail tube initiator %5BShigella phage SP18%5D,gi%7C308206150%7Cgb%7CADO19549.1%7C baseplate tail tube initiator %5BShigella phage SP18%5D;length=314 +Merlin_3 blast match_part 1 303 . . . Gap=M303;ID=b2g.2.4.0.0;Parent=b2g.2.4.0 +Merlin_3 blast protein_match 1 318 9.66148e-163 . . ID=b2g.2.5.0;accession=YP_001595320;blast_align_length=303;blast_bits=468.389;blast_frame=0;blast_gaps=0;blast_identities=210;blast_positives=260;blast_query_end=303;blast_query_start=1;blast_sbjct_end=303;blast_sbjct_start=1;blast_score=1204.0;blast_strand=None;description=gp54 baseplate tail tube initiator %5BEnterobacteria phage JS98%5D;hit_id=gi%7C161622624%7Cref%7CYP_001595320.1%7C;hit_titles=gi%7C161622624%7Cref%7CYP_001595320.1%7C gp54 baseplate tail tube initiator %5BEnterobacteria phage JS98%5D,gi%7C238695347%7Cref%7CYP_002922540.1%7C gp54 baseplate tail tube initiator %5BEnterobacteria phage JS10%5D,gi%7C52139950%7Cgb%7CAAU29320.1%7C gp54 baseplate tail tube initiator %5BEnterobacteria phage JS98%5D,gi%7C220029483%7Cgb%7CACL78417.1%7C gp54 baseplate tail tube initiator %5BEnterobacteria phage JS10%5D;length=317 +Merlin_3 blast match_part 1 275 . . . Gap=M275;ID=b2g.2.5.0.0;Parent=b2g.2.5.0 +Merlin_3 blast match_part 279 303 . . . Gap=M25;ID=b2g.2.5.0.1;Parent=b2g.2.5.0 +Merlin_3 blast protein_match 1 313 2.90603e-161 . . ID=b2g.2.6.0;accession=YP_007236031;blast_align_length=312;blast_bits=464.537;blast_frame=0;blast_gaps=0;blast_identities=229;blast_positives=266;blast_query_end=312;blast_query_start=1;blast_sbjct_end=312;blast_sbjct_start=1;blast_score=1194.0;blast_strand=None;description=phage tail assembly %5BYersinia phage phiR1-RT%5D;hit_id=gi%7C431809134%7Cref%7CYP_007236031.1%7C;hit_titles=gi%7C431809134%7Cref%7CYP_007236031.1%7C phage tail assembly %5BYersinia phage phiR1-RT%5D,gi%7C398313423%7Cemb%7CCCI88772.1%7C phage tail assembly %5BYersinia phage phiR1-RT%5D;length=312 +Merlin_3 blast match_part 1 62 . . . Gap=M62;ID=b2g.2.6.0.0;Parent=b2g.2.6.0 +Merlin_3 blast match_part 66 275 . . . Gap=M210;ID=b2g.2.6.0.1;Parent=b2g.2.6.0 +Merlin_3 blast match_part 279 301 . . . Gap=M23;ID=b2g.2.6.0.2;Parent=b2g.2.6.0 +Merlin_3 blast match_part 307 312 . . . Gap=M6;ID=b2g.2.6.0.3;Parent=b2g.2.6.0 +Merlin_3 blast protein_match 1 314 2.42235e-160 . . ID=b2g.2.7.0;accession=YP_007004250;blast_align_length=303;blast_bits=462.225;blast_frame=0;blast_gaps=0;blast_identities=211;blast_positives=261;blast_query_end=303;blast_query_start=1;blast_sbjct_end=303;blast_sbjct_start=1;blast_score=1188.0;blast_strand=None;description=baseplate tail tube initiator %5BEnterobacteria phage Bp7%5D;hit_id=gi%7C422934214%7Cref%7CYP_007004250.1%7C;hit_titles=gi%7C422934214%7Cref%7CYP_007004250.1%7C baseplate tail tube initiator %5BEnterobacteria phage Bp7%5D,gi%7C345450723%7Cgb%7CAEN93926.1%7C baseplate tail tube initiator %5BEnterobacteria phage Bp7%5D;length=313 +Merlin_3 blast match_part 1 275 . . . Gap=M275;ID=b2g.2.7.0.0;Parent=b2g.2.7.0 +Merlin_3 blast match_part 279 303 . . . Gap=M25;ID=b2g.2.7.0.1;Parent=b2g.2.7.0 +Merlin_3 blast protein_match 1 327 2.72149e-160 . . ID=b2g.2.8.0;accession=NP_861898;blast_align_length=320;blast_bits=462.225;blast_frame=0;blast_gaps=6;blast_identities=225;blast_positives=267;blast_query_end=314;blast_query_start=1;blast_sbjct_end=320;blast_sbjct_start=1;blast_score=1188.0;blast_strand=None;description=baseplate subunit %5BEnterobacteria phage RB69%5D;hit_id=gi%7C32453689%7Cref%7CNP_861898.1%7C;hit_titles=gi%7C32453689%7Cref%7CNP_861898.1%7C baseplate subunit %5BEnterobacteria phage RB69%5D,gi%7C32350508%7Cgb%7CAAP76107.1%7C gp54 baseplate tail tube initiator %5BEnterobacteria phage RB69%5D;length=320 +Merlin_3 blast match_part 1 38 . . . Gap=M38;ID=b2g.2.8.0.0;Parent=b2g.2.8.0 +Merlin_3 blast match_part 42 42 . . . Gap=M1;ID=b2g.2.8.0.1;Parent=b2g.2.8.0 +Merlin_3 blast match_part 46 62 . . . Gap=M17;ID=b2g.2.8.0.2;Parent=b2g.2.8.0 +Merlin_3 blast match_part 66 264 . . . Gap=M199;ID=b2g.2.8.0.3;Parent=b2g.2.8.0 +Merlin_3 blast match_part 268 301 . . . Gap=M34;ID=b2g.2.8.0.4;Parent=b2g.2.8.0 +Merlin_3 blast match_part 306 314 . . . Gap=M9;ID=b2g.2.8.0.5;Parent=b2g.2.8.0 +Merlin_3 blast protein_match 1 327 4.35158e-160 . . ID=b2g.2.9.0;accession=AHV82897;blast_align_length=320;blast_bits=461.84;blast_frame=0;blast_gaps=6;blast_identities=224;blast_positives=267;blast_query_end=314;blast_query_start=1;blast_sbjct_end=320;blast_sbjct_start=1;blast_score=1187.0;blast_strand=None;description=baseplate tail tube initiator %5BEscherichia phage vB_EcoM_PhAPEC2%5D;hit_id=gi%7C604671903%7Cgb%7CAHV82897.1%7C;hit_titles=gi%7C604671903%7Cgb%7CAHV82897.1%7C baseplate tail tube initiator %5BEscherichia phage vB_EcoM_PhAPEC2%5D;length=320 +Merlin_3 blast match_part 1 38 . . . Gap=M38;ID=b2g.2.9.0.0;Parent=b2g.2.9.0 +Merlin_3 blast match_part 42 42 . . . Gap=M1;ID=b2g.2.9.0.1;Parent=b2g.2.9.0 +Merlin_3 blast match_part 46 62 . . . Gap=M17;ID=b2g.2.9.0.2;Parent=b2g.2.9.0 +Merlin_3 blast match_part 66 264 . . . Gap=M199;ID=b2g.2.9.0.3;Parent=b2g.2.9.0 +Merlin_3 blast match_part 268 301 . . . Gap=M34;ID=b2g.2.9.0.4;Parent=b2g.2.9.0 +Merlin_3 blast match_part 306 314 . . . Gap=M9;ID=b2g.2.9.0.5;Parent=b2g.2.9.0 +Merlin_3 blast protein_match -1 320 5.45864e-160 . . ID=b2g.2.10.0;accession=YP_003734336;blast_align_length=303;blast_bits=461.455;blast_frame=0;blast_gaps=0;blast_identities=211;blast_positives=260;blast_query_end=303;blast_query_start=1;blast_sbjct_end=305;blast_sbjct_start=3;blast_score=1186.0;blast_strand=None;description=54 gene product %5BEnterobacteria phage IME08%5D;hit_id=gi%7C299779142%7Cref%7CYP_003734336.1%7C;hit_titles=gi%7C299779142%7Cref%7CYP_003734336.1%7C 54 gene product %5BEnterobacteria phage IME08%5D,gi%7C298105871%7Cgb%7CADI55515.1%7C gp54 baseplate tail tube initiator %5BEnterobacteria phage IME08%5D;length=319 +Merlin_3 blast match_part 1 222 . . . Gap=M222;ID=b2g.2.10.0.0;Parent=b2g.2.10.0 +Merlin_3 blast match_part 226 275 . . . Gap=M50;ID=b2g.2.10.0.1;Parent=b2g.2.10.0 +Merlin_3 blast match_part 279 303 . . . Gap=M25;ID=b2g.2.10.0.2;Parent=b2g.2.10.0 +Merlin_3 blast protein_match 1 328 5.48662e-160 . . ID=b2g.2.11.0;accession=YP_002854149;blast_align_length=319;blast_bits=461.455;blast_frame=0;blast_gaps=6;blast_identities=226;blast_positives=259;blast_query_end=313;blast_query_start=1;blast_sbjct_end=319;blast_sbjct_start=1;blast_score=1186.0;blast_strand=None;description=gp54 base plate-tail tube initiator %5BEnterobacteria phage RB51%5D;hit_id=gi%7C228861126%7Cref%7CYP_002854149.1%7C;hit_titles=gi%7C228861126%7Cref%7CYP_002854149.1%7C gp54 base plate-tail tube initiator %5BEnterobacteria phage RB51%5D,gi%7C422934974%7Cref%7CYP_007004934.1%7C baseplate tail tube initiator %5BEscherichia phage wV7%5D,gi%7C227438800%7Cgb%7CACP31112.1%7C gp54 base plate-tail tube initiator %5BEnterobacteria phage RB51%5D,gi%7C291290412%7Cdbj%7CBAI83207.1%7C baseplate tail tube initiator %5BEnterobacteria phage AR1%5D,gi%7C343177528%7Cgb%7CAEM00854.1%7C baseplate tail tube initiator %5BEscherichia phage wV7%5D;length=321 +Merlin_3 blast match_part 1 38 . . . Gap=M38;ID=b2g.2.11.0.0;Parent=b2g.2.11.0 +Merlin_3 blast match_part 46 62 . . . Gap=M17;ID=b2g.2.11.0.1;Parent=b2g.2.11.0 +Merlin_3 blast match_part 66 264 . . . Gap=M199;ID=b2g.2.11.0.2;Parent=b2g.2.11.0 +Merlin_3 blast match_part 268 276 . . . Gap=M9;ID=b2g.2.11.0.3;Parent=b2g.2.11.0 +Merlin_3 blast match_part 280 301 . . . Gap=M22;ID=b2g.2.11.0.4;Parent=b2g.2.11.0 +Merlin_3 blast match_part 306 313 . . . Gap=M8;ID=b2g.2.11.0.5;Parent=b2g.2.11.0 +Merlin_3 blast protein_match 1 328 2.9788e-159 . . ID=b2g.2.12.0;accession=YP_803134;blast_align_length=319;blast_bits=459.914;blast_frame=0;blast_gaps=6;blast_identities=227;blast_positives=258;blast_query_end=313;blast_query_start=1;blast_sbjct_end=319;blast_sbjct_start=1;blast_score=1182.0;blast_strand=None;description=base plate-tail tube initiator %5BEnterobacteria phage RB32%5D;hit_id=gi%7C116326414%7Cref%7CYP_803134.1%7C;hit_titles=gi%7C116326414%7Cref%7CYP_803134.1%7C base plate-tail tube initiator %5BEnterobacteria phage RB32%5D,gi%7C115344007%7Cgb%7CABI95016.1%7C base plate-tail tube initiator %5BEnterobacteria phage RB32%5D;length=321 +Merlin_3 blast match_part 1 38 . . . Gap=M38;ID=b2g.2.12.0.0;Parent=b2g.2.12.0 +Merlin_3 blast match_part 46 62 . . . Gap=M17;ID=b2g.2.12.0.1;Parent=b2g.2.12.0 +Merlin_3 blast match_part 66 274 . . . Gap=M209;ID=b2g.2.12.0.2;Parent=b2g.2.12.0 +Merlin_3 blast match_part 280 301 . . . Gap=M22;ID=b2g.2.12.0.3;Parent=b2g.2.12.0 +Merlin_3 blast match_part 306 313 . . . Gap=M8;ID=b2g.2.12.0.4;Parent=b2g.2.12.0 +Merlin_3 blast protein_match 1 327 4.03338e-159 . . ID=b2g.2.13.0;accession=YP_009037573;blast_align_length=320;blast_bits=459.529;blast_frame=0;blast_gaps=6;blast_identities=223;blast_positives=266;blast_query_end=314;blast_query_start=1;blast_sbjct_end=320;blast_sbjct_start=1;blast_score=1181.0;blast_strand=None;description=baseplate subunit %5BEscherichia phage vB_EcoM_JS09%5D;hit_id=gi%7C642905804%7Cref%7CYP_009037573.1%7C;hit_titles=gi%7C642905804%7Cref%7CYP_009037573.1%7C baseplate subunit %5BEscherichia phage vB_EcoM_JS09%5D,gi%7C642903958%7Cgb%7CAIA79978.1%7C baseplate subunit %5BEscherichia phage vB_EcoM_JS09%5D;length=320 +Merlin_3 blast match_part 1 38 . . . Gap=M38;ID=b2g.2.13.0.0;Parent=b2g.2.13.0 +Merlin_3 blast match_part 42 42 . . . Gap=M1;ID=b2g.2.13.0.1;Parent=b2g.2.13.0 +Merlin_3 blast match_part 46 62 . . . Gap=M17;ID=b2g.2.13.0.2;Parent=b2g.2.13.0 +Merlin_3 blast match_part 66 264 . . . Gap=M199;ID=b2g.2.13.0.3;Parent=b2g.2.13.0 +Merlin_3 blast match_part 268 301 . . . Gap=M34;ID=b2g.2.13.0.4;Parent=b2g.2.13.0 +Merlin_3 blast match_part 306 314 . . . Gap=M9;ID=b2g.2.13.0.5;Parent=b2g.2.13.0 +Merlin_3 blast protein_match 1 328 4.97538e-159 . . ID=b2g.2.14.0;accession=ADJ39917;blast_align_length=319;blast_bits=459.144;blast_frame=0;blast_gaps=6;blast_identities=226;blast_positives=258;blast_query_end=313;blast_query_start=1;blast_sbjct_end=319;blast_sbjct_start=1;blast_score=1180.0;blast_strand=None;description=baseplate subunit %5BEnterobacteria phage T4T%5D;hit_id=gi%7C299780555%7Cgb%7CADJ39917.1%7C;hit_titles=gi%7C299780555%7Cgb%7CADJ39917.1%7C baseplate subunit %5BEnterobacteria phage T4T%5D,gi%7C397134211%7Cgb%7CAFO10718.1%7C hypothetical protein ECML134_192 %5BEscherichia phage ECML-134%5D,gi%7C398313742%7Cemb%7CCCI89089.1%7C phage tail assembly %5BYersinia phage phiD1%5D;length=321 +Merlin_3 blast match_part 1 38 . . . Gap=M38;ID=b2g.2.14.0.0;Parent=b2g.2.14.0 +Merlin_3 blast match_part 46 62 . . . Gap=M17;ID=b2g.2.14.0.1;Parent=b2g.2.14.0 +Merlin_3 blast match_part 66 274 . . . Gap=M209;ID=b2g.2.14.0.2;Parent=b2g.2.14.0 +Merlin_3 blast match_part 280 301 . . . Gap=M22;ID=b2g.2.14.0.3;Parent=b2g.2.14.0 +Merlin_3 blast match_part 306 313 . . . Gap=M8;ID=b2g.2.14.0.4;Parent=b2g.2.14.0 +Merlin_3 blast protein_match 1 328 9.78828e-159 . . ID=b2g.2.15.0;accession=AGR46142;blast_align_length=319;blast_bits=458.373;blast_frame=0;blast_gaps=6;blast_identities=226;blast_positives=258;blast_query_end=313;blast_query_start=1;blast_sbjct_end=319;blast_sbjct_start=1;blast_score=1178.0;blast_strand=None;description=baseplate tail tube initiator %5BYersinia phage PST%5D;hit_id=gi%7C525334460%7Cgb%7CAGR46142.1%7C;hit_titles=gi%7C525334460%7Cgb%7CAGR46142.1%7C baseplate tail tube initiator %5BYersinia phage PST%5D;length=321 +Merlin_3 blast match_part 1 38 . . . Gap=M38;ID=b2g.2.15.0.0;Parent=b2g.2.15.0 +Merlin_3 blast match_part 46 62 . . . Gap=M17;ID=b2g.2.15.0.1;Parent=b2g.2.15.0 +Merlin_3 blast match_part 66 274 . . . Gap=M209;ID=b2g.2.15.0.2;Parent=b2g.2.15.0 +Merlin_3 blast match_part 280 301 . . . Gap=M22;ID=b2g.2.15.0.3;Parent=b2g.2.15.0 +Merlin_3 blast match_part 306 313 . . . Gap=M8;ID=b2g.2.15.0.4;Parent=b2g.2.15.0 +Merlin_3 blast protein_match 1 328 9.78828e-159 . . ID=b2g.2.16.0;accession=YP_004415087;blast_align_length=319;blast_bits=458.373;blast_frame=0;blast_gaps=6;blast_identities=226;blast_positives=258;blast_query_end=313;blast_query_start=1;blast_sbjct_end=319;blast_sbjct_start=1;blast_score=1178.0;blast_strand=None;description=putative baseplate-tail tube initiator %5BShigella phage Shfl2%5D;hit_id=gi%7C330858712%7Cref%7CYP_004415087.1%7C;hit_titles=gi%7C330858712%7Cref%7CYP_004415087.1%7C putative baseplate-tail tube initiator %5BShigella phage Shfl2%5D,gi%7C422934609%7Cref%7CYP_007004570.1%7C phage baseplate tail tube initiator %5BEnterobacteria phage ime09%5D,gi%7C327397646%7Cgb%7CAEA73148.1%7C putative baseplate-tail tube initiator %5BShigella phage Shfl2%5D,gi%7C339791392%7Cgb%7CAEK12449.1%7C phage baseplate tail tube initiator %5BEnterobacteria phage ime09%5D;length=321 +Merlin_3 blast match_part 1 38 . . . Gap=M38;ID=b2g.2.16.0.0;Parent=b2g.2.16.0 +Merlin_3 blast match_part 46 62 . . . Gap=M17;ID=b2g.2.16.0.1;Parent=b2g.2.16.0 +Merlin_3 blast match_part 66 274 . . . Gap=M209;ID=b2g.2.16.0.2;Parent=b2g.2.16.0 +Merlin_3 blast match_part 280 301 . . . Gap=M22;ID=b2g.2.16.0.3;Parent=b2g.2.16.0 +Merlin_3 blast match_part 306 313 . . . Gap=M8;ID=b2g.2.16.0.4;Parent=b2g.2.16.0 +Merlin_3 blast protein_match -2 313 2.89005e-158 . . ID=b2g.2.17.0;accession=YP_009030256;blast_align_length=304;blast_bits=456.833;blast_frame=0;blast_gaps=3;blast_identities=213;blast_positives=255;blast_query_end=305;blast_query_start=3;blast_sbjct_end=307;blast_sbjct_start=6;blast_score=1174.0;blast_strand=None;description=baseplate tail tube initiator %5BSerratia phage PS2%5D;hit_id=gi%7C639438590%7Cref%7CYP_009030256.1%7C;hit_titles=gi%7C639438590%7Cref%7CYP_009030256.1%7C baseplate tail tube initiator %5BSerratia phage PS2%5D,gi%7C625370663%7Cgb%7CAHY25523.1%7C baseplate tail tube initiator %5BSerratia phage PS2%5D;length=309 +Merlin_3 blast match_part 3 222 . . . Gap=M220;ID=b2g.2.17.0.0;Parent=b2g.2.17.0 +Merlin_3 blast match_part 226 279 . . . Gap=M54;ID=b2g.2.17.0.1;Parent=b2g.2.17.0 +Merlin_3 blast match_part 284 305 . . . Gap=M22;ID=b2g.2.17.0.2;Parent=b2g.2.17.0 +Merlin_3 blast protein_match 1 328 3.78835e-158 . . ID=b2g.2.18.0;accession=YP_006986749;blast_align_length=319;blast_bits=456.833;blast_frame=0;blast_gaps=6;blast_identities=225;blast_positives=257;blast_query_end=313;blast_query_start=1;blast_sbjct_end=319;blast_sbjct_start=1;blast_score=1174.0;blast_strand=None;description=baseplate tail tube initiator %5BEnterobacteria phage vB_EcoM_ACG-C40%5D;hit_id=gi%7C414086560%7Cref%7CYP_006986749.1%7C;hit_titles=gi%7C414086560%7Cref%7CYP_006986749.1%7C baseplate tail tube initiator %5BEnterobacteria phage vB_EcoM_ACG-C40%5D,gi%7C383396341%7Cgb%7CAFH20157.1%7C baseplate tail tube initiator %5BEnterobacteria phage vB_EcoM_ACG-C40%5D;length=321 +Merlin_3 blast match_part 1 38 . . . Gap=M38;ID=b2g.2.18.0.0;Parent=b2g.2.18.0 +Merlin_3 blast match_part 46 62 . . . Gap=M17;ID=b2g.2.18.0.1;Parent=b2g.2.18.0 +Merlin_3 blast match_part 66 264 . . . Gap=M199;ID=b2g.2.18.0.2;Parent=b2g.2.18.0 +Merlin_3 blast match_part 268 274 . . . Gap=M7;ID=b2g.2.18.0.3;Parent=b2g.2.18.0 +Merlin_3 blast match_part 280 301 . . . Gap=M22;ID=b2g.2.18.0.4;Parent=b2g.2.18.0 +Merlin_3 blast match_part 306 313 . . . Gap=M8;ID=b2g.2.18.0.5;Parent=b2g.2.18.0 +Merlin_3 blast protein_match 1 328 6.12348e-158 . . ID=b2g.2.19.0;accession=YP_002854528;blast_align_length=319;blast_bits=456.447;blast_frame=0;blast_gaps=6;blast_identities=225;blast_positives=257;blast_query_end=313;blast_query_start=1;blast_sbjct_end=319;blast_sbjct_start=1;blast_score=1173.0;blast_strand=None;description=gp54 base plate-tail tube initiator %5BEnterobacteria phage RB14%5D;hit_id=gi%7C228861507%7Cref%7CYP_002854528.1%7C;hit_titles=gi%7C228861507%7Cref%7CYP_002854528.1%7C gp54 base plate-tail tube initiator %5BEnterobacteria phage RB14%5D,gi%7C227438523%7Cgb%7CACP30836.1%7C gp54 base plate-tail tube initiator %5BEnterobacteria phage RB14%5D;length=321 +Merlin_3 blast match_part 1 38 . . . Gap=M38;ID=b2g.2.19.0.0;Parent=b2g.2.19.0 +Merlin_3 blast match_part 46 62 . . . Gap=M17;ID=b2g.2.19.0.1;Parent=b2g.2.19.0 +Merlin_3 blast match_part 66 274 . . . Gap=M209;ID=b2g.2.19.0.2;Parent=b2g.2.19.0 +Merlin_3 blast match_part 280 301 . . . Gap=M22;ID=b2g.2.19.0.3;Parent=b2g.2.19.0 +Merlin_3 blast match_part 306 313 . . . Gap=M8;ID=b2g.2.19.0.4;Parent=b2g.2.19.0 +Merlin_3 blast protein_match 1 312 4.45165e-157 . . ID=b2g.2.20.0;accession=YP_009030801;blast_align_length=304;blast_bits=453.751;blast_frame=0;blast_gaps=4;blast_identities=221;blast_positives=252;blast_query_end=300;blast_query_start=1;blast_sbjct_end=304;blast_sbjct_start=1;blast_score=1166.0;blast_strand=None;description=baseplate tail tube initiator %5BEscherichia phage e11/2%5D;hit_id=gi%7C639438844%7Cref%7CYP_009030801.1%7C;hit_titles=gi%7C639438844%7Cref%7CYP_009030801.1%7C baseplate tail tube initiator %5BEscherichia phage e11/2%5D,gi%7C628971672%7Cgb%7CAHY83394.1%7C baseplate tail tube initiator %5BEscherichia phage e11/2%5D;length=307 +Merlin_3 blast match_part 1 38 . . . Gap=M38;ID=b2g.2.20.0.0;Parent=b2g.2.20.0 +Merlin_3 blast match_part 46 62 . . . Gap=M17;ID=b2g.2.20.0.1;Parent=b2g.2.20.0 +Merlin_3 blast match_part 66 276 . . . Gap=M211;ID=b2g.2.20.0.2;Parent=b2g.2.20.0 +Merlin_3 blast match_part 280 300 . . . Gap=M21;ID=b2g.2.20.0.3;Parent=b2g.2.20.0 +Merlin_3 blast protein_match 1 327 8.55241e-152 . . ID=b2g.2.21.0;accession=NP_049807;blast_align_length=319;blast_bits=440.654;blast_frame=0;blast_gaps=7;blast_identities=224;blast_positives=255;blast_query_end=313;blast_query_start=1;blast_sbjct_end=318;blast_sbjct_start=1;blast_score=1132.0;blast_strand=None;description=gp54 baseplate tail tube initiator %5BEnterobacteria phage T4%5D;hit_id=gi%7C9632659%7Cref%7CNP_049807.1%7C;hit_titles=gi%7C9632659%7Cref%7CNP_049807.1%7C gp54 baseplate tail tube initiator %5BEnterobacteria phage T4%5D,gi%7C138062%7Csp%7CP13341.1%7CVG54_BPT4 RecName: Full%3DTail-tube assembly protein Gp54 %5BEnterobacteria phage T4%5D,gi%7C5354283%7Cgb%7CAAD42490.1%7CAF158101_77 gp54 baseplate tail tube initiator %5BEnterobacteria phage T4%5D,gi%7C215948%7Cgb%7CAAA32540.1%7C tail-tube assembly protein %5BEnterobacteria phage T4%5D;length=320 +Merlin_3 blast match_part 1 38 . . . Gap=M38;ID=b2g.2.21.0.0;Parent=b2g.2.21.0 +Merlin_3 blast match_part 46 62 . . . Gap=M17;ID=b2g.2.21.0.1;Parent=b2g.2.21.0 +Merlin_3 blast match_part 66 217 . . . Gap=M152;ID=b2g.2.21.0.2;Parent=b2g.2.21.0 +Merlin_3 blast match_part 222 276 . . . Gap=M55;ID=b2g.2.21.0.3;Parent=b2g.2.21.0 +Merlin_3 blast match_part 280 301 . . . Gap=M22;ID=b2g.2.21.0.4;Parent=b2g.2.21.0 +Merlin_3 blast match_part 306 313 . . . Gap=M8;ID=b2g.2.21.0.5;Parent=b2g.2.21.0 +Merlin_3 blast protein_match 1 316 4.51456e-137 . . ID=b2g.2.22.0;accession=YP_001469528;blast_align_length=311;blast_bits=402.905;blast_frame=0;blast_gaps=8;blast_identities=191;blast_positives=239;blast_query_end=306;blast_query_start=1;blast_sbjct_end=308;blast_sbjct_start=1;blast_score=1034.0;blast_strand=None;description=gp54 baseplate tail tube initiator %5BEnterobacteria phage Phi1%5D;hit_id=gi%7C157311485%7Cref%7CYP_001469528.1%7C;hit_titles=gi%7C157311485%7Cref%7CYP_001469528.1%7C gp54 baseplate tail tube initiator %5BEnterobacteria phage Phi1%5D,gi%7C149380689%7Cgb%7CABR24694.1%7C gp54 baseplate tail tube initiator %5BEnterobacteria phage Phi1%5D;length=310 +Merlin_3 blast match_part 1 70 . . . Gap=M70;ID=b2g.2.22.0.0;Parent=b2g.2.22.0 +Merlin_3 blast match_part 74 222 . . . Gap=M149;ID=b2g.2.22.0.1;Parent=b2g.2.22.0 +Merlin_3 blast match_part 226 272 . . . Gap=M47;ID=b2g.2.22.0.2;Parent=b2g.2.22.0 +Merlin_3 blast match_part 280 295 . . . Gap=M16;ID=b2g.2.22.0.3;Parent=b2g.2.22.0 +Merlin_3 blast match_part 300 306 . . . Gap=M7;ID=b2g.2.22.0.4;Parent=b2g.2.22.0 +Merlin_3 blast protein_match 1 316 4.9258e-137 . . ID=b2g.2.23.0;accession=NP_891752;blast_align_length=311;blast_bits=402.905;blast_frame=0;blast_gaps=8;blast_identities=191;blast_positives=239;blast_query_end=306;blast_query_start=1;blast_sbjct_end=308;blast_sbjct_start=1;blast_score=1034.0;blast_strand=None;description=baseplate tail tube initiator %5BEnterobacteria phage RB49%5D;hit_id=gi%7C33620696%7Cref%7CNP_891752.1%7C;hit_titles=gi%7C33620696%7Cref%7CNP_891752.1%7C baseplate tail tube initiator %5BEnterobacteria phage RB49%5D,gi%7C33438566%7Cgb%7CAAL15122.2%7C baseplate tail tube initiator %5BEnterobacteria phage RB49%5D;length=310 +Merlin_3 blast match_part 1 70 . . . Gap=M70;ID=b2g.2.23.0.0;Parent=b2g.2.23.0 +Merlin_3 blast match_part 74 222 . . . Gap=M149;ID=b2g.2.23.0.1;Parent=b2g.2.23.0 +Merlin_3 blast match_part 226 272 . . . Gap=M47;ID=b2g.2.23.0.2;Parent=b2g.2.23.0 +Merlin_3 blast match_part 280 295 . . . Gap=M16;ID=b2g.2.23.0.3;Parent=b2g.2.23.0 +Merlin_3 blast match_part 300 306 . . . Gap=M7;ID=b2g.2.23.0.4;Parent=b2g.2.23.0 +Merlin_3 blast protein_match 1 316 1.02225e-136 . . ID=b2g.2.24.0;accession=YP_002922260;blast_align_length=311;blast_bits=402.134;blast_frame=0;blast_gaps=8;blast_identities=191;blast_positives=239;blast_query_end=306;blast_query_start=1;blast_sbjct_end=308;blast_sbjct_start=1;blast_score=1032.0;blast_strand=None;description=baseplate tail tube initiator %5BEnterobacteria phage JSE%5D;hit_id=gi%7C238695066%7Cref%7CYP_002922260.1%7C;hit_titles=gi%7C238695066%7Cref%7CYP_002922260.1%7C baseplate tail tube initiator %5BEnterobacteria phage JSE%5D,gi%7C220029202%7Cgb%7CACL78137.1%7C baseplate tail tube initiator %5BEnterobacteria phage JSE%5D;length=310 +Merlin_3 blast match_part 1 70 . . . Gap=M70;ID=b2g.2.24.0.0;Parent=b2g.2.24.0 +Merlin_3 blast match_part 74 222 . . . Gap=M149;ID=b2g.2.24.0.1;Parent=b2g.2.24.0 +Merlin_3 blast match_part 226 272 . . . Gap=M47;ID=b2g.2.24.0.2;Parent=b2g.2.24.0 +Merlin_3 blast match_part 280 295 . . . Gap=M16;ID=b2g.2.24.0.3;Parent=b2g.2.24.0 +Merlin_3 blast match_part 300 306 . . . Gap=M7;ID=b2g.2.24.0.4;Parent=b2g.2.24.0 +Merlin_3 blast protein_match -3 303 9.23112e-129 . . ID=b2g.2.25.0;accession=YP_004009816;blast_align_length=299;blast_bits=381.333;blast_frame=0;blast_gaps=3;blast_identities=180;blast_positives=229;blast_query_end=300;blast_query_start=2;blast_sbjct_end=301;blast_sbjct_start=6;blast_score=978.0;blast_strand=None;description=gp54 baseplate tail tube initiator %5BAcinetobacter phage Acj61%5D;hit_id=gi%7C311992949%7Cref%7CYP_004009816.1%7C;hit_titles=gi%7C311992949%7Cref%7CYP_004009816.1%7C gp54 baseplate tail tube initiator %5BAcinetobacter phage Acj61%5D,gi%7C295815238%7Cgb%7CADG36164.1%7C gp54 baseplate tail tube initiator %5BAcinetobacter phage Acj61%5D;length=301 +Merlin_3 blast match_part 3 45 . . . Gap=M43;ID=b2g.2.25.0.0;Parent=b2g.2.25.0 +Merlin_3 blast match_part 49 50 . . . Gap=M2;ID=b2g.2.25.0.1;Parent=b2g.2.25.0 +Merlin_3 blast match_part 54 222 . . . Gap=M169;ID=b2g.2.25.0.2;Parent=b2g.2.25.0 +Merlin_3 blast match_part 226 268 . . . Gap=M43;ID=b2g.2.25.0.3;Parent=b2g.2.25.0 +Merlin_3 blast match_part 273 273 . . . Gap=M1;ID=b2g.2.25.0.4;Parent=b2g.2.25.0 +Merlin_3 blast match_part 278 300 . . . Gap=M23;ID=b2g.2.25.0.5;Parent=b2g.2.25.0 +Merlin_3 blast protein_match 1 286 1.13007e-128 . . ID=b2g.2.26.0;accession=YP_656411;blast_align_length=264;blast_bits=380.563;blast_frame=0;blast_gaps=1;blast_identities=177;blast_positives=212;blast_query_end=264;blast_query_start=1;blast_sbjct_end=263;blast_sbjct_start=1;blast_score=976.0;blast_strand=None;description=gp54 base plate-tail tube initiator %5BAeromonas phage 25%5D;hit_id=gi%7C109290162%7Cref%7CYP_656411.1%7C;hit_titles=gi%7C109290162%7Cref%7CYP_656411.1%7C gp54 base plate-tail tube initiator %5BAeromonas phage 25%5D,gi%7C104345835%7Cgb%7CABF72735.1%7C gp54 base plate-tail tube initiator %5BAeromonas phage 25%5D;length=285 +Merlin_3 blast match_part 1 50 . . . Gap=M8 I1 M41;ID=b2g.2.26.0.0;Parent=b2g.2.26.0 +Merlin_3 blast match_part 54 115 . . . Gap=M62;ID=b2g.2.26.0.1;Parent=b2g.2.26.0 +Merlin_3 blast match_part 121 256 . . . Gap=M136;ID=b2g.2.26.0.2;Parent=b2g.2.26.0 +Merlin_3 blast match_part 261 264 . . . Gap=M4;ID=b2g.2.26.0.3;Parent=b2g.2.26.0 +Merlin_3 blast protein_match 1 286 1.24647e-128 . . ID=b2g.2.27.0;accession=YP_007010859;blast_align_length=264;blast_bits=380.563;blast_frame=0;blast_gaps=1;blast_identities=177;blast_positives=212;blast_query_end=264;blast_query_start=1;blast_sbjct_end=263;blast_sbjct_start=1;blast_score=976.0;blast_strand=None;description=base plate-tail tube initiator %5BAeromonas phage Aes508%5D;hit_id=gi%7C423262260%7Cref%7CYP_007010859.1%7C;hit_titles=gi%7C423262260%7Cref%7CYP_007010859.1%7C base plate-tail tube initiator %5BAeromonas phage Aes508%5D,gi%7C402762138%7Cgb%7CAFQ97252.1%7C base plate-tail tube initiator %5BAeromonas phage Aes508%5D;length=285 +Merlin_3 blast match_part 1 50 . . . Gap=M8 I1 M41;ID=b2g.2.27.0.0;Parent=b2g.2.27.0 +Merlin_3 blast match_part 54 115 . . . Gap=M62;ID=b2g.2.27.0.1;Parent=b2g.2.27.0 +Merlin_3 blast match_part 121 256 . . . Gap=M136;ID=b2g.2.27.0.2;Parent=b2g.2.27.0 +Merlin_3 blast match_part 261 264 . . . Gap=M4;ID=b2g.2.27.0.3;Parent=b2g.2.27.0 +Merlin_3 blast protein_match 1 286 3.21556e-128 . . ID=b2g.2.28.0;accession=YP_007677898;blast_align_length=264;blast_bits=379.407;blast_frame=0;blast_gaps=1;blast_identities=175;blast_positives=212;blast_query_end=264;blast_query_start=1;blast_sbjct_end=263;blast_sbjct_start=1;blast_score=973.0;blast_strand=None;description=baseplate-tail tube initiator %5BAeromonas phage Aes012%5D;hit_id=gi%7C472438118%7Cref%7CYP_007677898.1%7C;hit_titles=gi%7C472438118%7Cref%7CYP_007677898.1%7C baseplate-tail tube initiator %5BAeromonas phage Aes012%5D,gi%7C395653256%7Cgb%7CAFN69811.1%7C baseplate-tail tube initiator %5BAeromonas phage Aes012%5D;length=285 +Merlin_3 blast match_part 1 50 . . . Gap=M8 I1 M41;ID=b2g.2.28.0.0;Parent=b2g.2.28.0 +Merlin_3 blast match_part 54 115 . . . Gap=M62;ID=b2g.2.28.0.1;Parent=b2g.2.28.0 +Merlin_3 blast match_part 121 256 . . . Gap=M136;ID=b2g.2.28.0.2;Parent=b2g.2.28.0 +Merlin_3 blast match_part 261 264 . . . Gap=M4;ID=b2g.2.28.0.3;Parent=b2g.2.28.0 +Merlin_3 blast protein_match 1 286 1.7397e-127 . . ID=b2g.2.29.0;accession=AFQ22672;blast_align_length=264;blast_bits=377.481;blast_frame=0;blast_gaps=1;blast_identities=173;blast_positives=212;blast_query_end=264;blast_query_start=1;blast_sbjct_end=263;blast_sbjct_start=1;blast_score=968.0;blast_strand=None;description=tail assembly protein %5BStenotrophomonas phage IME13%5D;hit_id=gi%7C401824982%7Cgb%7CAFQ22672.1%7C;hit_titles=gi%7C401824982%7Cgb%7CAFQ22672.1%7C tail assembly protein %5BStenotrophomonas phage IME13%5D;length=285 +Merlin_3 blast match_part 1 50 . . . Gap=M8 I1 M41;ID=b2g.2.29.0.0;Parent=b2g.2.29.0 +Merlin_3 blast match_part 54 115 . . . Gap=M62;ID=b2g.2.29.0.1;Parent=b2g.2.29.0 +Merlin_3 blast match_part 121 256 . . . Gap=M136;ID=b2g.2.29.0.2;Parent=b2g.2.29.0 +Merlin_3 blast match_part 261 264 . . . Gap=M4;ID=b2g.2.29.0.3;Parent=b2g.2.29.0 +Merlin_3 blast protein_match 1 286 9.89077e-126 . . ID=b2g.2.30.0;accession=NP_932540;blast_align_length=264;blast_bits=373.244;blast_frame=0;blast_gaps=1;blast_identities=174;blast_positives=210;blast_query_end=264;blast_query_start=1;blast_sbjct_end=263;blast_sbjct_start=1;blast_score=957.0;blast_strand=None;description=baseplate subunit %5BAeromonas phage 44RR2.8t%5D;hit_id=gi%7C37651666%7Cref%7CNP_932540.1%7C;hit_titles=gi%7C37651666%7Cref%7CNP_932540.1%7C baseplate subunit %5BAeromonas phage 44RR2.8t%5D,gi%7C66391987%7Cref%7CYP_238912.1%7C baseplate tail tube initiator %5BAeromonas phage 31%5D,gi%7C34732966%7Cgb%7CAAQ81503.1%7C baseplate tail tube initiator %5BAeromonas phage 44RR2.8t%5D,gi%7C62114824%7Cgb%7CAAX63672.1%7C gp54 %5BAeromonas phage 31%5D;length=285 +Merlin_3 blast match_part 1 50 . . . Gap=M8 I1 M41;ID=b2g.2.30.0.0;Parent=b2g.2.30.0 +Merlin_3 blast match_part 54 115 . . . Gap=M62;ID=b2g.2.30.0.1;Parent=b2g.2.30.0 +Merlin_3 blast match_part 121 254 . . . Gap=M134;ID=b2g.2.30.0.2;Parent=b2g.2.30.0 +Merlin_3 blast match_part 261 264 . . . Gap=M4;ID=b2g.2.30.0.3;Parent=b2g.2.30.0 +Merlin_3 blast protein_match -5 298 9.8716e-118 . . ID=b2g.2.31.0;accession=YP_006489089;blast_align_length=272;blast_bits=353.214;blast_frame=0;blast_gaps=0;blast_identities=162;blast_positives=207;blast_query_end=273;blast_query_start=2;blast_sbjct_end=279;blast_sbjct_start=8;blast_score=905.0;blast_strand=None;description=baseplate tail tube initiator %5BAcinetobacter phage ZZ1%5D;hit_id=gi%7C392973131%7Cref%7CYP_006489089.1%7C;hit_titles=gi%7C392973131%7Cref%7CYP_006489089.1%7C baseplate tail tube initiator %5BAcinetobacter phage ZZ1%5D,gi%7C390058272%7Cgb%7CAFL47726.1%7C baseplate tail tube initiator %5BAcinetobacter phage ZZ1%5D;length=296 +Merlin_3 blast match_part 3 38 . . . Gap=M36;ID=b2g.2.31.0.0;Parent=b2g.2.31.0 +Merlin_3 blast match_part 47 49 . . . Gap=M3;ID=b2g.2.31.0.1;Parent=b2g.2.31.0 +Merlin_3 blast match_part 54 59 . . . Gap=M6;ID=b2g.2.31.0.2;Parent=b2g.2.31.0 +Merlin_3 blast match_part 65 269 . . . Gap=M205;ID=b2g.2.31.0.3;Parent=b2g.2.31.0 +Merlin_3 blast match_part 273 273 . . . Gap=M1;ID=b2g.2.31.0.4;Parent=b2g.2.31.0 +Merlin_3 blast protein_match -5 296 3.7432e-114 . . ID=b2g.2.32.0;accession=YP_004010340;blast_align_length=267;blast_bits=343.969;blast_frame=0;blast_gaps=0;blast_identities=155;blast_positives=202;blast_query_end=268;blast_query_start=2;blast_sbjct_end=274;blast_sbjct_start=8;blast_score=881.0;blast_strand=None;description=gp54 baseplate tail tube initiator %5BAcinetobacter phage Acj9%5D;hit_id=gi%7C311993475%7Cref%7CYP_004010340.1%7C;hit_titles=gi%7C311993475%7Cref%7CYP_004010340.1%7C gp54 baseplate tail tube initiator %5BAcinetobacter phage Acj9%5D,gi%7C295917432%7Cgb%7CADG60103.1%7C gp54 baseplate tail tube initiator %5BAcinetobacter phage Acj9%5D;length=294 +Merlin_3 blast match_part 2 38 . . . Gap=M37;ID=b2g.2.32.0.0;Parent=b2g.2.32.0 +Merlin_3 blast match_part 47 49 . . . Gap=M3;ID=b2g.2.32.0.1;Parent=b2g.2.32.0 +Merlin_3 blast match_part 54 59 . . . Gap=M6;ID=b2g.2.32.0.2;Parent=b2g.2.32.0 +Merlin_3 blast match_part 65 113 . . . Gap=M49;ID=b2g.2.32.0.3;Parent=b2g.2.32.0 +Merlin_3 blast match_part 118 254 . . . Gap=M137;ID=b2g.2.32.0.4;Parent=b2g.2.32.0 +Merlin_3 blast match_part 258 268 . . . Gap=M11;ID=b2g.2.32.0.5;Parent=b2g.2.32.0 +Merlin_3 blast protein_match 0 288 2.8435e-95 . . ID=b2g.2.33.0;accession=YP_004009561;blast_align_length=266;blast_bits=295.434;blast_frame=0;blast_gaps=6;blast_identities=146;blast_positives=189;blast_query_end=263;blast_query_start=2;blast_sbjct_end=266;blast_sbjct_start=3;blast_score=755.0;blast_strand=None;description=gp54 baseplate-tail tube initiator protein %5BAcinetobacter phage Ac42%5D;hit_id=gi%7C311992693%7Cref%7CYP_004009561.1%7C;hit_titles=gi%7C311992693%7Cref%7CYP_004009561.1%7C gp54 baseplate-tail tube initiator protein %5BAcinetobacter phage Ac42%5D,gi%7C298684476%7Cgb%7CADI96437.1%7C gp54 baseplate-tail tube initiator protein %5BAcinetobacter phage Ac42%5D;length=282 +Merlin_3 blast match_part 3 53 . . . Gap=M5 I1 M40 I1 M4;ID=b2g.2.33.0.0;Parent=b2g.2.33.0 +Merlin_3 blast match_part 60 62 . . . Gap=M3;ID=b2g.2.33.0.1;Parent=b2g.2.33.0 +Merlin_3 blast match_part 67 67 . . . Gap=M1;ID=b2g.2.33.0.2;Parent=b2g.2.33.0 +Merlin_3 blast match_part 71 71 . . . Gap=M1;ID=b2g.2.33.0.3;Parent=b2g.2.33.0 +Merlin_3 blast match_part 77 116 . . . Gap=M40;ID=b2g.2.33.0.4;Parent=b2g.2.33.0 +Merlin_3 blast match_part 120 263 . . . Gap=M144;ID=b2g.2.33.0.5;Parent=b2g.2.33.0 +Merlin_3 blast protein_match 0 281 2.61741e-86 . . ID=b2g.2.34.0;accession=YP_004300778;blast_align_length=261;blast_bits=272.322;blast_frame=0;blast_gaps=9;blast_identities=133;blast_positives=181;blast_query_end=263;blast_query_start=4;blast_sbjct_end=257;blast_sbjct_start=5;blast_score=695.0;blast_strand=None;description=gp54 baseplate tail tube initiator %5BAcinetobacter phage 133%5D;hit_id=gi%7C326536337%7Cref%7CYP_004300778.1%7C;hit_titles=gi%7C326536337%7Cref%7CYP_004300778.1%7C gp54 baseplate tail tube initiator %5BAcinetobacter phage 133%5D,gi%7C299483418%7Cgb%7CADJ19512.1%7C gp54 baseplate tail tube initiator %5BAcinetobacter phage 133%5D;length=276 +Merlin_3 blast match_part 4 10 . . . Gap=M7;ID=b2g.2.34.0.0;Parent=b2g.2.34.0 +Merlin_3 blast match_part 15 41 . . . Gap=M27;ID=b2g.2.34.0.1;Parent=b2g.2.34.0 +Merlin_3 blast match_part 47 60 . . . Gap=M3 I1 M5 I1 M4;ID=b2g.2.34.0.2;Parent=b2g.2.34.0 +Merlin_3 blast match_part 67 77 . . . Gap=M11;ID=b2g.2.34.0.3;Parent=b2g.2.34.0 +Merlin_3 blast match_part 81 81 . . . Gap=M1;ID=b2g.2.34.0.4;Parent=b2g.2.34.0 +Merlin_3 blast match_part 87 116 . . . Gap=M30;ID=b2g.2.34.0.5;Parent=b2g.2.34.0 +Merlin_3 blast match_part 120 250 . . . Gap=M131;ID=b2g.2.34.0.6;Parent=b2g.2.34.0 +Merlin_3 blast match_part 254 263 . . . Gap=M10;ID=b2g.2.34.0.7;Parent=b2g.2.34.0 +Merlin_3 blast protein_match 92 287 3.48018e-85 . . ID=b2g.2.35.0;accession=YP_003969098;blast_align_length=173;blast_bits=266.544;blast_frame=0;blast_gaps=0;blast_identities=118;blast_positives=145;blast_query_end=264;blast_query_start=92;blast_sbjct_end=173;blast_sbjct_start=1;blast_score=680.0;blast_strand=None;description=unnamed protein product %5BAeromonas phage phiAS4%5D;hit_id=gi%7C310722274%7Cref%7CYP_003969098.1%7C;hit_titles=gi%7C310722274%7Cref%7CYP_003969098.1%7C unnamed protein product %5BAeromonas phage phiAS4%5D,gi%7C306021117%7Cgb%7CADM79652.1%7C baseplate tail tube initiator %5BAeromonas phage phiAS4%5D;length=195 +Merlin_3 blast match_part 92 115 . . . Gap=M24;ID=b2g.2.35.0.0;Parent=b2g.2.35.0 +Merlin_3 blast match_part 121 256 . . . Gap=M136;ID=b2g.2.35.0.1;Parent=b2g.2.35.0 +Merlin_3 blast match_part 261 264 . . . Gap=M4;ID=b2g.2.35.0.2;Parent=b2g.2.35.0 +Merlin_3 blast protein_match 0 299 1.63718e-43 . . ID=b2g.2.36.0;accession=YP_239082;blast_align_length=254;blast_bits=161.77;blast_frame=0;blast_gaps=13;blast_identities=90;blast_positives=146;blast_query_end=247;blast_query_start=3;blast_sbjct_end=253;blast_sbjct_start=4;blast_score=408.0;blast_strand=None;description=gp54 baseplate-tail tube initiator %5BEnterobacteria phage RB43%5D;hit_id=gi%7C66391557%7Cref%7CYP_239082.1%7C;hit_titles=gi%7C66391557%7Cref%7CYP_239082.1%7C gp54 baseplate-tail tube initiator %5BEnterobacteria phage RB43%5D,gi%7C62288645%7Cgb%7CAAX78628.1%7C gp54 baseplate-tail tube initiator %5BEnterobacteria phage RB43%5D,gi%7C406718847%7Cemb%7CCCL97572.1%7C protein of unknown function %5BEnterobacteria phage RB43%5D,gi%7C415434115%7Cemb%7CCCK73955.1%7C protein of unknown function %5BEnterobacteria phage RB43%5D;length=287 +Merlin_3 blast match_part 3 9 . . . Gap=M7;ID=b2g.2.36.0.0;Parent=b2g.2.36.0 +Merlin_3 blast match_part 13 33 . . . Gap=M21;ID=b2g.2.36.0.1;Parent=b2g.2.36.0 +Merlin_3 blast match_part 37 39 . . . Gap=M3;ID=b2g.2.36.0.2;Parent=b2g.2.36.0 +Merlin_3 blast match_part 43 54 . . . Gap=M12;ID=b2g.2.36.0.3;Parent=b2g.2.36.0 +Merlin_3 blast match_part 64 72 . . . Gap=M9;ID=b2g.2.36.0.4;Parent=b2g.2.36.0 +Merlin_3 blast match_part 77 103 . . . Gap=M10 I1 M16;ID=b2g.2.36.0.5;Parent=b2g.2.36.0 +Merlin_3 blast match_part 107 115 . . . Gap=M9;ID=b2g.2.36.0.6;Parent=b2g.2.36.0 +Merlin_3 blast match_part 122 131 . . . Gap=M10;ID=b2g.2.36.0.7;Parent=b2g.2.36.0 +Merlin_3 blast match_part 135 142 . . . Gap=M8;ID=b2g.2.36.0.8;Parent=b2g.2.36.0 +Merlin_3 blast match_part 146 154 . . . Gap=M9;ID=b2g.2.36.0.9;Parent=b2g.2.36.0 +Merlin_3 blast match_part 158 172 . . . Gap=M15;ID=b2g.2.36.0.10;Parent=b2g.2.36.0 +Merlin_3 blast match_part 176 190 . . . Gap=M15;ID=b2g.2.36.0.11;Parent=b2g.2.36.0 +Merlin_3 blast match_part 194 222 . . . Gap=M29;ID=b2g.2.36.0.12;Parent=b2g.2.36.0 +Merlin_3 blast match_part 226 247 . . . Gap=M22;ID=b2g.2.36.0.13;Parent=b2g.2.36.0 +Merlin_3 blast protein_match 0 299 6.9702e-43 . . ID=b2g.2.37.0;accession=YP_003858397;blast_align_length=254;blast_bits=160.229;blast_frame=0;blast_gaps=13;blast_identities=90;blast_positives=145;blast_query_end=247;blast_query_start=3;blast_sbjct_end=253;blast_sbjct_start=4;blast_score=404.0;blast_strand=None;description=gp54 baseplate-tail tube initiator %5BEnterobacteria phage RB16%5D;hit_id=gi%7C304373652%7Cref%7CYP_003858397.1%7C;hit_titles=gi%7C304373652%7Cref%7CYP_003858397.1%7C gp54 baseplate-tail tube initiator %5BEnterobacteria phage RB16%5D,gi%7C299829608%7Cgb%7CADJ55401.1%7C gp54 baseplate-tail tube initiator %5BEnterobacteria phage RB16%5D;length=287 +Merlin_3 blast match_part 3 9 . . . Gap=M7;ID=b2g.2.37.0.0;Parent=b2g.2.37.0 +Merlin_3 blast match_part 13 33 . . . Gap=M21;ID=b2g.2.37.0.1;Parent=b2g.2.37.0 +Merlin_3 blast match_part 37 39 . . . Gap=M3;ID=b2g.2.37.0.2;Parent=b2g.2.37.0 +Merlin_3 blast match_part 43 54 . . . Gap=M12;ID=b2g.2.37.0.3;Parent=b2g.2.37.0 +Merlin_3 blast match_part 64 72 . . . Gap=M9;ID=b2g.2.37.0.4;Parent=b2g.2.37.0 +Merlin_3 blast match_part 77 103 . . . Gap=M10 I1 M16;ID=b2g.2.37.0.5;Parent=b2g.2.37.0 +Merlin_3 blast match_part 107 115 . . . Gap=M9;ID=b2g.2.37.0.6;Parent=b2g.2.37.0 +Merlin_3 blast match_part 122 131 . . . Gap=M10;ID=b2g.2.37.0.7;Parent=b2g.2.37.0 +Merlin_3 blast match_part 135 142 . . . Gap=M8;ID=b2g.2.37.0.8;Parent=b2g.2.37.0 +Merlin_3 blast match_part 146 154 . . . Gap=M9;ID=b2g.2.37.0.9;Parent=b2g.2.37.0 +Merlin_3 blast match_part 158 172 . . . Gap=M15;ID=b2g.2.37.0.10;Parent=b2g.2.37.0 +Merlin_3 blast match_part 176 190 . . . Gap=M15;ID=b2g.2.37.0.11;Parent=b2g.2.37.0 +Merlin_3 blast match_part 194 222 . . . Gap=M29;ID=b2g.2.37.0.12;Parent=b2g.2.37.0 +Merlin_3 blast match_part 226 247 . . . Gap=M22;ID=b2g.2.37.0.13;Parent=b2g.2.37.0 +Merlin_3 blast protein_match 0 299 1.48333e-42 . . ID=b2g.2.38.0;accession=YP_008060625;blast_align_length=254;blast_bits=159.073;blast_frame=0;blast_gaps=13;blast_identities=89;blast_positives=145;blast_query_end=247;blast_query_start=3;blast_sbjct_end=253;blast_sbjct_start=4;blast_score=401.0;blast_strand=None;description=baseplate-tail tube initiator %5BEscherichia phage Lw1%5D;hit_id=gi%7C509141760%7Cref%7CYP_008060625.1%7C;hit_titles=gi%7C509141760%7Cref%7CYP_008060625.1%7C baseplate-tail tube initiator %5BEscherichia phage Lw1%5D,gi%7C479258587%7Cgb%7CAGJ71510.1%7C baseplate-tail tube initiator %5BEscherichia phage Lw1%5D;length=287 +Merlin_3 blast match_part 3 9 . . . Gap=M7;ID=b2g.2.38.0.0;Parent=b2g.2.38.0 +Merlin_3 blast match_part 13 33 . . . Gap=M21;ID=b2g.2.38.0.1;Parent=b2g.2.38.0 +Merlin_3 blast match_part 37 39 . . . Gap=M3;ID=b2g.2.38.0.2;Parent=b2g.2.38.0 +Merlin_3 blast match_part 43 54 . . . Gap=M12;ID=b2g.2.38.0.3;Parent=b2g.2.38.0 +Merlin_3 blast match_part 64 72 . . . Gap=M9;ID=b2g.2.38.0.4;Parent=b2g.2.38.0 +Merlin_3 blast match_part 77 103 . . . Gap=M10 I1 M16;ID=b2g.2.38.0.5;Parent=b2g.2.38.0 +Merlin_3 blast match_part 107 115 . . . Gap=M9;ID=b2g.2.38.0.6;Parent=b2g.2.38.0 +Merlin_3 blast match_part 122 131 . . . Gap=M10;ID=b2g.2.38.0.7;Parent=b2g.2.38.0 +Merlin_3 blast match_part 135 142 . . . Gap=M8;ID=b2g.2.38.0.8;Parent=b2g.2.38.0 +Merlin_3 blast match_part 146 154 . . . Gap=M9;ID=b2g.2.38.0.9;Parent=b2g.2.38.0 +Merlin_3 blast match_part 158 172 . . . Gap=M15;ID=b2g.2.38.0.10;Parent=b2g.2.38.0 +Merlin_3 blast match_part 176 190 . . . Gap=M15;ID=b2g.2.38.0.11;Parent=b2g.2.38.0 +Merlin_3 blast match_part 194 222 . . . Gap=M29;ID=b2g.2.38.0.12;Parent=b2g.2.38.0 +Merlin_3 blast match_part 226 247 . . . Gap=M22;ID=b2g.2.38.0.13;Parent=b2g.2.38.0 +Merlin_3 blast protein_match 0 299 3.02584e-42 . . ID=b2g.2.39.0;accession=YP_006986374;blast_align_length=254;blast_bits=158.303;blast_frame=0;blast_gaps=13;blast_identities=89;blast_positives=145;blast_query_end=247;blast_query_start=3;blast_sbjct_end=253;blast_sbjct_start=4;blast_score=399.0;blast_strand=None;description=baseplate-tail tube initiator %5BCronobacter phage vB_CsaM_GAP161%5D;hit_id=gi%7C414086184%7Cref%7CYP_006986374.1%7C;hit_titles=gi%7C414086184%7Cref%7CYP_006986374.1%7C baseplate-tail tube initiator %5BCronobacter phage vB_CsaM_GAP161%5D,gi%7C378566509%7Cgb%7CAFC22205.1%7C baseplate-tail tube initiator %5BCronobacter phage vB_CsaM_GAP161%5D;length=287 +Merlin_3 blast match_part 3 9 . . . Gap=M7;ID=b2g.2.39.0.0;Parent=b2g.2.39.0 +Merlin_3 blast match_part 13 33 . . . Gap=M21;ID=b2g.2.39.0.1;Parent=b2g.2.39.0 +Merlin_3 blast match_part 37 39 . . . Gap=M3;ID=b2g.2.39.0.2;Parent=b2g.2.39.0 +Merlin_3 blast match_part 43 54 . . . Gap=M12;ID=b2g.2.39.0.3;Parent=b2g.2.39.0 +Merlin_3 blast match_part 64 72 . . . Gap=M9;ID=b2g.2.39.0.4;Parent=b2g.2.39.0 +Merlin_3 blast match_part 77 103 . . . Gap=M10 I1 M16;ID=b2g.2.39.0.5;Parent=b2g.2.39.0 +Merlin_3 blast match_part 107 115 . . . Gap=M9;ID=b2g.2.39.0.6;Parent=b2g.2.39.0 +Merlin_3 blast match_part 122 131 . . . Gap=M10;ID=b2g.2.39.0.7;Parent=b2g.2.39.0 +Merlin_3 blast match_part 135 142 . . . Gap=M8;ID=b2g.2.39.0.8;Parent=b2g.2.39.0 +Merlin_3 blast match_part 146 154 . . . Gap=M9;ID=b2g.2.39.0.9;Parent=b2g.2.39.0 +Merlin_3 blast match_part 158 172 . . . Gap=M15;ID=b2g.2.39.0.10;Parent=b2g.2.39.0 +Merlin_3 blast match_part 176 190 . . . Gap=M15;ID=b2g.2.39.0.11;Parent=b2g.2.39.0 +Merlin_3 blast match_part 194 222 . . . Gap=M29;ID=b2g.2.39.0.12;Parent=b2g.2.39.0 +Merlin_3 blast match_part 227 247 . . . Gap=M21;ID=b2g.2.39.0.13;Parent=b2g.2.39.0 +Merlin_3 blast protein_match 0 301 5.9168e-41 . . ID=b2g.2.40.0;accession=YP_007348741;blast_align_length=254;blast_bits=154.836;blast_frame=0;blast_gaps=15;blast_identities=91;blast_positives=140;blast_query_end=247;blast_query_start=4;blast_sbjct_end=253;blast_sbjct_start=5;blast_score=390.0;blast_strand=None;description=baseplate-tail tube initiator %5BKlebsiella phage KP27%5D;hit_id=gi%7C448260647%7Cref%7CYP_007348741.1%7C;hit_titles=gi%7C448260647%7Cref%7CYP_007348741.1%7C baseplate-tail tube initiator %5BKlebsiella phage KP27%5D,gi%7C370343456%7Cgb%7CAEX26585.1%7C baseplate-tail tube initiator %5BKlebsiella phage KP27%5D;length=287 +Merlin_3 blast match_part 4 9 . . . Gap=M6;ID=b2g.2.40.0.0;Parent=b2g.2.40.0 +Merlin_3 blast match_part 13 33 . . . Gap=M21;ID=b2g.2.40.0.1;Parent=b2g.2.40.0 +Merlin_3 blast match_part 37 39 . . . Gap=M3;ID=b2g.2.40.0.2;Parent=b2g.2.40.0 +Merlin_3 blast match_part 43 56 . . . Gap=M14;ID=b2g.2.40.0.3;Parent=b2g.2.40.0 +Merlin_3 blast match_part 61 64 . . . Gap=M4;ID=b2g.2.40.0.4;Parent=b2g.2.40.0 +Merlin_3 blast match_part 68 71 . . . Gap=M4;ID=b2g.2.40.0.5;Parent=b2g.2.40.0 +Merlin_3 blast match_part 78 103 . . . Gap=M1 I1 M7 I1 M16;ID=b2g.2.40.0.6;Parent=b2g.2.40.0 +Merlin_3 blast match_part 107 115 . . . Gap=M9;ID=b2g.2.40.0.7;Parent=b2g.2.40.0 +Merlin_3 blast match_part 122 131 . . . Gap=M10;ID=b2g.2.40.0.8;Parent=b2g.2.40.0 +Merlin_3 blast match_part 135 142 . . . Gap=M8;ID=b2g.2.40.0.9;Parent=b2g.2.40.0 +Merlin_3 blast match_part 146 154 . . . Gap=M9;ID=b2g.2.40.0.10;Parent=b2g.2.40.0 +Merlin_3 blast match_part 158 172 . . . Gap=M15;ID=b2g.2.40.0.11;Parent=b2g.2.40.0 +Merlin_3 blast match_part 176 190 . . . Gap=M15;ID=b2g.2.40.0.12;Parent=b2g.2.40.0 +Merlin_3 blast match_part 194 222 . . . Gap=M29;ID=b2g.2.40.0.13;Parent=b2g.2.40.0 +Merlin_3 blast match_part 228 247 . . . Gap=M20;ID=b2g.2.40.0.14;Parent=b2g.2.40.0 +Merlin_3 blast protein_match -1 302 1.15825e-40 . . ID=b2g.2.41.0;accession=YP_003579966;blast_align_length=254;blast_bits=154.066;blast_frame=0;blast_gaps=15;blast_identities=91;blast_positives=140;blast_query_end=247;blast_query_start=4;blast_sbjct_end=254;blast_sbjct_start=6;blast_score=388.0;blast_strand=None;description=gp54 baseplate subunit %5BKlebsiella phage KP15%5D;hit_id=gi%7C294661513%7Cref%7CYP_003579966.1%7C;hit_titles=gi%7C294661513%7Cref%7CYP_003579966.1%7C gp54 baseplate subunit %5BKlebsiella phage KP15%5D,gi%7C292660674%7Cgb%7CADE34922.1%7C gp54 baseplate subunit %5BKlebsiella phage KP15%5D;length=288 +Merlin_3 blast match_part 4 9 . . . Gap=M6;ID=b2g.2.41.0.0;Parent=b2g.2.41.0 +Merlin_3 blast match_part 13 33 . . . Gap=M21;ID=b2g.2.41.0.1;Parent=b2g.2.41.0 +Merlin_3 blast match_part 37 39 . . . Gap=M3;ID=b2g.2.41.0.2;Parent=b2g.2.41.0 +Merlin_3 blast match_part 43 56 . . . Gap=M14;ID=b2g.2.41.0.3;Parent=b2g.2.41.0 +Merlin_3 blast match_part 61 64 . . . Gap=M4;ID=b2g.2.41.0.4;Parent=b2g.2.41.0 +Merlin_3 blast match_part 68 71 . . . Gap=M4;ID=b2g.2.41.0.5;Parent=b2g.2.41.0 +Merlin_3 blast match_part 78 103 . . . Gap=M1 I1 M7 I1 M16;ID=b2g.2.41.0.6;Parent=b2g.2.41.0 +Merlin_3 blast match_part 107 115 . . . Gap=M9;ID=b2g.2.41.0.7;Parent=b2g.2.41.0 +Merlin_3 blast match_part 122 131 . . . Gap=M10;ID=b2g.2.41.0.8;Parent=b2g.2.41.0 +Merlin_3 blast match_part 135 142 . . . Gap=M8;ID=b2g.2.41.0.9;Parent=b2g.2.41.0 +Merlin_3 blast match_part 146 154 . . . Gap=M9;ID=b2g.2.41.0.10;Parent=b2g.2.41.0 +Merlin_3 blast match_part 158 172 . . . Gap=M15;ID=b2g.2.41.0.11;Parent=b2g.2.41.0 +Merlin_3 blast match_part 176 190 . . . Gap=M15;ID=b2g.2.41.0.12;Parent=b2g.2.41.0 +Merlin_3 blast match_part 194 222 . . . Gap=M29;ID=b2g.2.41.0.13;Parent=b2g.2.41.0 +Merlin_3 blast match_part 228 247 . . . Gap=M20;ID=b2g.2.41.0.14;Parent=b2g.2.41.0 +Merlin_3 blast protein_match -42 363 1.4396e-13 . . ID=b2g.2.42.0;accession=YP_009011613;blast_align_length=285;blast_bits=78.9518;blast_frame=0;blast_gaps=33;blast_identities=76;blast_positives=120;blast_query_end=276;blast_query_start=13;blast_sbjct_end=328;blast_sbjct_start=56;blast_score=193.0;blast_strand=None;description=gp54 baseplate tail tube initiator %5BAeromonas phage PX29%5D;hit_id=gi%7C593773990%7Cref%7CYP_009011613.1%7C;hit_titles=gi%7C593773990%7Cref%7CYP_009011613.1%7C gp54 baseplate tail tube initiator %5BAeromonas phage PX29%5D,gi%7C312262608%7Cgb%7CADQ52903.1%7C gp54 baseplate tail tube initiator %5BAeromonas phage PX29%5D;length=329 +Merlin_3 blast match_part 13 22 . . . Gap=M10;ID=b2g.2.42.0.0;Parent=b2g.2.42.0 +Merlin_3 blast match_part 26 26 . . . Gap=M1;ID=b2g.2.42.0.1;Parent=b2g.2.42.0 +Merlin_3 blast match_part 31 42 . . . Gap=M12;ID=b2g.2.42.0.2;Parent=b2g.2.42.0 +Merlin_3 blast match_part 50 69 . . . Gap=M17 I1 M2;ID=b2g.2.42.0.3;Parent=b2g.2.42.0 +Merlin_3 blast match_part 76 78 . . . Gap=M3;ID=b2g.2.42.0.4;Parent=b2g.2.42.0 +Merlin_3 blast match_part 83 92 . . . Gap=M10;ID=b2g.2.42.0.5;Parent=b2g.2.42.0 +Merlin_3 blast match_part 96 105 . . . Gap=M10;ID=b2g.2.42.0.6;Parent=b2g.2.42.0 +Merlin_3 blast match_part 110 113 . . . Gap=M4;ID=b2g.2.42.0.7;Parent=b2g.2.42.0 +Merlin_3 blast match_part 118 131 . . . Gap=M14;ID=b2g.2.42.0.8;Parent=b2g.2.42.0 +Merlin_3 blast match_part 138 142 . . . Gap=M5;ID=b2g.2.42.0.9;Parent=b2g.2.42.0 +Merlin_3 blast match_part 146 146 . . . Gap=M1;ID=b2g.2.42.0.10;Parent=b2g.2.42.0 +Merlin_3 blast match_part 150 162 . . . Gap=M13;ID=b2g.2.42.0.11;Parent=b2g.2.42.0 +Merlin_3 blast match_part 167 169 . . . Gap=M3;ID=b2g.2.42.0.12;Parent=b2g.2.42.0 +Merlin_3 blast match_part 177 187 . . . Gap=M11;ID=b2g.2.42.0.13;Parent=b2g.2.42.0 +Merlin_3 blast match_part 193 194 . . . Gap=M2;ID=b2g.2.42.0.14;Parent=b2g.2.42.0 +Merlin_3 blast match_part 198 201 . . . Gap=M4;ID=b2g.2.42.0.15;Parent=b2g.2.42.0 +Merlin_3 blast match_part 206 214 . . . Gap=M9;ID=b2g.2.42.0.16;Parent=b2g.2.42.0 +Merlin_3 blast match_part 218 244 . . . Gap=M27;ID=b2g.2.42.0.17;Parent=b2g.2.42.0 +Merlin_3 blast match_part 249 250 . . . Gap=M2;ID=b2g.2.42.0.18;Parent=b2g.2.42.0 +Merlin_3 blast match_part 255 256 . . . Gap=M2;ID=b2g.2.42.0.19;Parent=b2g.2.42.0 +Merlin_3 blast match_part 260 267 . . . Gap=M8;ID=b2g.2.42.0.20;Parent=b2g.2.42.0 +Merlin_3 blast match_part 271 276 . . . Gap=M6;ID=b2g.2.42.0.21;Parent=b2g.2.42.0 +Merlin_3 blast protein_match -44 358 9.24146e-12 . . ID=b2g.2.43.0;accession=NP_944078;blast_align_length=276;blast_bits=73.9442;blast_frame=0;blast_gaps=19;blast_identities=69;blast_positives=113;blast_query_end=274;blast_query_start=13;blast_sbjct_end=328;blast_sbjct_start=58;blast_score=180.0;blast_strand=None;description=gp54 baseplate tail tube initiator %5BAeromonas phage Aeh1%5D;hit_id=gi%7C38640122%7Cref%7CNP_944078.1%7C;hit_titles=gi%7C38640122%7Cref%7CNP_944078.1%7C gp54 baseplate tail tube initiator %5BAeromonas phage Aeh1%5D,gi%7C33414812%7Cgb%7CAAQ17855.1%7C gp54 baseplate tail tube initiator %5BAeromonas phage Aeh1%5D;length=331 +Merlin_3 blast match_part 13 22 . . . Gap=M10;ID=b2g.2.43.0.0;Parent=b2g.2.43.0 +Merlin_3 blast match_part 26 26 . . . Gap=M1;ID=b2g.2.43.0.1;Parent=b2g.2.43.0 +Merlin_3 blast match_part 31 34 . . . Gap=M4;ID=b2g.2.43.0.2;Parent=b2g.2.43.0 +Merlin_3 blast match_part 38 38 . . . Gap=M1;ID=b2g.2.43.0.3;Parent=b2g.2.43.0 +Merlin_3 blast match_part 43 45 . . . Gap=M3;ID=b2g.2.43.0.4;Parent=b2g.2.43.0 +Merlin_3 blast match_part 49 49 . . . Gap=M1;ID=b2g.2.43.0.5;Parent=b2g.2.43.0 +Merlin_3 blast match_part 54 69 . . . Gap=M13 I1 M2;ID=b2g.2.43.0.6;Parent=b2g.2.43.0 +Merlin_3 blast match_part 76 78 . . . Gap=M3;ID=b2g.2.43.0.7;Parent=b2g.2.43.0 +Merlin_3 blast match_part 83 92 . . . Gap=M10;ID=b2g.2.43.0.8;Parent=b2g.2.43.0 +Merlin_3 blast match_part 96 105 . . . Gap=M10;ID=b2g.2.43.0.9;Parent=b2g.2.43.0 +Merlin_3 blast match_part 110 113 . . . Gap=M4;ID=b2g.2.43.0.10;Parent=b2g.2.43.0 +Merlin_3 blast match_part 118 131 . . . Gap=M14;ID=b2g.2.43.0.11;Parent=b2g.2.43.0 +Merlin_3 blast match_part 138 142 . . . Gap=M5;ID=b2g.2.43.0.12;Parent=b2g.2.43.0 +Merlin_3 blast match_part 146 146 . . . Gap=M1;ID=b2g.2.43.0.13;Parent=b2g.2.43.0 +Merlin_3 blast match_part 150 162 . . . Gap=M13;ID=b2g.2.43.0.14;Parent=b2g.2.43.0 +Merlin_3 blast match_part 167 169 . . . Gap=M3;ID=b2g.2.43.0.15;Parent=b2g.2.43.0 +Merlin_3 blast match_part 177 187 . . . Gap=M11;ID=b2g.2.43.0.16;Parent=b2g.2.43.0 +Merlin_3 blast match_part 193 194 . . . Gap=M2;ID=b2g.2.43.0.17;Parent=b2g.2.43.0 +Merlin_3 blast match_part 198 201 . . . Gap=M4;ID=b2g.2.43.0.18;Parent=b2g.2.43.0 +Merlin_3 blast match_part 206 214 . . . Gap=M9;ID=b2g.2.43.0.19;Parent=b2g.2.43.0 +Merlin_3 blast match_part 218 221 . . . Gap=M4;ID=b2g.2.43.0.20;Parent=b2g.2.43.0 +Merlin_3 blast match_part 225 244 . . . Gap=M20;ID=b2g.2.43.0.21;Parent=b2g.2.43.0 +Merlin_3 blast match_part 249 249 . . . Gap=M1;ID=b2g.2.43.0.22;Parent=b2g.2.43.0 +Merlin_3 blast match_part 255 256 . . . Gap=M2;ID=b2g.2.43.0.23;Parent=b2g.2.43.0 +Merlin_3 blast match_part 260 267 . . . Gap=M8;ID=b2g.2.43.0.24;Parent=b2g.2.43.0 +Merlin_3 blast match_part 271 274 . . . Gap=M4;ID=b2g.2.43.0.25;Parent=b2g.2.43.0 +Merlin_3 blast protein_match -41 414 2.13981e-10 . . ID=b2g.2.44.0;accession=YP_003969616;blast_align_length=184;blast_bits=70.0922;blast_frame=0;blast_gaps=9;blast_identities=46;blast_positives=83;blast_query_end=264;blast_query_start=86;blast_sbjct_end=307;blast_sbjct_start=128;blast_score=170.0;blast_strand=None;description=unnamed protein product %5BAeromonas phage phiAS5%5D;hit_id=gi%7C310722793%7Cref%7CYP_003969616.1%7C;hit_titles=gi%7C310722793%7Cref%7CYP_003969616.1%7C unnamed protein product %5BAeromonas phage phiAS5%5D,gi%7C306021636%7Cgb%7CADM80170.1%7C baseplate tail tube initiator %5BAeromonas phage phiAS5%5D;length=323 +Merlin_3 blast match_part 86 92 . . . Gap=M7;ID=b2g.2.44.0.0;Parent=b2g.2.44.0 +Merlin_3 blast match_part 96 105 . . . Gap=M10;ID=b2g.2.44.0.1;Parent=b2g.2.44.0 +Merlin_3 blast match_part 110 113 . . . Gap=M4;ID=b2g.2.44.0.2;Parent=b2g.2.44.0 +Merlin_3 blast match_part 118 131 . . . Gap=M14;ID=b2g.2.44.0.3;Parent=b2g.2.44.0 +Merlin_3 blast match_part 138 146 . . . Gap=M9;ID=b2g.2.44.0.4;Parent=b2g.2.44.0 +Merlin_3 blast match_part 150 162 . . . Gap=M13;ID=b2g.2.44.0.5;Parent=b2g.2.44.0 +Merlin_3 blast match_part 166 169 . . . Gap=M4;ID=b2g.2.44.0.6;Parent=b2g.2.44.0 +Merlin_3 blast match_part 177 183 . . . Gap=M7;ID=b2g.2.44.0.7;Parent=b2g.2.44.0 +Merlin_3 blast match_part 187 187 . . . Gap=M1;ID=b2g.2.44.0.8;Parent=b2g.2.44.0 +Merlin_3 blast match_part 194 194 . . . Gap=M1;ID=b2g.2.44.0.9;Parent=b2g.2.44.0 +Merlin_3 blast match_part 198 201 . . . Gap=M4;ID=b2g.2.44.0.10;Parent=b2g.2.44.0 +Merlin_3 blast match_part 206 214 . . . Gap=M9;ID=b2g.2.44.0.11;Parent=b2g.2.44.0 +Merlin_3 blast match_part 218 221 . . . Gap=M4;ID=b2g.2.44.0.12;Parent=b2g.2.44.0 +Merlin_3 blast match_part 225 244 . . . Gap=M20;ID=b2g.2.44.0.13;Parent=b2g.2.44.0 +Merlin_3 blast match_part 249 250 . . . Gap=M2;ID=b2g.2.44.0.14;Parent=b2g.2.44.0 +Merlin_3 blast match_part 255 256 . . . Gap=M2;ID=b2g.2.44.0.15;Parent=b2g.2.44.0 +Merlin_3 blast match_part 260 264 . . . Gap=M5;ID=b2g.2.44.0.16;Parent=b2g.2.44.0 +Merlin_3 blast protein_match -38 408 6.9619e-10 . . ID=b2g.2.45.0;accession=YP_007010370;blast_align_length=183;blast_bits=68.5514;blast_frame=0;blast_gaps=7;blast_identities=47;blast_positives=80;blast_query_end=264;blast_query_start=86;blast_sbjct_end=304;blast_sbjct_start=125;blast_score=166.0;blast_strand=None;description=baseplate-tail tube initiator %5BAeromonas phage CC2%5D;hit_id=gi%7C423261834%7Cref%7CYP_007010370.1%7C;hit_titles=gi%7C423261834%7Cref%7CYP_007010370.1%7C baseplate-tail tube initiator %5BAeromonas phage CC2%5D,gi%7C394778355%7Cgb%7CAFN39562.1%7C baseplate-tail tube initiator %5BAeromonas phage CC2%5D;length=318 +Merlin_3 blast match_part 86 91 . . . Gap=M6;ID=b2g.2.45.0.0;Parent=b2g.2.45.0 +Merlin_3 blast match_part 96 106 . . . Gap=M11;ID=b2g.2.45.0.1;Parent=b2g.2.45.0 +Merlin_3 blast match_part 110 113 . . . Gap=M4;ID=b2g.2.45.0.2;Parent=b2g.2.45.0 +Merlin_3 blast match_part 118 135 . . . Gap=M18;ID=b2g.2.45.0.3;Parent=b2g.2.45.0 +Merlin_3 blast match_part 139 140 . . . Gap=M2;ID=b2g.2.45.0.4;Parent=b2g.2.45.0 +Merlin_3 blast match_part 146 146 . . . Gap=M1;ID=b2g.2.45.0.5;Parent=b2g.2.45.0 +Merlin_3 blast match_part 150 153 . . . Gap=M4;ID=b2g.2.45.0.6;Parent=b2g.2.45.0 +Merlin_3 blast match_part 158 162 . . . Gap=M5;ID=b2g.2.45.0.7;Parent=b2g.2.45.0 +Merlin_3 blast match_part 166 166 . . . Gap=M1;ID=b2g.2.45.0.8;Parent=b2g.2.45.0 +Merlin_3 blast match_part 174 187 . . . Gap=M14;ID=b2g.2.45.0.9;Parent=b2g.2.45.0 +Merlin_3 blast match_part 198 201 . . . Gap=M4;ID=b2g.2.45.0.10;Parent=b2g.2.45.0 +Merlin_3 blast match_part 206 245 . . . Gap=M40;ID=b2g.2.45.0.11;Parent=b2g.2.45.0 +Merlin_3 blast match_part 249 249 . . . Gap=M1;ID=b2g.2.45.0.12;Parent=b2g.2.45.0 +Merlin_3 blast match_part 255 264 . . . Gap=M10;ID=b2g.2.45.0.13;Parent=b2g.2.45.0 +Merlin_3 blast protein_match -35 405 4.67582e-09 . . ID=b2g.2.46.0;accession=YP_004300954;blast_align_length=183;blast_bits=66.2402;blast_frame=0;blast_gaps=7;blast_identities=47;blast_positives=79;blast_query_end=264;blast_query_start=86;blast_sbjct_end=301;blast_sbjct_start=122;blast_score=160.0;blast_strand=None;description=gp54 baseplate-tail tube initiator %5BAeromonas phage 65%5D;hit_id=gi%7C326536523%7Cref%7CYP_004300954.1%7C;hit_titles=gi%7C326536523%7Cref%7CYP_004300954.1%7C gp54 baseplate-tail tube initiator %5BAeromonas phage 65%5D,gi%7C312262869%7Cgb%7CADQ53125.1%7C gp54 baseplate-tail tube initiator %5BAeromonas phage 65%5D;length=315 +Merlin_3 blast match_part 86 91 . . . Gap=M6;ID=b2g.2.46.0.0;Parent=b2g.2.46.0 +Merlin_3 blast match_part 96 102 . . . Gap=M7;ID=b2g.2.46.0.1;Parent=b2g.2.46.0 +Merlin_3 blast match_part 107 113 . . . Gap=M7;ID=b2g.2.46.0.2;Parent=b2g.2.46.0 +Merlin_3 blast match_part 118 135 . . . Gap=M18;ID=b2g.2.46.0.3;Parent=b2g.2.46.0 +Merlin_3 blast match_part 139 140 . . . Gap=M2;ID=b2g.2.46.0.4;Parent=b2g.2.46.0 +Merlin_3 blast match_part 146 146 . . . Gap=M1;ID=b2g.2.46.0.5;Parent=b2g.2.46.0 +Merlin_3 blast match_part 150 153 . . . Gap=M4;ID=b2g.2.46.0.6;Parent=b2g.2.46.0 +Merlin_3 blast match_part 158 162 . . . Gap=M5;ID=b2g.2.46.0.7;Parent=b2g.2.46.0 +Merlin_3 blast match_part 166 166 . . . Gap=M1;ID=b2g.2.46.0.8;Parent=b2g.2.46.0 +Merlin_3 blast match_part 174 187 . . . Gap=M14;ID=b2g.2.46.0.9;Parent=b2g.2.46.0 +Merlin_3 blast match_part 199 201 . . . Gap=M3;ID=b2g.2.46.0.10;Parent=b2g.2.46.0 +Merlin_3 blast match_part 206 245 . . . Gap=M40;ID=b2g.2.46.0.11;Parent=b2g.2.46.0 +Merlin_3 blast match_part 249 249 . . . Gap=M1;ID=b2g.2.46.0.12;Parent=b2g.2.46.0 +Merlin_3 blast match_part 255 264 . . . Gap=M10;ID=b2g.2.46.0.13;Parent=b2g.2.46.0 +Merlin_3 blast protein_match 42 370 9.87211e-05 . . ID=b2g.2.47.0;accession=NP_899576;blast_align_length=126;blast_bits=52.373;blast_frame=0;blast_gaps=0;blast_identities=27;blast_positives=54;blast_query_end=247;blast_query_start=122;blast_sbjct_end=206;blast_sbjct_start=81;blast_score=124.0;blast_strand=None;description=gp19 %5BVibrio phage KVP40%5D;hit_id=gi%7C34419563%7Cref%7CNP_899576.1%7C;hit_titles=gi%7C34419563%7Cref%7CNP_899576.1%7C gp19 %5BVibrio phage KVP40%5D,gi%7C34333244%7Cgb%7CAAQ64399.1%7C gp19 %5BVibrio phage KVP40%5D;length=248 +Merlin_3 blast match_part 122 133 . . . Gap=M12;ID=b2g.2.47.0.0;Parent=b2g.2.47.0 +Merlin_3 blast match_part 138 140 . . . Gap=M3;ID=b2g.2.47.0.1;Parent=b2g.2.47.0 +Merlin_3 blast match_part 146 166 . . . Gap=M21;ID=b2g.2.47.0.2;Parent=b2g.2.47.0 +Merlin_3 blast match_part 172 177 . . . Gap=M6;ID=b2g.2.47.0.3;Parent=b2g.2.47.0 +Merlin_3 blast match_part 181 181 . . . Gap=M1;ID=b2g.2.47.0.4;Parent=b2g.2.47.0 +Merlin_3 blast match_part 186 186 . . . Gap=M1;ID=b2g.2.47.0.5;Parent=b2g.2.47.0 +Merlin_3 blast match_part 193 194 . . . Gap=M2;ID=b2g.2.47.0.6;Parent=b2g.2.47.0 +Merlin_3 blast match_part 199 207 . . . Gap=M9;ID=b2g.2.47.0.7;Parent=b2g.2.47.0 +Merlin_3 blast match_part 212 213 . . . Gap=M2;ID=b2g.2.47.0.8;Parent=b2g.2.47.0 +Merlin_3 blast match_part 221 246 . . . Gap=M27;ID=b2g.2.47.0.9;Parent=b2g.2.47.0 +Merlin_3 blast protein_match 42 370 0.000105334 . . ID=b2g.2.48.0;accession=AFN37561;blast_align_length=126;blast_bits=52.373;blast_frame=0;blast_gaps=0;blast_identities=27;blast_positives=54;blast_query_end=247;blast_query_start=122;blast_sbjct_end=206;blast_sbjct_start=81;blast_score=124.0;blast_strand=None;description=phage baseplate-tail tube initiator %5BVibriophage phi-pp2%5D;hit_id=gi%7C394774889%7Cgb%7CAFN37561.1%7C;hit_titles=gi%7C394774889%7Cgb%7CAFN37561.1%7C phage baseplate-tail tube initiator %5BVibriophage phi-pp2%5D;length=248 +Merlin_3 blast match_part 122 133 . . . Gap=M12;ID=b2g.2.48.0.0;Parent=b2g.2.48.0 +Merlin_3 blast match_part 138 140 . . . Gap=M3;ID=b2g.2.48.0.1;Parent=b2g.2.48.0 +Merlin_3 blast match_part 146 166 . . . Gap=M21;ID=b2g.2.48.0.2;Parent=b2g.2.48.0 +Merlin_3 blast match_part 172 177 . . . Gap=M6;ID=b2g.2.48.0.3;Parent=b2g.2.48.0 +Merlin_3 blast match_part 181 181 . . . Gap=M1;ID=b2g.2.48.0.4;Parent=b2g.2.48.0 +Merlin_3 blast match_part 186 186 . . . Gap=M1;ID=b2g.2.48.0.5;Parent=b2g.2.48.0 +Merlin_3 blast match_part 193 194 . . . Gap=M2;ID=b2g.2.48.0.6;Parent=b2g.2.48.0 +Merlin_3 blast match_part 199 207 . . . Gap=M9;ID=b2g.2.48.0.7;Parent=b2g.2.48.0 +Merlin_3 blast match_part 212 213 . . . Gap=M2;ID=b2g.2.48.0.8;Parent=b2g.2.48.0 +Merlin_3 blast match_part 221 246 . . . Gap=M27;ID=b2g.2.48.0.9;Parent=b2g.2.48.0 +Merlin_3 blast protein_match 42 370 0.000428314 . . ID=b2g.2.49.0;accession=YP_008125529;blast_align_length=126;blast_bits=50.447;blast_frame=0;blast_gaps=0;blast_identities=26;blast_positives=53;blast_query_end=247;blast_query_start=122;blast_sbjct_end=206;blast_sbjct_start=81;blast_score=119.0;blast_strand=None;description=hypothetical protein VPFG_00383 %5BVibrio phage nt-1%5D;hit_id=gi%7C514050755%7Cref%7CYP_008125529.1%7C;hit_titles=gi%7C514050755%7Cref%7CYP_008125529.1%7C hypothetical protein VPFG_00383 %5BVibrio phage nt-1%5D,gi%7C509419912%7Cgb%7CAGN30380.1%7C baseplate tail tube initiator %5BVibrio phage nt-1%5D;length=248 +Merlin_3 blast match_part 122 133 . . . Gap=M12;ID=b2g.2.49.0.0;Parent=b2g.2.49.0 +Merlin_3 blast match_part 138 140 . . . Gap=M3;ID=b2g.2.49.0.1;Parent=b2g.2.49.0 +Merlin_3 blast match_part 146 166 . . . Gap=M21;ID=b2g.2.49.0.2;Parent=b2g.2.49.0 +Merlin_3 blast match_part 172 177 . . . Gap=M6;ID=b2g.2.49.0.3;Parent=b2g.2.49.0 +Merlin_3 blast match_part 181 181 . . . Gap=M1;ID=b2g.2.49.0.4;Parent=b2g.2.49.0 +Merlin_3 blast match_part 186 186 . . . Gap=M1;ID=b2g.2.49.0.5;Parent=b2g.2.49.0 +Merlin_3 blast match_part 194 194 . . . Gap=M1;ID=b2g.2.49.0.6;Parent=b2g.2.49.0 +Merlin_3 blast match_part 199 207 . . . Gap=M9;ID=b2g.2.49.0.7;Parent=b2g.2.49.0 +Merlin_3 blast match_part 212 213 . . . Gap=M2;ID=b2g.2.49.0.8;Parent=b2g.2.49.0 +Merlin_3 blast match_part 221 246 . . . Gap=M27;ID=b2g.2.49.0.9;Parent=b2g.2.49.0 +##gff-version 3 ##sequence-region Merlin_4 1 4 -Merlin_4 blast protein_match 3 352 0.0 . . ID=biopygen73;accession=YP_007501228;description=baseplate subunit %5BSalmonella phage S16%5D;hit_id=gi%7C456351276%7Cref%7CYP_007501228.1%7C;hit_titles=gi%7C456351276%7Cref%7CYP_007501228.1%7C baseplate subunit %5BSalmonella phage S16%5D,gi%7C347466341%7Cgb%7CAEO97127.1%7C baseplate subunit %5BSalmonella phage S16%5D;length=350 -Merlin_4 blast match_part 5 10 . . . Gap=M6;ID=gi%7C456351276%7Cref%7CYP_007501228.1%7C;Parent=biopygen73 -Merlin_4 blast match_part 15 351 . . . Gap=M337;ID=gi%7C456351276%7Cref%7CYP_007501228.1%7C;Parent=biopygen73 -Merlin_4 blast protein_match 3 352 0.0 . . ID=biopygen74;accession=AFU64134;description=baseplate tail tube cap %5BSalmonella phage STML-198%5D;hit_id=gi%7C408387125%7Cgb%7CAFU64134.1%7C;hit_titles=gi%7C408387125%7Cgb%7CAFU64134.1%7C baseplate tail tube cap %5BSalmonella phage STML-198%5D;length=350 -Merlin_4 blast match_part 5 10 . . . Gap=M6;ID=gi%7C408387125%7Cgb%7CAFU64134.1%7C;Parent=biopygen74 -Merlin_4 blast match_part 15 351 . . . Gap=M337;ID=gi%7C408387125%7Cgb%7CAFU64134.1%7C;Parent=biopygen74 -Merlin_4 blast protein_match 1 350 0.0 . . ID=biopygen75;accession=YP_004010054;description=gp48 base plate tail tube cap %5BEnterobacteria phage CC31%5D;hit_id=gi%7C311993188%7Cref%7CYP_004010054.1%7C;hit_titles=gi%7C311993188%7Cref%7CYP_004010054.1%7C gp48 base plate tail tube cap %5BEnterobacteria phage CC31%5D,gi%7C284178026%7Cgb%7CADB81692.1%7C gp48 base plate tail tube cap %5BEnterobacteria phage CC31%5D;length=349 -Merlin_4 blast match_part 1 98 . . . Gap=M11 I2 M85;ID=gi%7C311993188%7Cref%7CYP_004010054.1%7C;Parent=biopygen75 -Merlin_4 blast match_part 102 351 . . . Gap=M250;ID=gi%7C311993188%7Cref%7CYP_004010054.1%7C;Parent=biopygen75 -Merlin_4 blast protein_match 1 350 0.0 . . ID=biopygen76;accession=YP_009005475;description=baseplate subunit %5BEnterobacter phage PG7%5D;hit_id=gi%7C589889939%7Cref%7CYP_009005475.1%7C;hit_titles=gi%7C589889939%7Cref%7CYP_009005475.1%7C baseplate subunit %5BEnterobacter phage PG7%5D,gi%7C583927852%7Cgb%7CAHI61114.1%7C baseplate subunit %5BEnterobacter phage PG7%5D;length=349 -Merlin_4 blast match_part 1 11 . . . Gap=M11;ID=gi%7C589889939%7Cref%7CYP_009005475.1%7C;Parent=biopygen76 -Merlin_4 blast match_part 17 98 . . . Gap=M82;ID=gi%7C589889939%7Cref%7CYP_009005475.1%7C;Parent=biopygen76 -Merlin_4 blast match_part 102 351 . . . Gap=M250;ID=gi%7C589889939%7Cref%7CYP_009005475.1%7C;Parent=biopygen76 -Merlin_4 blast protein_match 3 352 1.69091e-171 . . ID=biopygen77;accession=YP_006986748;description=baseplate tail tube cap %5BEnterobacteria phage vB_EcoM_ACG-C40%5D;hit_id=gi%7C414086559%7Cref%7CYP_006986748.1%7C;hit_titles=gi%7C414086559%7Cref%7CYP_006986748.1%7C baseplate tail tube cap %5BEnterobacteria phage vB_EcoM_ACG-C40%5D,gi%7C383396340%7Cgb%7CAFH20156.1%7C baseplate tail tube cap %5BEnterobacteria phage vB_EcoM_ACG-C40%5D;length=364 -Merlin_4 blast match_part 17 18 . . . Gap=M2;ID=gi%7C414086559%7Cref%7CYP_006986748.1%7C;Parent=biopygen77 -Merlin_4 blast match_part 22 29 . . . Gap=M8;ID=gi%7C414086559%7Cref%7CYP_006986748.1%7C;Parent=biopygen77 -Merlin_4 blast match_part 35 83 . . . Gap=M49;ID=gi%7C414086559%7Cref%7CYP_006986748.1%7C;Parent=biopygen77 -Merlin_4 blast match_part 87 351 . . . Gap=M265;ID=gi%7C414086559%7Cref%7CYP_006986748.1%7C;Parent=biopygen77 -Merlin_4 blast protein_match 1 350 3.88245e-171 . . ID=biopygen78;accession=YP_007236030;description=phage baseplate tail tube cap %28T4-like gp48%29 %5BYersinia phage phiR1-RT%5D;hit_id=gi%7C431809133%7Cref%7CYP_007236030.1%7C;hit_titles=gi%7C431809133%7Cref%7CYP_007236030.1%7C phage baseplate tail tube cap %28T4-like gp48%29 %5BYersinia phage phiR1-RT%5D,gi%7C398313422%7Cemb%7CCCI88771.1%7C phage baseplate tail tube cap %28T4-like gp48%29 %5BYersinia phage phiR1-RT%5D;length=348 -Merlin_4 blast match_part 1 12 . . . Gap=M12;ID=gi%7C431809133%7Cref%7CYP_007236030.1%7C;Parent=biopygen78 -Merlin_4 blast match_part 17 91 . . . Gap=M17 I1 M49 I1 M7;ID=gi%7C431809133%7Cref%7CYP_007236030.1%7C;Parent=biopygen78 -Merlin_4 blast match_part 97 350 . . . Gap=M7 I2 M246;ID=gi%7C431809133%7Cref%7CYP_007236030.1%7C;Parent=biopygen78 -Merlin_4 blast protein_match 3 352 1.72752e-170 . . ID=biopygen79;accession=YP_002854148;description=gp48 base plate %5BEnterobacteria phage RB51%5D;hit_id=gi%7C228861125%7Cref%7CYP_002854148.1%7C;hit_titles=gi%7C228861125%7Cref%7CYP_002854148.1%7C gp48 base plate %5BEnterobacteria phage RB51%5D,gi%7C422934973%7Cref%7CYP_007004933.1%7C baseplate tail tube cap %5BEscherichia phage wV7%5D,gi%7C227438799%7Cgb%7CACP31111.1%7C gp48 base plate %5BEnterobacteria phage RB51%5D,gi%7C291290411%7Cdbj%7CBAI83206.1%7C baseplate tail tube cap %5BEnterobacteria phage AR1%5D,gi%7C343177527%7Cgb%7CAEM00853.1%7C baseplate tail tube cap %5BEscherichia phage wV7%5D;length=364 -Merlin_4 blast match_part 17 18 . . . Gap=M2;ID=gi%7C228861125%7Cref%7CYP_002854148.1%7C;Parent=biopygen79 -Merlin_4 blast match_part 22 29 . . . Gap=M8;ID=gi%7C228861125%7Cref%7CYP_002854148.1%7C;Parent=biopygen79 -Merlin_4 blast match_part 35 83 . . . Gap=M49;ID=gi%7C228861125%7Cref%7CYP_002854148.1%7C;Parent=biopygen79 -Merlin_4 blast match_part 87 347 . . . Gap=M261;ID=gi%7C228861125%7Cref%7CYP_002854148.1%7C;Parent=biopygen79 -Merlin_4 blast match_part 351 351 . . . Gap=M1;ID=gi%7C228861125%7Cref%7CYP_002854148.1%7C;Parent=biopygen79 -Merlin_4 blast protein_match 3 352 3.32248e-169 . . ID=biopygen80;accession=YP_803133;description=base plate %5BEnterobacteria phage RB32%5D;hit_id=gi%7C116326413%7Cref%7CYP_803133.1%7C;hit_titles=gi%7C116326413%7Cref%7CYP_803133.1%7C base plate %5BEnterobacteria phage RB32%5D,gi%7C228861506%7Cref%7CYP_002854527.1%7C gp48 base plate %5BEnterobacteria phage RB14%5D,gi%7C115344006%7Cgb%7CABI95015.1%7C base plate %5BEnterobacteria phage RB32%5D,gi%7C227438522%7Cgb%7CACP30835.1%7C gp48 base plate %5BEnterobacteria phage RB14%5D,gi%7C398313741%7Cemb%7CCCI89088.1%7C phage baseplate tail tube cap %28T4-like gp48%29 %5BYersinia phage phiD1%5D,gi%7C525334459%7Cgb%7CAGR46141.1%7C baseplate tail tube cap %5BYersinia phage PST%5D;length=364 -Merlin_4 blast match_part 17 29 . . . Gap=M13;ID=gi%7C116326413%7Cref%7CYP_803133.1%7C;Parent=biopygen80 -Merlin_4 blast match_part 35 83 . . . Gap=M49;ID=gi%7C116326413%7Cref%7CYP_803133.1%7C;Parent=biopygen80 -Merlin_4 blast match_part 87 351 . . . Gap=M265;ID=gi%7C116326413%7Cref%7CYP_803133.1%7C;Parent=biopygen80 -Merlin_4 blast protein_match 3 352 1.3135e-168 . . ID=biopygen81;accession=YP_009030800;description=baseplate tail tube cap %5BEscherichia phage e11/2%5D;hit_id=gi%7C639438843%7Cref%7CYP_009030800.1%7C;hit_titles=gi%7C639438843%7Cref%7CYP_009030800.1%7C baseplate tail tube cap %5BEscherichia phage e11/2%5D,gi%7C628971671%7Cgb%7CAHY83393.1%7C baseplate tail tube cap %5BEscherichia phage e11/2%5D;length=364 -Merlin_4 blast match_part 17 29 . . . Gap=M13;ID=gi%7C639438843%7Cref%7CYP_009030800.1%7C;Parent=biopygen81 -Merlin_4 blast match_part 35 83 . . . Gap=M49;ID=gi%7C639438843%7Cref%7CYP_009030800.1%7C;Parent=biopygen81 -Merlin_4 blast match_part 87 351 . . . Gap=M265;ID=gi%7C639438843%7Cref%7CYP_009030800.1%7C;Parent=biopygen81 -Merlin_4 blast protein_match 3 352 1.49721e-168 . . ID=biopygen82;accession=YP_004415086;description=putative baseplate tail tube cap %5BShigella phage Shfl2%5D;hit_id=gi%7C330858711%7Cref%7CYP_004415086.1%7C;hit_titles=gi%7C330858711%7Cref%7CYP_004415086.1%7C putative baseplate tail tube cap %5BShigella phage Shfl2%5D,gi%7C422934608%7Cref%7CYP_007004569.1%7C phage baseplate protein %5BEnterobacteria phage ime09%5D,gi%7C327397645%7Cgb%7CAEA73147.1%7C putative baseplate tail tube cap %5BShigella phage Shfl2%5D,gi%7C339791391%7Cgb%7CAEK12448.1%7C phage baseplate protein %5BEnterobacteria phage ime09%5D;length=364 -Merlin_4 blast match_part 17 29 . . . Gap=M13;ID=gi%7C330858711%7Cref%7CYP_004415086.1%7C;Parent=biopygen82 -Merlin_4 blast match_part 35 83 . . . Gap=M49;ID=gi%7C330858711%7Cref%7CYP_004415086.1%7C;Parent=biopygen82 -Merlin_4 blast match_part 90 351 . . . Gap=M262;ID=gi%7C330858711%7Cref%7CYP_004415086.1%7C;Parent=biopygen82 -Merlin_4 blast protein_match 3 352 4.36088e-168 . . ID=biopygen83;accession=AFO10717;description=baseplate protein %5BEscherichia phage ECML-134%5D;hit_id=gi%7C397134210%7Cgb%7CAFO10717.1%7C;hit_titles=gi%7C397134210%7Cgb%7CAFO10717.1%7C baseplate protein %5BEscherichia phage ECML-134%5D;length=364 -Merlin_4 blast match_part 17 29 . . . Gap=M13;ID=gi%7C397134210%7Cgb%7CAFO10717.1%7C;Parent=biopygen83 -Merlin_4 blast match_part 35 83 . . . Gap=M49;ID=gi%7C397134210%7Cgb%7CAFO10717.1%7C;Parent=biopygen83 -Merlin_4 blast match_part 87 351 . . . Gap=M265;ID=gi%7C397134210%7Cgb%7CAFO10717.1%7C;Parent=biopygen83 -Merlin_4 blast protein_match 3 352 8.86163e-168 . . ID=biopygen84;accession=NP_049806;description=gp48 baseplate tail tube cap %5BEnterobacteria phage T4%5D;hit_id=gi%7C9632645%7Cref%7CNP_049806.1%7C;hit_titles=gi%7C9632645%7Cref%7CNP_049806.1%7C gp48 baseplate tail tube cap %5BEnterobacteria phage T4%5D,gi%7C138041%7Csp%7CP13339.3%7CVG48_BPT4 RecName: Full%3DTail-tube assembly protein Gp48 %5BEnterobacteria phage T4%5D,gi%7C5354269%7Cgb%7CAAD42476.1%7CAF158101_63 gp48 baseplate tail tube cap %5BEnterobacteria phage T4%5D,gi%7C215947%7Cgb%7CAAA32539.1%7C tail-tube assembly protein %5BEnterobacteria phage T4%5D,gi%7C299780554%7Cgb%7CADJ39916.1%7C baseplate subunit %5BEnterobacteria phage T4T%5D,gi%7C628971799%7Cgb%7CAHY83520.1%7C baseplate subunit %5BEnterobacteria phage T4%5D,gi%7C628972001%7Cgb%7CAHY83721.1%7C baseplate subunit %5BEnterobacteria phage T4%5D,gi%7C628972192%7Cgb%7CAHY83911.1%7C baseplate subunit %5BEnterobacteria phage T4%5D;length=364 -Merlin_4 blast match_part 17 29 . . . Gap=M13;ID=gi%7C9632645%7Cref%7CNP_049806.1%7C;Parent=biopygen84 -Merlin_4 blast match_part 35 51 . . . Gap=M17;ID=gi%7C9632645%7Cref%7CNP_049806.1%7C;Parent=biopygen84 -Merlin_4 blast match_part 55 83 . . . Gap=M29;ID=gi%7C9632645%7Cref%7CNP_049806.1%7C;Parent=biopygen84 -Merlin_4 blast match_part 87 351 . . . Gap=M265;ID=gi%7C9632645%7Cref%7CNP_049806.1%7C;Parent=biopygen84 -Merlin_4 blast protein_match 0 352 9.36795e-168 . . ID=biopygen85;accession=YP_009037574;description=baseplate subunit %5BEscherichia phage vB_EcoM_JS09%5D;hit_id=gi%7C642905805%7Cref%7CYP_009037574.1%7C;hit_titles=gi%7C642905805%7Cref%7CYP_009037574.1%7C baseplate subunit %5BEscherichia phage vB_EcoM_JS09%5D,gi%7C642903959%7Cgb%7CAIA79979.1%7C baseplate subunit %5BEscherichia phage vB_EcoM_JS09%5D;length=369 -Merlin_4 blast match_part 19 29 . . . Gap=M11;ID=gi%7C642905805%7Cref%7CYP_009037574.1%7C;Parent=biopygen85 -Merlin_4 blast match_part 35 83 . . . Gap=M49;ID=gi%7C642905805%7Cref%7CYP_009037574.1%7C;Parent=biopygen85 -Merlin_4 blast match_part 90 351 . . . Gap=M262;ID=gi%7C642905805%7Cref%7CYP_009037574.1%7C;Parent=biopygen85 -Merlin_4 blast protein_match 0 352 1.0678e-167 . . ID=biopygen86;accession=NP_861897;description=baseplate subunit %5BEnterobacteria phage RB69%5D;hit_id=gi%7C32453688%7Cref%7CNP_861897.1%7C;hit_titles=gi%7C32453688%7Cref%7CNP_861897.1%7C baseplate subunit %5BEnterobacteria phage RB69%5D,gi%7C32350507%7Cgb%7CAAP76106.1%7C gp48 baseplate tail tube cap %5BEnterobacteria phage RB69%5D,gi%7C604671902%7Cgb%7CAHV82896.1%7C baseplate tail tube cap %5BEscherichia phage vB_EcoM_PhAPEC2%5D;length=369 -Merlin_4 blast match_part 19 29 . . . Gap=M11;ID=gi%7C32453688%7Cref%7CNP_861897.1%7C;Parent=biopygen86 -Merlin_4 blast match_part 35 83 . . . Gap=M49;ID=gi%7C32453688%7Cref%7CNP_861897.1%7C;Parent=biopygen86 -Merlin_4 blast match_part 90 351 . . . Gap=M262;ID=gi%7C32453688%7Cref%7CNP_861897.1%7C;Parent=biopygen86 -Merlin_4 blast protein_match 3 352 1.08287e-158 . . ID=biopygen87;accession=YP_004063891;description=gp48 baseplate subunit %5BEnterobacteria phage vB_EcoM-VR7%5D;hit_id=gi%7C314121772%7Cref%7CYP_004063891.1%7C;hit_titles=gi%7C314121772%7Cref%7CYP_004063891.1%7C gp48 baseplate subunit %5BEnterobacteria phage vB_EcoM-VR7%5D,gi%7C313151529%7Cgb%7CADR32585.1%7C gp48 baseplate subunit %5BEnterobacteria phage vB_EcoM-VR7%5D;length=368 -Merlin_4 blast match_part 3 10 . . . Gap=M8;ID=gi%7C314121772%7Cref%7CYP_004063891.1%7C;Parent=biopygen87 -Merlin_4 blast match_part 18 101 . . . Gap=M9 I1 M74;ID=gi%7C314121772%7Cref%7CYP_004063891.1%7C;Parent=biopygen87 -Merlin_4 blast match_part 107 107 . . . Gap=M1;ID=gi%7C314121772%7Cref%7CYP_004063891.1%7C;Parent=biopygen87 -Merlin_4 blast match_part 111 245 . . . Gap=M135;ID=gi%7C314121772%7Cref%7CYP_004063891.1%7C;Parent=biopygen87 -Merlin_4 blast match_part 253 253 . . . Gap=M1;ID=gi%7C314121772%7Cref%7CYP_004063891.1%7C;Parent=biopygen87 -Merlin_4 blast match_part 260 351 . . . Gap=M92;ID=gi%7C314121772%7Cref%7CYP_004063891.1%7C;Parent=biopygen87 -Merlin_4 blast protein_match 3 352 3.47109e-158 . . ID=biopygen88;accession=YP_003934831;description=baseplate tail tube cap %5BShigella phage SP18%5D;hit_id=gi%7C308814557%7Cref%7CYP_003934831.1%7C;hit_titles=gi%7C308814557%7Cref%7CYP_003934831.1%7C baseplate tail tube cap %5BShigella phage SP18%5D,gi%7C308206149%7Cgb%7CADO19548.1%7C baseplate tail tube cap %5BShigella phage SP18%5D;length=362 -Merlin_4 blast match_part 3 9 . . . Gap=M7;ID=gi%7C308814557%7Cref%7CYP_003934831.1%7C;Parent=biopygen88 -Merlin_4 blast match_part 18 101 . . . Gap=M9 I1 M74;ID=gi%7C308814557%7Cref%7CYP_003934831.1%7C;Parent=biopygen88 -Merlin_4 blast match_part 107 107 . . . Gap=M1;ID=gi%7C308814557%7Cref%7CYP_003934831.1%7C;Parent=biopygen88 -Merlin_4 blast match_part 111 245 . . . Gap=M135;ID=gi%7C308814557%7Cref%7CYP_003934831.1%7C;Parent=biopygen88 -Merlin_4 blast match_part 252 252 . . . Gap=M1;ID=gi%7C308814557%7Cref%7CYP_003934831.1%7C;Parent=biopygen88 -Merlin_4 blast match_part 256 256 . . . Gap=M1;ID=gi%7C308814557%7Cref%7CYP_003934831.1%7C;Parent=biopygen88 -Merlin_4 blast match_part 260 351 . . . Gap=M92;ID=gi%7C308814557%7Cref%7CYP_003934831.1%7C;Parent=biopygen88 -Merlin_4 blast protein_match 3 352 1.18966e-157 . . ID=biopygen89;accession=YP_007004251;description=baseplate tail tube cap %5BEnterobacteria phage Bp7%5D;hit_id=gi%7C422934215%7Cref%7CYP_007004251.1%7C;hit_titles=gi%7C422934215%7Cref%7CYP_007004251.1%7C baseplate tail tube cap %5BEnterobacteria phage Bp7%5D,gi%7C345450724%7Cgb%7CAEN93927.1%7C baseplate tail tube cap %5BEnterobacteria phage Bp7%5D;length=362 -Merlin_4 blast match_part 3 10 . . . Gap=M8;ID=gi%7C422934215%7Cref%7CYP_007004251.1%7C;Parent=biopygen89 -Merlin_4 blast match_part 18 26 . . . Gap=M9;ID=gi%7C422934215%7Cref%7CYP_007004251.1%7C;Parent=biopygen89 -Merlin_4 blast match_part 30 107 . . . Gap=M1 I1 M76;ID=gi%7C422934215%7Cref%7CYP_007004251.1%7C;Parent=biopygen89 -Merlin_4 blast match_part 111 245 . . . Gap=M135;ID=gi%7C422934215%7Cref%7CYP_007004251.1%7C;Parent=biopygen89 -Merlin_4 blast match_part 252 351 . . . Gap=M100;ID=gi%7C422934215%7Cref%7CYP_007004251.1%7C;Parent=biopygen89 -Merlin_4 blast protein_match 2 352 7.00414e-155 . . ID=biopygen90;accession=YP_003734335;description=48 gene product %5BEnterobacteria phage IME08%5D;hit_id=gi%7C299779141%7Cref%7CYP_003734335.1%7C;hit_titles=gi%7C299779141%7Cref%7CYP_003734335.1%7C 48 gene product %5BEnterobacteria phage IME08%5D,gi%7C298105870%7Cgb%7CADI55514.1%7C gp48 baseplate tail tube cap %5BEnterobacteria phage IME08%5D;length=363 -Merlin_4 blast match_part 3 10 . . . Gap=M8;ID=gi%7C299779141%7Cref%7CYP_003734335.1%7C;Parent=biopygen90 -Merlin_4 blast match_part 18 98 . . . Gap=M9 I1 M71;ID=gi%7C299779141%7Cref%7CYP_003734335.1%7C;Parent=biopygen90 -Merlin_4 blast match_part 102 107 . . . Gap=M6;ID=gi%7C299779141%7Cref%7CYP_003734335.1%7C;Parent=biopygen90 -Merlin_4 blast match_part 111 245 . . . Gap=M135;ID=gi%7C299779141%7Cref%7CYP_003734335.1%7C;Parent=biopygen90 -Merlin_4 blast match_part 252 351 . . . Gap=M100;ID=gi%7C299779141%7Cref%7CYP_003734335.1%7C;Parent=biopygen90 -Merlin_4 blast protein_match 3 352 1.82386e-154 . . ID=biopygen91;accession=YP_001595319;description=gp48 baseplate tail tube cap %5BEnterobacteria phage JS98%5D;hit_id=gi%7C161622626%7Cref%7CYP_001595319.1%7C;hit_titles=gi%7C161622626%7Cref%7CYP_001595319.1%7C gp48 baseplate tail tube cap %5BEnterobacteria phage JS98%5D,gi%7C238695346%7Cref%7CYP_002922539.1%7C gp48 baseplate tail tube cap %5BEnterobacteria phage JS10%5D,gi%7C52139949%7Cgb%7CAAU29319.1%7C gp48 baseplate tail tube cap %5BEnterobacteria phage JS98%5D,gi%7C220029482%7Cgb%7CACL78416.1%7C gp48 baseplate tail tube cap %5BEnterobacteria phage JS10%5D;length=362 -Merlin_4 blast match_part 3 10 . . . Gap=M8;ID=gi%7C161622626%7Cref%7CYP_001595319.1%7C;Parent=biopygen91 -Merlin_4 blast match_part 18 29 . . . Gap=M9 I1 M2;ID=gi%7C161622626%7Cref%7CYP_001595319.1%7C;Parent=biopygen91 -Merlin_4 blast match_part 33 98 . . . Gap=M66;ID=gi%7C161622626%7Cref%7CYP_001595319.1%7C;Parent=biopygen91 -Merlin_4 blast match_part 102 107 . . . Gap=M6;ID=gi%7C161622626%7Cref%7CYP_001595319.1%7C;Parent=biopygen91 -Merlin_4 blast match_part 111 245 . . . Gap=M135;ID=gi%7C161622626%7Cref%7CYP_001595319.1%7C;Parent=biopygen91 -Merlin_4 blast match_part 252 252 . . . Gap=M1;ID=gi%7C161622626%7Cref%7CYP_001595319.1%7C;Parent=biopygen91 -Merlin_4 blast match_part 256 256 . . . Gap=M1;ID=gi%7C161622626%7Cref%7CYP_001595319.1%7C;Parent=biopygen91 -Merlin_4 blast match_part 260 351 . . . Gap=M92;ID=gi%7C161622626%7Cref%7CYP_001595319.1%7C;Parent=biopygen91 -Merlin_4 blast protein_match 3 350 2.52876e-153 . . ID=biopygen92;accession=YP_004009560;description=gp48 baseplate tail tube cap %5BAcinetobacter phage Ac42%5D;hit_id=gi%7C311992692%7Cref%7CYP_004009560.1%7C;hit_titles=gi%7C311992692%7Cref%7CYP_004009560.1%7C gp48 baseplate tail tube cap %5BAcinetobacter phage Ac42%5D,gi%7C298684475%7Cgb%7CADI96436.1%7C gp48 baseplate tail tube cap %5BAcinetobacter phage Ac42%5D;length=358 -Merlin_4 blast match_part 3 8 . . . Gap=M6;ID=gi%7C311992692%7Cref%7CYP_004009560.1%7C;Parent=biopygen92 -Merlin_4 blast match_part 13 18 . . . Gap=M6;ID=gi%7C311992692%7Cref%7CYP_004009560.1%7C;Parent=biopygen92 -Merlin_4 blast match_part 22 94 . . . Gap=M12 I1 M17 I1 M42;ID=gi%7C311992692%7Cref%7CYP_004009560.1%7C;Parent=biopygen92 -Merlin_4 blast match_part 98 349 . . . Gap=M252;ID=gi%7C311992692%7Cref%7CYP_004009560.1%7C;Parent=biopygen92 -Merlin_4 blast protein_match 5 350 1.19665e-149 . . ID=biopygen93;accession=YP_004300777;description=gp48 baseplate tail tube cap %5BAcinetobacter phage 133%5D;hit_id=gi%7C326536336%7Cref%7CYP_004300777.1%7C;hit_titles=gi%7C326536336%7Cref%7CYP_004300777.1%7C gp48 baseplate tail tube cap %5BAcinetobacter phage 133%5D,gi%7C299483417%7Cgb%7CADJ19511.1%7C gp48 baseplate tail tube cap %5BAcinetobacter phage 133%5D;length=356 -Merlin_4 blast match_part 17 28 . . . Gap=M12;ID=gi%7C326536336%7Cref%7CYP_004300777.1%7C;Parent=biopygen93 -Merlin_4 blast match_part 33 53 . . . Gap=M21;ID=gi%7C326536336%7Cref%7CYP_004300777.1%7C;Parent=biopygen93 -Merlin_4 blast match_part 58 79 . . . Gap=M22;ID=gi%7C326536336%7Cref%7CYP_004300777.1%7C;Parent=biopygen93 -Merlin_4 blast match_part 83 99 . . . Gap=M17;ID=gi%7C326536336%7Cref%7CYP_004300777.1%7C;Parent=biopygen93 -Merlin_4 blast match_part 105 349 . . . Gap=M245;ID=gi%7C326536336%7Cref%7CYP_004300777.1%7C;Parent=biopygen93 -Merlin_4 blast protein_match 3 349 9.51542e-141 . . ID=biopygen94;accession=YP_004009815;description=gp48 baseplate %5BAcinetobacter phage Acj61%5D;hit_id=gi%7C311992948%7Cref%7CYP_004009815.1%7C;hit_titles=gi%7C311992948%7Cref%7CYP_004009815.1%7C gp48 baseplate %5BAcinetobacter phage Acj61%5D,gi%7C295815237%7Cgb%7CADG36163.1%7C gp48 baseplate %5BAcinetobacter phage Acj61%5D;length=364 -Merlin_4 blast match_part 5 10 . . . Gap=M6;ID=gi%7C311992948%7Cref%7CYP_004009815.1%7C;Parent=biopygen94 -Merlin_4 blast match_part 15 18 . . . Gap=M4;ID=gi%7C311992948%7Cref%7CYP_004009815.1%7C;Parent=biopygen94 -Merlin_4 blast match_part 22 50 . . . Gap=M29;ID=gi%7C311992948%7Cref%7CYP_004009815.1%7C;Parent=biopygen94 -Merlin_4 blast match_part 55 70 . . . Gap=M16;ID=gi%7C311992948%7Cref%7CYP_004009815.1%7C;Parent=biopygen94 -Merlin_4 blast match_part 74 83 . . . Gap=M10;ID=gi%7C311992948%7Cref%7CYP_004009815.1%7C;Parent=biopygen94 -Merlin_4 blast match_part 87 88 . . . Gap=M2;ID=gi%7C311992948%7Cref%7CYP_004009815.1%7C;Parent=biopygen94 -Merlin_4 blast match_part 92 102 . . . Gap=M11;ID=gi%7C311992948%7Cref%7CYP_004009815.1%7C;Parent=biopygen94 -Merlin_4 blast match_part 109 347 . . . Gap=M240;ID=gi%7C311992948%7Cref%7CYP_004009815.1%7C;Parent=biopygen94 -Merlin_4 blast protein_match 3 350 1.46922e-139 . . ID=biopygen95;accession=YP_004010339;description=gp48 baseplate tail tube cap %5BAcinetobacter phage Acj9%5D;hit_id=gi%7C311993474%7Cref%7CYP_004010339.1%7C;hit_titles=gi%7C311993474%7Cref%7CYP_004010339.1%7C gp48 baseplate tail tube cap %5BAcinetobacter phage Acj9%5D,gi%7C295917431%7Cgb%7CADG60102.1%7C gp48 baseplate tail tube cap %5BAcinetobacter phage Acj9%5D;length=360 -Merlin_4 blast match_part 3 10 . . . Gap=M8;ID=gi%7C311993474%7Cref%7CYP_004010339.1%7C;Parent=biopygen95 -Merlin_4 blast match_part 15 18 . . . Gap=M4;ID=gi%7C311993474%7Cref%7CYP_004010339.1%7C;Parent=biopygen95 -Merlin_4 blast match_part 22 46 . . . Gap=M25;ID=gi%7C311993474%7Cref%7CYP_004010339.1%7C;Parent=biopygen95 -Merlin_4 blast match_part 51 56 . . . Gap=M6;ID=gi%7C311993474%7Cref%7CYP_004010339.1%7C;Parent=biopygen95 -Merlin_4 blast match_part 60 124 . . . Gap=M65;ID=gi%7C311993474%7Cref%7CYP_004010339.1%7C;Parent=biopygen95 -Merlin_4 blast match_part 128 255 . . . Gap=M122 I2 M4;ID=gi%7C311993474%7Cref%7CYP_004010339.1%7C;Parent=biopygen95 -Merlin_4 blast match_part 259 349 . . . Gap=M91;ID=gi%7C311993474%7Cref%7CYP_004010339.1%7C;Parent=biopygen95 -Merlin_4 blast protein_match -1 351 4.21058e-139 . . ID=biopygen96;accession=YP_009030255;description=baseplate subunit %5BSerratia phage PS2%5D;hit_id=gi%7C639438515%7Cref%7CYP_009030255.1%7C;hit_titles=gi%7C639438515%7Cref%7CYP_009030255.1%7C baseplate subunit %5BSerratia phage PS2%5D,gi%7C625370588%7Cgb%7CAHY25448.1%7C baseplate subunit %5BSerratia phage PS2%5D;length=358 -Merlin_4 blast match_part 18 18 . . . Gap=M1;ID=gi%7C639438515%7Cref%7CYP_009030255.1%7C;Parent=biopygen96 -Merlin_4 blast match_part 23 28 . . . Gap=M6;ID=gi%7C639438515%7Cref%7CYP_009030255.1%7C;Parent=biopygen96 -Merlin_4 blast match_part 32 83 . . . Gap=M52;ID=gi%7C639438515%7Cref%7CYP_009030255.1%7C;Parent=biopygen96 -Merlin_4 blast match_part 89 94 . . . Gap=M6;ID=gi%7C639438515%7Cref%7CYP_009030255.1%7C;Parent=biopygen96 -Merlin_4 blast match_part 102 143 . . . Gap=M42;ID=gi%7C639438515%7Cref%7CYP_009030255.1%7C;Parent=biopygen96 -Merlin_4 blast match_part 149 246 . . . Gap=M96 I1 M1;ID=gi%7C639438515%7Cref%7CYP_009030255.1%7C;Parent=biopygen96 -Merlin_4 blast match_part 250 254 . . . Gap=M5;ID=gi%7C639438515%7Cref%7CYP_009030255.1%7C;Parent=biopygen96 -Merlin_4 blast match_part 258 350 . . . Gap=M93;ID=gi%7C639438515%7Cref%7CYP_009030255.1%7C;Parent=biopygen96 -Merlin_4 blast protein_match 3 349 4.9384e-138 . . ID=biopygen97;accession=NP_891751;description=gp48 baseplate tail tube cap %5BEnterobacteria phage RB49%5D;hit_id=gi%7C33620542%7Cref%7CNP_891751.1%7C;hit_titles=gi%7C33620542%7Cref%7CNP_891751.1%7C gp48 baseplate tail tube cap %5BEnterobacteria phage RB49%5D,gi%7C33348009%7Cgb%7CAAQ15410.1%7C gp48 baseplate tail tube cap %5BEnterobacteria phage RB49%5D;length=352 -Merlin_4 blast match_part 3 29 . . . Gap=M27;ID=gi%7C33620542%7Cref%7CNP_891751.1%7C;Parent=biopygen97 -Merlin_4 blast match_part 35 52 . . . Gap=M18;ID=gi%7C33620542%7Cref%7CNP_891751.1%7C;Parent=biopygen97 -Merlin_4 blast match_part 56 92 . . . Gap=M28 I2 M7;ID=gi%7C33620542%7Cref%7CNP_891751.1%7C;Parent=biopygen97 -Merlin_4 blast match_part 97 100 . . . Gap=M4;ID=gi%7C33620542%7Cref%7CNP_891751.1%7C;Parent=biopygen97 -Merlin_4 blast match_part 107 216 . . . Gap=M110;ID=gi%7C33620542%7Cref%7CNP_891751.1%7C;Parent=biopygen97 -Merlin_4 blast match_part 220 246 . . . Gap=M27;ID=gi%7C33620542%7Cref%7CNP_891751.1%7C;Parent=biopygen97 -Merlin_4 blast match_part 250 347 . . . Gap=M99;ID=gi%7C33620542%7Cref%7CNP_891751.1%7C;Parent=biopygen97 -Merlin_4 blast protein_match 3 349 2.44502e-137 . . ID=biopygen98;accession=YP_002922259;description=gp48 baseplate tail tube cap %5BEnterobacteria phage JSE%5D;hit_id=gi%7C238695065%7Cref%7CYP_002922259.1%7C;hit_titles=gi%7C238695065%7Cref%7CYP_002922259.1%7C gp48 baseplate tail tube cap %5BEnterobacteria phage JSE%5D,gi%7C220029201%7Cgb%7CACL78136.1%7C gp48 baseplate tail tube cap %5BEnterobacteria phage JSE%5D;length=352 -Merlin_4 blast match_part 3 29 . . . Gap=M27;ID=gi%7C238695065%7Cref%7CYP_002922259.1%7C;Parent=biopygen98 -Merlin_4 blast match_part 35 52 . . . Gap=M18;ID=gi%7C238695065%7Cref%7CYP_002922259.1%7C;Parent=biopygen98 -Merlin_4 blast match_part 56 92 . . . Gap=M28 I2 M7;ID=gi%7C238695065%7Cref%7CYP_002922259.1%7C;Parent=biopygen98 -Merlin_4 blast match_part 97 100 . . . Gap=M4;ID=gi%7C238695065%7Cref%7CYP_002922259.1%7C;Parent=biopygen98 -Merlin_4 blast match_part 107 216 . . . Gap=M110;ID=gi%7C238695065%7Cref%7CYP_002922259.1%7C;Parent=biopygen98 -Merlin_4 blast match_part 220 246 . . . Gap=M27;ID=gi%7C238695065%7Cref%7CYP_002922259.1%7C;Parent=biopygen98 -Merlin_4 blast match_part 250 347 . . . Gap=M99;ID=gi%7C238695065%7Cref%7CYP_002922259.1%7C;Parent=biopygen98 -Merlin_4 blast protein_match 3 349 6.50999e-137 . . ID=biopygen99;accession=YP_001469527;description=gp48 baseplate tail tube cap %5BEnterobacteria phage Phi1%5D;hit_id=gi%7C157311484%7Cref%7CYP_001469527.1%7C;hit_titles=gi%7C157311484%7Cref%7CYP_001469527.1%7C gp48 baseplate tail tube cap %5BEnterobacteria phage Phi1%5D,gi%7C149380688%7Cgb%7CABR24693.1%7C gp48 baseplate tail tube cap %5BEnterobacteria phage Phi1%5D;length=352 -Merlin_4 blast match_part 3 29 . . . Gap=M27;ID=gi%7C157311484%7Cref%7CYP_001469527.1%7C;Parent=biopygen99 -Merlin_4 blast match_part 35 52 . . . Gap=M18;ID=gi%7C157311484%7Cref%7CYP_001469527.1%7C;Parent=biopygen99 -Merlin_4 blast match_part 56 92 . . . Gap=M28 I2 M7;ID=gi%7C157311484%7Cref%7CYP_001469527.1%7C;Parent=biopygen99 -Merlin_4 blast match_part 97 100 . . . Gap=M4;ID=gi%7C157311484%7Cref%7CYP_001469527.1%7C;Parent=biopygen99 -Merlin_4 blast match_part 107 216 . . . Gap=M110;ID=gi%7C157311484%7Cref%7CYP_001469527.1%7C;Parent=biopygen99 -Merlin_4 blast match_part 220 246 . . . Gap=M27;ID=gi%7C157311484%7Cref%7CYP_001469527.1%7C;Parent=biopygen99 -Merlin_4 blast match_part 250 347 . . . Gap=M99;ID=gi%7C157311484%7Cref%7CYP_001469527.1%7C;Parent=biopygen99 -Merlin_4 blast protein_match 2 350 2.03823e-122 . . ID=biopygen100;accession=AFQ22671;description=baseplate tail tube cap %5BStenotrophomonas phage IME13%5D;hit_id=gi%7C401824981%7Cgb%7CAFQ22671.1%7C;hit_titles=gi%7C401824981%7Cgb%7CAFQ22671.1%7C baseplate tail tube cap %5BStenotrophomonas phage IME13%5D;length=342 -Merlin_4 blast match_part 8 9 . . . Gap=M2;ID=gi%7C401824981%7Cgb%7CAFQ22671.1%7C;Parent=biopygen100 -Merlin_4 blast match_part 15 27 . . . Gap=M13;ID=gi%7C401824981%7Cgb%7CAFQ22671.1%7C;Parent=biopygen100 -Merlin_4 blast match_part 32 32 . . . Gap=M1;ID=gi%7C401824981%7Cgb%7CAFQ22671.1%7C;Parent=biopygen100 -Merlin_4 blast match_part 38 51 . . . Gap=M14;ID=gi%7C401824981%7Cgb%7CAFQ22671.1%7C;Parent=biopygen100 -Merlin_4 blast match_part 56 70 . . . Gap=M15;ID=gi%7C401824981%7Cgb%7CAFQ22671.1%7C;Parent=biopygen100 -Merlin_4 blast match_part 74 86 . . . Gap=M13;ID=gi%7C401824981%7Cgb%7CAFQ22671.1%7C;Parent=biopygen100 -Merlin_4 blast match_part 92 94 . . . Gap=M3;ID=gi%7C401824981%7Cgb%7CAFQ22671.1%7C;Parent=biopygen100 -Merlin_4 blast match_part 100 100 . . . Gap=M1;ID=gi%7C401824981%7Cgb%7CAFQ22671.1%7C;Parent=biopygen100 -Merlin_4 blast match_part 106 222 . . . Gap=M117;ID=gi%7C401824981%7Cgb%7CAFQ22671.1%7C;Parent=biopygen100 -Merlin_4 blast match_part 227 255 . . . Gap=M29;ID=gi%7C401824981%7Cgb%7CAFQ22671.1%7C;Parent=biopygen100 -Merlin_4 blast match_part 259 349 . . . Gap=M91;ID=gi%7C401824981%7Cgb%7CAFQ22671.1%7C;Parent=biopygen100 -Merlin_4 blast protein_match 2 350 7.92274e-121 . . ID=biopygen101;accession=YP_007677897;description=baseplate tail tube cap %5BAeromonas phage Aes012%5D;hit_id=gi%7C472438117%7Cref%7CYP_007677897.1%7C;hit_titles=gi%7C472438117%7Cref%7CYP_007677897.1%7C baseplate tail tube cap %5BAeromonas phage Aes012%5D,gi%7C395653255%7Cgb%7CAFN69810.1%7C baseplate tail tube cap %5BAeromonas phage Aes012%5D;length=342 -Merlin_4 blast match_part 8 9 . . . Gap=M2;ID=gi%7C472438117%7Cref%7CYP_007677897.1%7C;Parent=biopygen101 -Merlin_4 blast match_part 15 27 . . . Gap=M13;ID=gi%7C472438117%7Cref%7CYP_007677897.1%7C;Parent=biopygen101 -Merlin_4 blast match_part 32 32 . . . Gap=M1;ID=gi%7C472438117%7Cref%7CYP_007677897.1%7C;Parent=biopygen101 -Merlin_4 blast match_part 38 51 . . . Gap=M14;ID=gi%7C472438117%7Cref%7CYP_007677897.1%7C;Parent=biopygen101 -Merlin_4 blast match_part 56 70 . . . Gap=M15;ID=gi%7C472438117%7Cref%7CYP_007677897.1%7C;Parent=biopygen101 -Merlin_4 blast match_part 74 86 . . . Gap=M13;ID=gi%7C472438117%7Cref%7CYP_007677897.1%7C;Parent=biopygen101 -Merlin_4 blast match_part 92 94 . . . Gap=M3;ID=gi%7C472438117%7Cref%7CYP_007677897.1%7C;Parent=biopygen101 -Merlin_4 blast match_part 100 100 . . . Gap=M1;ID=gi%7C472438117%7Cref%7CYP_007677897.1%7C;Parent=biopygen101 -Merlin_4 blast match_part 106 222 . . . Gap=M117;ID=gi%7C472438117%7Cref%7CYP_007677897.1%7C;Parent=biopygen101 -Merlin_4 blast match_part 227 255 . . . Gap=M29;ID=gi%7C472438117%7Cref%7CYP_007677897.1%7C;Parent=biopygen101 -Merlin_4 blast match_part 259 349 . . . Gap=M91;ID=gi%7C472438117%7Cref%7CYP_007677897.1%7C;Parent=biopygen101 -Merlin_4 blast protein_match -2 350 1.00609e-120 . . ID=biopygen102;accession=YP_003969100;description=unnamed protein product %5BAeromonas phage phiAS4%5D;hit_id=gi%7C310722276%7Cref%7CYP_003969100.1%7C;hit_titles=gi%7C310722276%7Cref%7CYP_003969100.1%7C unnamed protein product %5BAeromonas phage phiAS4%5D,gi%7C306021119%7Cgb%7CADM79654.1%7C baseplate protein %5BAeromonas phage phiAS4%5D;length=342 -Merlin_4 blast match_part 8 10 . . . Gap=M3;ID=gi%7C310722276%7Cref%7CYP_003969100.1%7C;Parent=biopygen102 -Merlin_4 blast match_part 15 18 . . . Gap=M4;ID=gi%7C310722276%7Cref%7CYP_003969100.1%7C;Parent=biopygen102 -Merlin_4 blast match_part 22 27 . . . Gap=M3 I1 M2;ID=gi%7C310722276%7Cref%7CYP_003969100.1%7C;Parent=biopygen102 -Merlin_4 blast match_part 32 32 . . . Gap=M1;ID=gi%7C310722276%7Cref%7CYP_003969100.1%7C;Parent=biopygen102 -Merlin_4 blast match_part 38 51 . . . Gap=M14;ID=gi%7C310722276%7Cref%7CYP_003969100.1%7C;Parent=biopygen102 -Merlin_4 blast match_part 56 70 . . . Gap=M15;ID=gi%7C310722276%7Cref%7CYP_003969100.1%7C;Parent=biopygen102 -Merlin_4 blast match_part 74 86 . . . Gap=M13;ID=gi%7C310722276%7Cref%7CYP_003969100.1%7C;Parent=biopygen102 -Merlin_4 blast match_part 92 94 . . . Gap=M3;ID=gi%7C310722276%7Cref%7CYP_003969100.1%7C;Parent=biopygen102 -Merlin_4 blast match_part 100 100 . . . Gap=M1;ID=gi%7C310722276%7Cref%7CYP_003969100.1%7C;Parent=biopygen102 -Merlin_4 blast match_part 106 222 . . . Gap=M117;ID=gi%7C310722276%7Cref%7CYP_003969100.1%7C;Parent=biopygen102 -Merlin_4 blast match_part 227 255 . . . Gap=M29;ID=gi%7C310722276%7Cref%7CYP_003969100.1%7C;Parent=biopygen102 -Merlin_4 blast match_part 259 349 . . . Gap=M91;ID=gi%7C310722276%7Cref%7CYP_003969100.1%7C;Parent=biopygen102 -Merlin_4 blast protein_match -2 350 3.78445e-120 . . ID=biopygen103;accession=YP_656410;description=gp48 base plate protein %5BAeromonas phage 25%5D;hit_id=gi%7C109290161%7Cref%7CYP_656410.1%7C;hit_titles=gi%7C109290161%7Cref%7CYP_656410.1%7C gp48 base plate protein %5BAeromonas phage 25%5D,gi%7C423262259%7Cref%7CYP_007010858.1%7C baseplate tail tube cap %5BAeromonas phage Aes508%5D,gi%7C104345834%7Cgb%7CABF72734.1%7C gp48 base plate protein %5BAeromonas phage 25%5D,gi%7C402762137%7Cgb%7CAFQ97251.1%7C baseplate tail tube cap %5BAeromonas phage Aes508%5D;length=342 -Merlin_4 blast match_part 8 10 . . . Gap=M3;ID=gi%7C109290161%7Cref%7CYP_656410.1%7C;Parent=biopygen103 -Merlin_4 blast match_part 15 18 . . . Gap=M4;ID=gi%7C109290161%7Cref%7CYP_656410.1%7C;Parent=biopygen103 -Merlin_4 blast match_part 22 27 . . . Gap=M3 I1 M2;ID=gi%7C109290161%7Cref%7CYP_656410.1%7C;Parent=biopygen103 -Merlin_4 blast match_part 32 32 . . . Gap=M1;ID=gi%7C109290161%7Cref%7CYP_656410.1%7C;Parent=biopygen103 -Merlin_4 blast match_part 38 51 . . . Gap=M14;ID=gi%7C109290161%7Cref%7CYP_656410.1%7C;Parent=biopygen103 -Merlin_4 blast match_part 56 70 . . . Gap=M15;ID=gi%7C109290161%7Cref%7CYP_656410.1%7C;Parent=biopygen103 -Merlin_4 blast match_part 74 86 . . . Gap=M13;ID=gi%7C109290161%7Cref%7CYP_656410.1%7C;Parent=biopygen103 -Merlin_4 blast match_part 92 94 . . . Gap=M3;ID=gi%7C109290161%7Cref%7CYP_656410.1%7C;Parent=biopygen103 -Merlin_4 blast match_part 100 100 . . . Gap=M1;ID=gi%7C109290161%7Cref%7CYP_656410.1%7C;Parent=biopygen103 -Merlin_4 blast match_part 106 222 . . . Gap=M117;ID=gi%7C109290161%7Cref%7CYP_656410.1%7C;Parent=biopygen103 -Merlin_4 blast match_part 227 255 . . . Gap=M29;ID=gi%7C109290161%7Cref%7CYP_656410.1%7C;Parent=biopygen103 -Merlin_4 blast match_part 259 349 . . . Gap=M91;ID=gi%7C109290161%7Cref%7CYP_656410.1%7C;Parent=biopygen103 -Merlin_4 blast protein_match 3 349 5.01898e-120 . . ID=biopygen104;accession=NP_932539;description=baseplate subunit %5BAeromonas phage 44RR2.8t%5D;hit_id=gi%7C37651665%7Cref%7CNP_932539.1%7C;hit_titles=gi%7C37651665%7Cref%7CNP_932539.1%7C baseplate subunit %5BAeromonas phage 44RR2.8t%5D,gi%7C66391986%7Cref%7CYP_238911.1%7C baseplate tail tube cap %5BAeromonas phage 31%5D,gi%7C34732965%7Cgb%7CAAQ81502.1%7C baseplate tail tube cap %5BAeromonas phage 44RR2.8t%5D,gi%7C62114823%7Cgb%7CAAX63671.1%7C gp48 %5BAeromonas phage 31%5D;length=342 -Merlin_4 blast match_part 3 9 . . . Gap=M7;ID=gi%7C37651665%7Cref%7CNP_932539.1%7C;Parent=biopygen104 -Merlin_4 blast match_part 15 27 . . . Gap=M13;ID=gi%7C37651665%7Cref%7CNP_932539.1%7C;Parent=biopygen104 -Merlin_4 blast match_part 32 32 . . . Gap=M1;ID=gi%7C37651665%7Cref%7CNP_932539.1%7C;Parent=biopygen104 -Merlin_4 blast match_part 38 51 . . . Gap=M14;ID=gi%7C37651665%7Cref%7CNP_932539.1%7C;Parent=biopygen104 -Merlin_4 blast match_part 56 86 . . . Gap=M31;ID=gi%7C37651665%7Cref%7CNP_932539.1%7C;Parent=biopygen104 -Merlin_4 blast match_part 92 94 . . . Gap=M3;ID=gi%7C37651665%7Cref%7CNP_932539.1%7C;Parent=biopygen104 -Merlin_4 blast match_part 100 100 . . . Gap=M1;ID=gi%7C37651665%7Cref%7CNP_932539.1%7C;Parent=biopygen104 -Merlin_4 blast match_part 106 222 . . . Gap=M117;ID=gi%7C37651665%7Cref%7CNP_932539.1%7C;Parent=biopygen104 -Merlin_4 blast match_part 227 255 . . . Gap=M29;ID=gi%7C37651665%7Cref%7CNP_932539.1%7C;Parent=biopygen104 -Merlin_4 blast match_part 259 349 . . . Gap=M91;ID=gi%7C37651665%7Cref%7CNP_932539.1%7C;Parent=biopygen104 -Merlin_4 blast protein_match 138 350 1.69313e-98 . . ID=biopygen105;accession=AHI44678;description=baseplate tail tube cap %5BAcinetobacter phage ZZ1%5D;hit_id=gi%7C582955110%7Cgb%7CAHI44678.1%7C;hit_titles=gi%7C582955110%7Cgb%7CAHI44678.1%7C baseplate tail tube cap %5BAcinetobacter phage ZZ1%5D;length=216 -Merlin_4 blast match_part 138 249 . . . Gap=M112;ID=gi%7C582955110%7Cgb%7CAHI44678.1%7C;Parent=biopygen105 -Merlin_4 blast match_part 259 349 . . . Gap=M91;ID=gi%7C582955110%7Cgb%7CAHI44678.1%7C;Parent=biopygen105 -Merlin_4 blast protein_match 152 350 1.55814e-91 . . ID=biopygen106;accession=YP_006489092;description=putative split baseplate tail tube cap %5BAcinetobacter phage ZZ1%5D;hit_id=gi%7C392973134%7Cref%7CYP_006489092.1%7C;hit_titles=gi%7C392973134%7Cref%7CYP_006489092.1%7C putative split baseplate tail tube cap %5BAcinetobacter phage ZZ1%5D;length=202 -Merlin_4 blast match_part 152 249 . . . Gap=M98;ID=gi%7C392973134%7Cref%7CYP_006489092.1%7C;Parent=biopygen106 -Merlin_4 blast match_part 259 349 . . . Gap=M91;ID=gi%7C392973134%7Cref%7CYP_006489092.1%7C;Parent=biopygen106 -Merlin_4 blast protein_match 3 348 1.23976e-45 . . ID=biopygen107;accession=YP_003579965;description=gp48 baseplate subunit %5BKlebsiella phage KP15%5D;hit_id=gi%7C294661512%7Cref%7CYP_003579965.1%7C;hit_titles=gi%7C294661512%7Cref%7CYP_003579965.1%7C gp48 baseplate subunit %5BKlebsiella phage KP15%5D,gi%7C448260646%7Cref%7CYP_007348740.1%7C baseplate tail tube cap %5BKlebsiella phage KP27%5D,gi%7C292660673%7Cgb%7CADE34921.1%7C gp48 baseplate subunit %5BKlebsiella phage KP15%5D,gi%7C370343455%7Cgb%7CAEX26584.1%7C baseplate tail tube cap %5BKlebsiella phage KP27%5D;length=357 -Merlin_4 blast match_part 3 4 . . . Gap=M2;ID=gi%7C294661512%7Cref%7CYP_003579965.1%7C;Parent=biopygen107 -Merlin_4 blast match_part 8 21 . . . Gap=M14;ID=gi%7C294661512%7Cref%7CYP_003579965.1%7C;Parent=biopygen107 -Merlin_4 blast match_part 27 29 . . . Gap=M3;ID=gi%7C294661512%7Cref%7CYP_003579965.1%7C;Parent=biopygen107 -Merlin_4 blast match_part 33 51 . . . Gap=M19;ID=gi%7C294661512%7Cref%7CYP_003579965.1%7C;Parent=biopygen107 -Merlin_4 blast match_part 59 72 . . . Gap=M14;ID=gi%7C294661512%7Cref%7CYP_003579965.1%7C;Parent=biopygen107 -Merlin_4 blast match_part 76 89 . . . Gap=M8 I2 M4;ID=gi%7C294661512%7Cref%7CYP_003579965.1%7C;Parent=biopygen107 -Merlin_4 blast match_part 94 104 . . . Gap=M11;ID=gi%7C294661512%7Cref%7CYP_003579965.1%7C;Parent=biopygen107 -Merlin_4 blast match_part 110 141 . . . Gap=M32;ID=gi%7C294661512%7Cref%7CYP_003579965.1%7C;Parent=biopygen107 -Merlin_4 blast match_part 149 176 . . . Gap=M28;ID=gi%7C294661512%7Cref%7CYP_003579965.1%7C;Parent=biopygen107 -Merlin_4 blast match_part 181 194 . . . Gap=M14;ID=gi%7C294661512%7Cref%7CYP_003579965.1%7C;Parent=biopygen107 -Merlin_4 blast match_part 202 216 . . . Gap=M15;ID=gi%7C294661512%7Cref%7CYP_003579965.1%7C;Parent=biopygen107 -Merlin_4 blast match_part 221 224 . . . Gap=M4;ID=gi%7C294661512%7Cref%7CYP_003579965.1%7C;Parent=biopygen107 -Merlin_4 blast match_part 228 243 . . . Gap=M1 I1 M14;ID=gi%7C294661512%7Cref%7CYP_003579965.1%7C;Parent=biopygen107 -Merlin_4 blast match_part 247 260 . . . Gap=M14;ID=gi%7C294661512%7Cref%7CYP_003579965.1%7C;Parent=biopygen107 -Merlin_4 blast match_part 264 287 . . . Gap=M24;ID=gi%7C294661512%7Cref%7CYP_003579965.1%7C;Parent=biopygen107 -Merlin_4 blast match_part 298 313 . . . Gap=M16;ID=gi%7C294661512%7Cref%7CYP_003579965.1%7C;Parent=biopygen107 -Merlin_4 blast match_part 317 333 . . . Gap=M17;ID=gi%7C294661512%7Cref%7CYP_003579965.1%7C;Parent=biopygen107 -Merlin_4 blast match_part 337 347 . . . Gap=M11;ID=gi%7C294661512%7Cref%7CYP_003579965.1%7C;Parent=biopygen107 -Merlin_4 blast protein_match 3 348 6.23176e-45 . . ID=biopygen108;accession=YP_239081;description=gp48 baseplate %5BEnterobacteria phage RB43%5D;hit_id=gi%7C66391556%7Cref%7CYP_239081.1%7C;hit_titles=gi%7C66391556%7Cref%7CYP_239081.1%7C gp48 baseplate %5BEnterobacteria phage RB43%5D,gi%7C62288644%7Cgb%7CAAX78627.1%7C gp48 baseplate %5BEnterobacteria phage RB43%5D,gi%7C406718846%7Cemb%7CCCL97571.1%7C protein of unknown function %5BEnterobacteria phage RB43%5D,gi%7C415434114%7Cemb%7CCCK73954.1%7C protein of unknown function %5BEnterobacteria phage RB43%5D;length=361 -Merlin_4 blast match_part 3 10 . . . Gap=M8;ID=gi%7C66391556%7Cref%7CYP_239081.1%7C;Parent=biopygen108 -Merlin_4 blast match_part 14 21 . . . Gap=M8;ID=gi%7C66391556%7Cref%7CYP_239081.1%7C;Parent=biopygen108 -Merlin_4 blast match_part 26 51 . . . Gap=M26;ID=gi%7C66391556%7Cref%7CYP_239081.1%7C;Parent=biopygen108 -Merlin_4 blast match_part 59 71 . . . Gap=M13;ID=gi%7C66391556%7Cref%7CYP_239081.1%7C;Parent=biopygen108 -Merlin_4 blast match_part 75 141 . . . Gap=M9 I2 M56;ID=gi%7C66391556%7Cref%7CYP_239081.1%7C;Parent=biopygen108 -Merlin_4 blast match_part 149 150 . . . Gap=M2;ID=gi%7C66391556%7Cref%7CYP_239081.1%7C;Parent=biopygen108 -Merlin_4 blast match_part 154 176 . . . Gap=M23;ID=gi%7C66391556%7Cref%7CYP_239081.1%7C;Parent=biopygen108 -Merlin_4 blast match_part 181 194 . . . Gap=M14;ID=gi%7C66391556%7Cref%7CYP_239081.1%7C;Parent=biopygen108 -Merlin_4 blast match_part 202 216 . . . Gap=M15;ID=gi%7C66391556%7Cref%7CYP_239081.1%7C;Parent=biopygen108 -Merlin_4 blast match_part 221 224 . . . Gap=M4;ID=gi%7C66391556%7Cref%7CYP_239081.1%7C;Parent=biopygen108 -Merlin_4 blast match_part 228 233 . . . Gap=M3 I1 M2;ID=gi%7C66391556%7Cref%7CYP_239081.1%7C;Parent=biopygen108 -Merlin_4 blast match_part 237 237 . . . Gap=M1;ID=gi%7C66391556%7Cref%7CYP_239081.1%7C;Parent=biopygen108 -Merlin_4 blast match_part 241 247 . . . Gap=M7;ID=gi%7C66391556%7Cref%7CYP_239081.1%7C;Parent=biopygen108 -Merlin_4 blast match_part 251 287 . . . Gap=M37;ID=gi%7C66391556%7Cref%7CYP_239081.1%7C;Parent=biopygen108 -Merlin_4 blast match_part 298 313 . . . Gap=M16;ID=gi%7C66391556%7Cref%7CYP_239081.1%7C;Parent=biopygen108 -Merlin_4 blast match_part 317 333 . . . Gap=M17;ID=gi%7C66391556%7Cref%7CYP_239081.1%7C;Parent=biopygen108 -Merlin_4 blast match_part 337 347 . . . Gap=M11;ID=gi%7C66391556%7Cref%7CYP_239081.1%7C;Parent=biopygen108 -Merlin_4 blast protein_match 3 348 2.35983e-40 . . ID=biopygen109;accession=YP_008060624;description=baseplate tail tube cap %5BEscherichia phage Lw1%5D;hit_id=gi%7C509141759%7Cref%7CYP_008060624.1%7C;hit_titles=gi%7C509141759%7Cref%7CYP_008060624.1%7C baseplate tail tube cap %5BEscherichia phage Lw1%5D,gi%7C479258586%7Cgb%7CAGJ71509.1%7C baseplate tail tube cap %5BEscherichia phage Lw1%5D;length=364 -Merlin_4 blast match_part 3 10 . . . Gap=M8;ID=gi%7C509141759%7Cref%7CYP_008060624.1%7C;Parent=biopygen109 -Merlin_4 blast match_part 14 21 . . . Gap=M8;ID=gi%7C509141759%7Cref%7CYP_008060624.1%7C;Parent=biopygen109 -Merlin_4 blast match_part 26 51 . . . Gap=M26;ID=gi%7C509141759%7Cref%7CYP_008060624.1%7C;Parent=biopygen109 -Merlin_4 blast match_part 59 70 . . . Gap=M12;ID=gi%7C509141759%7Cref%7CYP_008060624.1%7C;Parent=biopygen109 -Merlin_4 blast match_part 75 141 . . . Gap=M9 I2 M56;ID=gi%7C509141759%7Cref%7CYP_008060624.1%7C;Parent=biopygen109 -Merlin_4 blast match_part 150 176 . . . Gap=M27;ID=gi%7C509141759%7Cref%7CYP_008060624.1%7C;Parent=biopygen109 -Merlin_4 blast match_part 181 194 . . . Gap=M14;ID=gi%7C509141759%7Cref%7CYP_008060624.1%7C;Parent=biopygen109 -Merlin_4 blast match_part 202 216 . . . Gap=M15;ID=gi%7C509141759%7Cref%7CYP_008060624.1%7C;Parent=biopygen109 -Merlin_4 blast match_part 221 227 . . . Gap=M7;ID=gi%7C509141759%7Cref%7CYP_008060624.1%7C;Parent=biopygen109 -Merlin_4 blast match_part 232 236 . . . Gap=M5;ID=gi%7C509141759%7Cref%7CYP_008060624.1%7C;Parent=biopygen109 -Merlin_4 blast match_part 243 244 . . . Gap=M2;ID=gi%7C509141759%7Cref%7CYP_008060624.1%7C;Parent=biopygen109 -Merlin_4 blast match_part 249 255 . . . Gap=M7;ID=gi%7C509141759%7Cref%7CYP_008060624.1%7C;Parent=biopygen109 -Merlin_4 blast match_part 260 287 . . . Gap=M28;ID=gi%7C509141759%7Cref%7CYP_008060624.1%7C;Parent=biopygen109 -Merlin_4 blast match_part 298 313 . . . Gap=M16;ID=gi%7C509141759%7Cref%7CYP_008060624.1%7C;Parent=biopygen109 -Merlin_4 blast match_part 317 333 . . . Gap=M17;ID=gi%7C509141759%7Cref%7CYP_008060624.1%7C;Parent=biopygen109 -Merlin_4 blast match_part 337 347 . . . Gap=M11;ID=gi%7C509141759%7Cref%7CYP_008060624.1%7C;Parent=biopygen109 -Merlin_4 blast protein_match 3 348 6.71724e-40 . . ID=biopygen110;accession=YP_003858396;description=gp48 baseplate tail tube cap %5BEnterobacteria phage RB16%5D;hit_id=gi%7C304373651%7Cref%7CYP_003858396.1%7C;hit_titles=gi%7C304373651%7Cref%7CYP_003858396.1%7C gp48 baseplate tail tube cap %5BEnterobacteria phage RB16%5D,gi%7C299829607%7Cgb%7CADJ55400.1%7C gp48 baseplate tail tube cap %5BEnterobacteria phage RB16%5D;length=364 -Merlin_4 blast match_part 3 10 . . . Gap=M8;ID=gi%7C304373651%7Cref%7CYP_003858396.1%7C;Parent=biopygen110 -Merlin_4 blast match_part 14 21 . . . Gap=M8;ID=gi%7C304373651%7Cref%7CYP_003858396.1%7C;Parent=biopygen110 -Merlin_4 blast match_part 26 51 . . . Gap=M26;ID=gi%7C304373651%7Cref%7CYP_003858396.1%7C;Parent=biopygen110 -Merlin_4 blast match_part 59 70 . . . Gap=M12;ID=gi%7C304373651%7Cref%7CYP_003858396.1%7C;Parent=biopygen110 -Merlin_4 blast match_part 75 141 . . . Gap=M9 I2 M56;ID=gi%7C304373651%7Cref%7CYP_003858396.1%7C;Parent=biopygen110 -Merlin_4 blast match_part 150 176 . . . Gap=M27;ID=gi%7C304373651%7Cref%7CYP_003858396.1%7C;Parent=biopygen110 -Merlin_4 blast match_part 181 194 . . . Gap=M14;ID=gi%7C304373651%7Cref%7CYP_003858396.1%7C;Parent=biopygen110 -Merlin_4 blast match_part 202 216 . . . Gap=M15;ID=gi%7C304373651%7Cref%7CYP_003858396.1%7C;Parent=biopygen110 -Merlin_4 blast match_part 221 227 . . . Gap=M7;ID=gi%7C304373651%7Cref%7CYP_003858396.1%7C;Parent=biopygen110 -Merlin_4 blast match_part 232 236 . . . Gap=M5;ID=gi%7C304373651%7Cref%7CYP_003858396.1%7C;Parent=biopygen110 -Merlin_4 blast match_part 243 244 . . . Gap=M2;ID=gi%7C304373651%7Cref%7CYP_003858396.1%7C;Parent=biopygen110 -Merlin_4 blast match_part 249 255 . . . Gap=M7;ID=gi%7C304373651%7Cref%7CYP_003858396.1%7C;Parent=biopygen110 -Merlin_4 blast match_part 260 287 . . . Gap=M28;ID=gi%7C304373651%7Cref%7CYP_003858396.1%7C;Parent=biopygen110 -Merlin_4 blast match_part 298 313 . . . Gap=M16;ID=gi%7C304373651%7Cref%7CYP_003858396.1%7C;Parent=biopygen110 -Merlin_4 blast match_part 317 333 . . . Gap=M17;ID=gi%7C304373651%7Cref%7CYP_003858396.1%7C;Parent=biopygen110 -Merlin_4 blast match_part 337 347 . . . Gap=M11;ID=gi%7C304373651%7Cref%7CYP_003858396.1%7C;Parent=biopygen110 -Merlin_4 blast protein_match -1 348 2.64906e-39 . . ID=biopygen111;accession=YP_006986373;description=baseplate tail tube cap %5BCronobacter phage vB_CsaM_GAP161%5D;hit_id=gi%7C414086183%7Cref%7CYP_006986373.1%7C;hit_titles=gi%7C414086183%7Cref%7CYP_006986373.1%7C baseplate tail tube cap %5BCronobacter phage vB_CsaM_GAP161%5D,gi%7C378566508%7Cgb%7CAFC22204.1%7C baseplate tail tube cap %5BCronobacter phage vB_CsaM_GAP161%5D;length=364 -Merlin_4 blast match_part 17 21 . . . Gap=M5;ID=gi%7C414086183%7Cref%7CYP_006986373.1%7C;Parent=biopygen111 -Merlin_4 blast match_part 26 51 . . . Gap=M26;ID=gi%7C414086183%7Cref%7CYP_006986373.1%7C;Parent=biopygen111 -Merlin_4 blast match_part 59 71 . . . Gap=M13;ID=gi%7C414086183%7Cref%7CYP_006986373.1%7C;Parent=biopygen111 -Merlin_4 blast match_part 75 141 . . . Gap=M9 I2 M56;ID=gi%7C414086183%7Cref%7CYP_006986373.1%7C;Parent=biopygen111 -Merlin_4 blast match_part 150 176 . . . Gap=M27;ID=gi%7C414086183%7Cref%7CYP_006986373.1%7C;Parent=biopygen111 -Merlin_4 blast match_part 181 194 . . . Gap=M14;ID=gi%7C414086183%7Cref%7CYP_006986373.1%7C;Parent=biopygen111 -Merlin_4 blast match_part 202 216 . . . Gap=M15;ID=gi%7C414086183%7Cref%7CYP_006986373.1%7C;Parent=biopygen111 -Merlin_4 blast match_part 221 224 . . . Gap=M4;ID=gi%7C414086183%7Cref%7CYP_006986373.1%7C;Parent=biopygen111 -Merlin_4 blast match_part 228 230 . . . Gap=M3;ID=gi%7C414086183%7Cref%7CYP_006986373.1%7C;Parent=biopygen111 -Merlin_4 blast match_part 236 244 . . . Gap=M9;ID=gi%7C414086183%7Cref%7CYP_006986373.1%7C;Parent=biopygen111 -Merlin_4 blast match_part 248 251 . . . Gap=M4;ID=gi%7C414086183%7Cref%7CYP_006986373.1%7C;Parent=biopygen111 -Merlin_4 blast match_part 257 263 . . . Gap=M7;ID=gi%7C414086183%7Cref%7CYP_006986373.1%7C;Parent=biopygen111 -Merlin_4 blast match_part 267 287 . . . Gap=M21;ID=gi%7C414086183%7Cref%7CYP_006986373.1%7C;Parent=biopygen111 -Merlin_4 blast match_part 298 313 . . . Gap=M16;ID=gi%7C414086183%7Cref%7CYP_006986373.1%7C;Parent=biopygen111 -Merlin_4 blast match_part 317 326 . . . Gap=M10;ID=gi%7C414086183%7Cref%7CYP_006986373.1%7C;Parent=biopygen111 -Merlin_4 blast match_part 331 333 . . . Gap=M3;ID=gi%7C414086183%7Cref%7CYP_006986373.1%7C;Parent=biopygen111 -Merlin_4 blast match_part 337 347 . . . Gap=M11;ID=gi%7C414086183%7Cref%7CYP_006986373.1%7C;Parent=biopygen111 -Merlin_4 blast protein_match 4 137 1.55074e-24 . . ID=biopygen112;accession=YP_006489093;description=putative split baseplate tail tube cap %5BAcinetobacter phage ZZ1%5D;hit_id=gi%7C392973135%7Cref%7CYP_006489093.1%7C;hit_titles=gi%7C392973135%7Cref%7CYP_006489093.1%7C putative split baseplate tail tube cap %5BAcinetobacter phage ZZ1%5D;length=143 -Merlin_4 blast match_part 22 56 . . . Gap=M35;ID=gi%7C392973135%7Cref%7CYP_006489093.1%7C;Parent=biopygen112 -Merlin_4 blast match_part 60 83 . . . Gap=M24;ID=gi%7C392973135%7Cref%7CYP_006489093.1%7C;Parent=biopygen112 -Merlin_4 blast match_part 88 90 . . . Gap=M3;ID=gi%7C392973135%7Cref%7CYP_006489093.1%7C;Parent=biopygen112 -Merlin_4 blast match_part 94 101 . . . Gap=M8;ID=gi%7C392973135%7Cref%7CYP_006489093.1%7C;Parent=biopygen112 -Merlin_4 blast match_part 108 136 . . . Gap=M29;ID=gi%7C392973135%7Cref%7CYP_006489093.1%7C;Parent=biopygen112 -Merlin_4 blast protein_match -21 347 3.83249e-07 . . ID=biopygen113;accession=WP_025548737;description=hypothetical protein %5BVibrio parahaemolyticus%5D;hit_id=gi%7C646519388%7Cref%7CWP_025548737.1%7C;hit_titles=gi%7C646519388%7Cref%7CWP_025548737.1%7C hypothetical protein %5BVibrio parahaemolyticus%5D,gi%7C655769907%7Cgb%7CKEE53216.1%7C hypothetical protein EM88_01435 %5BVibrio parahaemolyticus%5D,gi%7C655811799%7Cgb%7CKEE89780.1%7C hypothetical protein EM91_01710 %5BVibrio parahaemolyticus%5D;length=356 -Merlin_4 blast match_part 87 87 . . . Gap=M1;ID=gi%7C646519388%7Cref%7CWP_025548737.1%7C;Parent=biopygen113 -Merlin_4 blast match_part 92 101 . . . Gap=M10;ID=gi%7C646519388%7Cref%7CWP_025548737.1%7C;Parent=biopygen113 -Merlin_4 blast match_part 106 114 . . . Gap=M9;ID=gi%7C646519388%7Cref%7CWP_025548737.1%7C;Parent=biopygen113 -Merlin_4 blast match_part 121 124 . . . Gap=M4;ID=gi%7C646519388%7Cref%7CWP_025548737.1%7C;Parent=biopygen113 -Merlin_4 blast match_part 129 131 . . . Gap=M3;ID=gi%7C646519388%7Cref%7CWP_025548737.1%7C;Parent=biopygen113 -Merlin_4 blast match_part 136 138 . . . Gap=M3;ID=gi%7C646519388%7Cref%7CWP_025548737.1%7C;Parent=biopygen113 -Merlin_4 blast match_part 147 153 . . . Gap=M7;ID=gi%7C646519388%7Cref%7CWP_025548737.1%7C;Parent=biopygen113 -Merlin_4 blast match_part 162 162 . . . Gap=M1;ID=gi%7C646519388%7Cref%7CWP_025548737.1%7C;Parent=biopygen113 -Merlin_4 blast match_part 166 178 . . . Gap=M13;ID=gi%7C646519388%7Cref%7CWP_025548737.1%7C;Parent=biopygen113 -Merlin_4 blast match_part 184 186 . . . Gap=M3;ID=gi%7C646519388%7Cref%7CWP_025548737.1%7C;Parent=biopygen113 -Merlin_4 blast match_part 190 192 . . . Gap=M3;ID=gi%7C646519388%7Cref%7CWP_025548737.1%7C;Parent=biopygen113 -Merlin_4 blast match_part 196 196 . . . Gap=M1;ID=gi%7C646519388%7Cref%7CWP_025548737.1%7C;Parent=biopygen113 -Merlin_4 blast match_part 200 216 . . . Gap=M17;ID=gi%7C646519388%7Cref%7CWP_025548737.1%7C;Parent=biopygen113 -Merlin_4 blast match_part 220 228 . . . Gap=M9;ID=gi%7C646519388%7Cref%7CWP_025548737.1%7C;Parent=biopygen113 -Merlin_4 blast match_part 247 260 . . . Gap=M4 I2 M8;ID=gi%7C646519388%7Cref%7CWP_025548737.1%7C;Parent=biopygen113 -Merlin_4 blast match_part 269 269 . . . Gap=M1;ID=gi%7C646519388%7Cref%7CWP_025548737.1%7C;Parent=biopygen113 -Merlin_4 blast match_part 274 282 . . . Gap=M9;ID=gi%7C646519388%7Cref%7CWP_025548737.1%7C;Parent=biopygen113 -Merlin_4 blast match_part 286 316 . . . Gap=M10 I1 M20;ID=gi%7C646519388%7Cref%7CWP_025548737.1%7C;Parent=biopygen113 -Merlin_4 blast match_part 326 346 . . . Gap=M21;ID=gi%7C646519388%7Cref%7CWP_025548737.1%7C;Parent=biopygen113 -Merlin_4 blast protein_match 0 345 2.65852e-06 . . ID=biopygen114;accession=YP_009006262;description=tail-tube assembly protein %5BVibrio phage VH7D%5D;hit_id=gi%7C589286464%7Cref%7CYP_009006262.1%7C;hit_titles=gi%7C589286464%7Cref%7CYP_009006262.1%7C tail-tube assembly protein %5BVibrio phage VH7D%5D,gi%7C432142395%7Cgb%7CAGB06975.1%7C tail-tube assembly protein %5BVibrio phage VH7D%5D;length=378 -Merlin_4 blast match_part 60 71 . . . Gap=M12;ID=gi%7C589286464%7Cref%7CYP_009006262.1%7C;Parent=biopygen114 -Merlin_4 blast match_part 75 75 . . . Gap=M1;ID=gi%7C589286464%7Cref%7CYP_009006262.1%7C;Parent=biopygen114 -Merlin_4 blast match_part 82 90 . . . Gap=M9;ID=gi%7C589286464%7Cref%7CYP_009006262.1%7C;Parent=biopygen114 -Merlin_4 blast match_part 97 98 . . . Gap=M2;ID=gi%7C589286464%7Cref%7CYP_009006262.1%7C;Parent=biopygen114 -Merlin_4 blast match_part 103 127 . . . Gap=M25;ID=gi%7C589286464%7Cref%7CYP_009006262.1%7C;Parent=biopygen114 -Merlin_4 blast match_part 131 131 . . . Gap=M1;ID=gi%7C589286464%7Cref%7CYP_009006262.1%7C;Parent=biopygen114 -Merlin_4 blast match_part 136 144 . . . Gap=M9;ID=gi%7C589286464%7Cref%7CYP_009006262.1%7C;Parent=biopygen114 -Merlin_4 blast match_part 148 151 . . . Gap=M4;ID=gi%7C589286464%7Cref%7CYP_009006262.1%7C;Parent=biopygen114 -Merlin_4 blast match_part 155 155 . . . Gap=M1;ID=gi%7C589286464%7Cref%7CYP_009006262.1%7C;Parent=biopygen114 -Merlin_4 blast match_part 159 162 . . . Gap=M4;ID=gi%7C589286464%7Cref%7CYP_009006262.1%7C;Parent=biopygen114 -Merlin_4 blast match_part 168 171 . . . Gap=M4;ID=gi%7C589286464%7Cref%7CYP_009006262.1%7C;Parent=biopygen114 -Merlin_4 blast match_part 178 178 . . . Gap=M1;ID=gi%7C589286464%7Cref%7CYP_009006262.1%7C;Parent=biopygen114 -Merlin_4 blast match_part 182 186 . . . Gap=M5;ID=gi%7C589286464%7Cref%7CYP_009006262.1%7C;Parent=biopygen114 -Merlin_4 blast match_part 190 192 . . . Gap=M3;ID=gi%7C589286464%7Cref%7CYP_009006262.1%7C;Parent=biopygen114 -Merlin_4 blast match_part 196 196 . . . Gap=M1;ID=gi%7C589286464%7Cref%7CYP_009006262.1%7C;Parent=biopygen114 -Merlin_4 blast match_part 200 216 . . . Gap=M17;ID=gi%7C589286464%7Cref%7CYP_009006262.1%7C;Parent=biopygen114 -Merlin_4 blast match_part 221 222 . . . Gap=M2;ID=gi%7C589286464%7Cref%7CYP_009006262.1%7C;Parent=biopygen114 -Merlin_4 blast match_part 230 238 . . . Gap=M9;ID=gi%7C589286464%7Cref%7CYP_009006262.1%7C;Parent=biopygen114 -Merlin_4 blast match_part 243 255 . . . Gap=M13;ID=gi%7C589286464%7Cref%7CYP_009006262.1%7C;Parent=biopygen114 -Merlin_4 blast match_part 261 268 . . . Gap=M8;ID=gi%7C589286464%7Cref%7CYP_009006262.1%7C;Parent=biopygen114 -Merlin_4 blast match_part 277 282 . . . Gap=M6;ID=gi%7C589286464%7Cref%7CYP_009006262.1%7C;Parent=biopygen114 -Merlin_4 blast match_part 288 316 . . . Gap=M8 I1 M20;ID=gi%7C589286464%7Cref%7CYP_009006262.1%7C;Parent=biopygen114 -Merlin_4 blast match_part 326 327 . . . Gap=M2;ID=gi%7C589286464%7Cref%7CYP_009006262.1%7C;Parent=biopygen114 -Merlin_4 blast match_part 331 344 . . . Gap=M14;ID=gi%7C589286464%7Cref%7CYP_009006262.1%7C;Parent=biopygen114 +Merlin_4 blast protein_match 3 356 0.0 . . ID=b2g.3.0.0;accession=YP_007501228;blast_align_length=348;blast_bits=590.882;blast_frame=0;blast_gaps=1;blast_identities=291;blast_positives=319;blast_query_end=351;blast_query_start=5;blast_sbjct_end=350;blast_sbjct_start=3;blast_score=1522.0;blast_strand=None;description=baseplate subunit %5BSalmonella phage S16%5D;hit_id=gi%7C456351276%7Cref%7CYP_007501228.1%7C;hit_titles=gi%7C456351276%7Cref%7CYP_007501228.1%7C baseplate subunit %5BSalmonella phage S16%5D,gi%7C347466341%7Cgb%7CAEO97127.1%7C baseplate subunit %5BSalmonella phage S16%5D;length=350 +Merlin_4 blast match_part 5 10 . . . Gap=M6;ID=b2g.3.0.0.0;Parent=b2g.3.0.0 +Merlin_4 blast match_part 15 351 . . . Gap=M337;ID=b2g.3.0.0.1;Parent=b2g.3.0.0 +Merlin_4 blast protein_match 3 356 0.0 . . ID=b2g.3.1.0;accession=AFU64134;blast_align_length=348;blast_bits=590.497;blast_frame=0;blast_gaps=1;blast_identities=291;blast_positives=319;blast_query_end=351;blast_query_start=5;blast_sbjct_end=350;blast_sbjct_start=3;blast_score=1521.0;blast_strand=None;description=baseplate tail tube cap %5BSalmonella phage STML-198%5D;hit_id=gi%7C408387125%7Cgb%7CAFU64134.1%7C;hit_titles=gi%7C408387125%7Cgb%7CAFU64134.1%7C baseplate tail tube cap %5BSalmonella phage STML-198%5D;length=350 +Merlin_4 blast match_part 5 10 . . . Gap=M6;ID=b2g.3.1.0.0;Parent=b2g.3.1.0 +Merlin_4 blast match_part 15 351 . . . Gap=M337;ID=b2g.3.1.0.1;Parent=b2g.3.1.0 +Merlin_4 blast protein_match 1 350 0.0 . . ID=b2g.3.2.0;accession=YP_004010054;blast_align_length=351;blast_bits=559.296;blast_frame=0;blast_gaps=2;blast_identities=270;blast_positives=310;blast_query_end=351;blast_query_start=1;blast_sbjct_end=349;blast_sbjct_start=1;blast_score=1440.0;blast_strand=None;description=gp48 base plate tail tube cap %5BEnterobacteria phage CC31%5D;hit_id=gi%7C311993188%7Cref%7CYP_004010054.1%7C;hit_titles=gi%7C311993188%7Cref%7CYP_004010054.1%7C gp48 base plate tail tube cap %5BEnterobacteria phage CC31%5D,gi%7C284178026%7Cgb%7CADB81692.1%7C gp48 base plate tail tube cap %5BEnterobacteria phage CC31%5D;length=349 +Merlin_4 blast match_part 1 98 . . . Gap=M11 I2 M85;ID=b2g.3.2.0.0;Parent=b2g.3.2.0 +Merlin_4 blast match_part 102 351 . . . Gap=M250;ID=b2g.3.2.0.1;Parent=b2g.3.2.0 +Merlin_4 blast protein_match 1 350 0.0 . . ID=b2g.3.3.0;accession=YP_009005475;blast_align_length=351;blast_bits=536.954;blast_frame=0;blast_gaps=2;blast_identities=260;blast_positives=305;blast_query_end=351;blast_query_start=1;blast_sbjct_end=349;blast_sbjct_start=1;blast_score=1382.0;blast_strand=None;description=baseplate subunit %5BEnterobacter phage PG7%5D;hit_id=gi%7C589889939%7Cref%7CYP_009005475.1%7C;hit_titles=gi%7C589889939%7Cref%7CYP_009005475.1%7C baseplate subunit %5BEnterobacter phage PG7%5D,gi%7C583927852%7Cgb%7CAHI61114.1%7C baseplate subunit %5BEnterobacter phage PG7%5D;length=349 +Merlin_4 blast match_part 1 11 . . . Gap=M11;ID=b2g.3.3.0.0;Parent=b2g.3.3.0 +Merlin_4 blast match_part 17 98 . . . Gap=M82;ID=b2g.3.3.0.1;Parent=b2g.3.3.0 +Merlin_4 blast match_part 102 351 . . . Gap=M250;ID=b2g.3.3.0.2;Parent=b2g.3.3.0 +Merlin_4 blast protein_match 3 396 1.69091e-171 . . ID=b2g.3.4.0;accession=YP_006986748;blast_align_length=350;blast_bits=494.197;blast_frame=0;blast_gaps=15;blast_identities=236;blast_positives=287;blast_query_end=351;blast_query_start=17;blast_sbjct_end=364;blast_sbjct_start=15;blast_score=1271.0;blast_strand=None;description=baseplate tail tube cap %5BEnterobacteria phage vB_EcoM_ACG-C40%5D;hit_id=gi%7C414086559%7Cref%7CYP_006986748.1%7C;hit_titles=gi%7C414086559%7Cref%7CYP_006986748.1%7C baseplate tail tube cap %5BEnterobacteria phage vB_EcoM_ACG-C40%5D,gi%7C383396340%7Cgb%7CAFH20156.1%7C baseplate tail tube cap %5BEnterobacteria phage vB_EcoM_ACG-C40%5D;length=364 +Merlin_4 blast match_part 17 18 . . . Gap=M2;ID=b2g.3.4.0.0;Parent=b2g.3.4.0 +Merlin_4 blast match_part 22 29 . . . Gap=M8;ID=b2g.3.4.0.1;Parent=b2g.3.4.0 +Merlin_4 blast match_part 35 83 . . . Gap=M49;ID=b2g.3.4.0.2;Parent=b2g.3.4.0 +Merlin_4 blast match_part 87 351 . . . Gap=M265;ID=b2g.3.4.0.3;Parent=b2g.3.4.0 +Merlin_4 blast protein_match 1 350 3.88245e-171 . . ID=b2g.3.5.0;accession=YP_007236030;blast_align_length=352;blast_bits=492.656;blast_frame=0;blast_gaps=6;blast_identities=242;blast_positives=290;blast_query_end=351;blast_query_start=1;blast_sbjct_end=347;blast_sbjct_start=1;blast_score=1267.0;blast_strand=None;description=phage baseplate tail tube cap %28T4-like gp48%29 %5BYersinia phage phiR1-RT%5D;hit_id=gi%7C431809133%7Cref%7CYP_007236030.1%7C;hit_titles=gi%7C431809133%7Cref%7CYP_007236030.1%7C phage baseplate tail tube cap %28T4-like gp48%29 %5BYersinia phage phiR1-RT%5D,gi%7C398313422%7Cemb%7CCCI88771.1%7C phage baseplate tail tube cap %28T4-like gp48%29 %5BYersinia phage phiR1-RT%5D;length=348 +Merlin_4 blast match_part 1 12 . . . Gap=M12;ID=b2g.3.5.0.0;Parent=b2g.3.5.0 +Merlin_4 blast match_part 17 91 . . . Gap=M17 I1 M49 I1 M7;ID=b2g.3.5.0.1;Parent=b2g.3.5.0 +Merlin_4 blast match_part 97 350 . . . Gap=M7 I2 M246;ID=b2g.3.5.0.2;Parent=b2g.3.5.0 +Merlin_4 blast protein_match 3 396 1.72752e-170 . . ID=b2g.3.6.0;accession=YP_002854148;blast_align_length=350;blast_bits=491.5;blast_frame=0;blast_gaps=15;blast_identities=235;blast_positives=286;blast_query_end=351;blast_query_start=17;blast_sbjct_end=364;blast_sbjct_start=15;blast_score=1264.0;blast_strand=None;description=gp48 base plate %5BEnterobacteria phage RB51%5D;hit_id=gi%7C228861125%7Cref%7CYP_002854148.1%7C;hit_titles=gi%7C228861125%7Cref%7CYP_002854148.1%7C gp48 base plate %5BEnterobacteria phage RB51%5D,gi%7C422934973%7Cref%7CYP_007004933.1%7C baseplate tail tube cap %5BEscherichia phage wV7%5D,gi%7C227438799%7Cgb%7CACP31111.1%7C gp48 base plate %5BEnterobacteria phage RB51%5D,gi%7C291290411%7Cdbj%7CBAI83206.1%7C baseplate tail tube cap %5BEnterobacteria phage AR1%5D,gi%7C343177527%7Cgb%7CAEM00853.1%7C baseplate tail tube cap %5BEscherichia phage wV7%5D;length=364 +Merlin_4 blast match_part 17 18 . . . Gap=M2;ID=b2g.3.6.0.0;Parent=b2g.3.6.0 +Merlin_4 blast match_part 22 29 . . . Gap=M8;ID=b2g.3.6.0.1;Parent=b2g.3.6.0 +Merlin_4 blast match_part 35 83 . . . Gap=M49;ID=b2g.3.6.0.2;Parent=b2g.3.6.0 +Merlin_4 blast match_part 87 347 . . . Gap=M261;ID=b2g.3.6.0.3;Parent=b2g.3.6.0 +Merlin_4 blast match_part 351 351 . . . Gap=M1;ID=b2g.3.6.0.4;Parent=b2g.3.6.0 +Merlin_4 blast protein_match 3 396 3.32248e-169 . . ID=b2g.3.7.0;accession=YP_803133;blast_align_length=350;blast_bits=488.419;blast_frame=0;blast_gaps=15;blast_identities=237;blast_positives=286;blast_query_end=351;blast_query_start=17;blast_sbjct_end=364;blast_sbjct_start=15;blast_score=1256.0;blast_strand=None;description=base plate %5BEnterobacteria phage RB32%5D;hit_id=gi%7C116326413%7Cref%7CYP_803133.1%7C;hit_titles=gi%7C116326413%7Cref%7CYP_803133.1%7C base plate %5BEnterobacteria phage RB32%5D,gi%7C228861506%7Cref%7CYP_002854527.1%7C gp48 base plate %5BEnterobacteria phage RB14%5D,gi%7C115344006%7Cgb%7CABI95015.1%7C base plate %5BEnterobacteria phage RB32%5D,gi%7C227438522%7Cgb%7CACP30835.1%7C gp48 base plate %5BEnterobacteria phage RB14%5D,gi%7C398313741%7Cemb%7CCCI89088.1%7C phage baseplate tail tube cap %28T4-like gp48%29 %5BYersinia phage phiD1%5D,gi%7C525334459%7Cgb%7CAGR46141.1%7C baseplate tail tube cap %5BYersinia phage PST%5D;length=364 +Merlin_4 blast match_part 17 29 . . . Gap=M13;ID=b2g.3.7.0.0;Parent=b2g.3.7.0 +Merlin_4 blast match_part 35 83 . . . Gap=M49;ID=b2g.3.7.0.1;Parent=b2g.3.7.0 +Merlin_4 blast match_part 87 351 . . . Gap=M265;ID=b2g.3.7.0.2;Parent=b2g.3.7.0 +Merlin_4 blast protein_match 3 396 1.3135e-168 . . ID=b2g.3.8.0;accession=YP_009030800;blast_align_length=350;blast_bits=486.878;blast_frame=0;blast_gaps=15;blast_identities=236;blast_positives=286;blast_query_end=351;blast_query_start=17;blast_sbjct_end=364;blast_sbjct_start=15;blast_score=1252.0;blast_strand=None;description=baseplate tail tube cap %5BEscherichia phage e11/2%5D;hit_id=gi%7C639438843%7Cref%7CYP_009030800.1%7C;hit_titles=gi%7C639438843%7Cref%7CYP_009030800.1%7C baseplate tail tube cap %5BEscherichia phage e11/2%5D,gi%7C628971671%7Cgb%7CAHY83393.1%7C baseplate tail tube cap %5BEscherichia phage e11/2%5D;length=364 +Merlin_4 blast match_part 17 29 . . . Gap=M13;ID=b2g.3.8.0.0;Parent=b2g.3.8.0 +Merlin_4 blast match_part 35 83 . . . Gap=M49;ID=b2g.3.8.0.1;Parent=b2g.3.8.0 +Merlin_4 blast match_part 87 351 . . . Gap=M265;ID=b2g.3.8.0.2;Parent=b2g.3.8.0 +Merlin_4 blast protein_match 3 396 1.49721e-168 . . ID=b2g.3.9.0;accession=YP_004415086;blast_align_length=350;blast_bits=486.493;blast_frame=0;blast_gaps=15;blast_identities=236;blast_positives=284;blast_query_end=351;blast_query_start=17;blast_sbjct_end=364;blast_sbjct_start=15;blast_score=1251.0;blast_strand=None;description=putative baseplate tail tube cap %5BShigella phage Shfl2%5D;hit_id=gi%7C330858711%7Cref%7CYP_004415086.1%7C;hit_titles=gi%7C330858711%7Cref%7CYP_004415086.1%7C putative baseplate tail tube cap %5BShigella phage Shfl2%5D,gi%7C422934608%7Cref%7CYP_007004569.1%7C phage baseplate protein %5BEnterobacteria phage ime09%5D,gi%7C327397645%7Cgb%7CAEA73147.1%7C putative baseplate tail tube cap %5BShigella phage Shfl2%5D,gi%7C339791391%7Cgb%7CAEK12448.1%7C phage baseplate protein %5BEnterobacteria phage ime09%5D;length=364 +Merlin_4 blast match_part 17 29 . . . Gap=M13;ID=b2g.3.9.0.0;Parent=b2g.3.9.0 +Merlin_4 blast match_part 35 83 . . . Gap=M49;ID=b2g.3.9.0.1;Parent=b2g.3.9.0 +Merlin_4 blast match_part 90 351 . . . Gap=M262;ID=b2g.3.9.0.2;Parent=b2g.3.9.0 +Merlin_4 blast protein_match 3 396 4.36088e-168 . . ID=b2g.3.10.0;accession=AFO10717;blast_align_length=350;blast_bits=485.337;blast_frame=0;blast_gaps=15;blast_identities=236;blast_positives=285;blast_query_end=351;blast_query_start=17;blast_sbjct_end=364;blast_sbjct_start=15;blast_score=1248.0;blast_strand=None;description=baseplate protein %5BEscherichia phage ECML-134%5D;hit_id=gi%7C397134210%7Cgb%7CAFO10717.1%7C;hit_titles=gi%7C397134210%7Cgb%7CAFO10717.1%7C baseplate protein %5BEscherichia phage ECML-134%5D;length=364 +Merlin_4 blast match_part 17 29 . . . Gap=M13;ID=b2g.3.10.0.0;Parent=b2g.3.10.0 +Merlin_4 blast match_part 35 83 . . . Gap=M49;ID=b2g.3.10.0.1;Parent=b2g.3.10.0 +Merlin_4 blast match_part 87 351 . . . Gap=M265;ID=b2g.3.10.0.2;Parent=b2g.3.10.0 +Merlin_4 blast protein_match 3 396 8.86163e-168 . . ID=b2g.3.11.0;accession=NP_049806;blast_align_length=350;blast_bits=484.567;blast_frame=0;blast_gaps=15;blast_identities=236;blast_positives=285;blast_query_end=351;blast_query_start=17;blast_sbjct_end=364;blast_sbjct_start=15;blast_score=1246.0;blast_strand=None;description=gp48 baseplate tail tube cap %5BEnterobacteria phage T4%5D;hit_id=gi%7C9632645%7Cref%7CNP_049806.1%7C;hit_titles=gi%7C9632645%7Cref%7CNP_049806.1%7C gp48 baseplate tail tube cap %5BEnterobacteria phage T4%5D,gi%7C138041%7Csp%7CP13339.3%7CVG48_BPT4 RecName: Full%3DTail-tube assembly protein Gp48 %5BEnterobacteria phage T4%5D,gi%7C5354269%7Cgb%7CAAD42476.1%7CAF158101_63 gp48 baseplate tail tube cap %5BEnterobacteria phage T4%5D,gi%7C215947%7Cgb%7CAAA32539.1%7C tail-tube assembly protein %5BEnterobacteria phage T4%5D,gi%7C299780554%7Cgb%7CADJ39916.1%7C baseplate subunit %5BEnterobacteria phage T4T%5D,gi%7C628971799%7Cgb%7CAHY83520.1%7C baseplate subunit %5BEnterobacteria phage T4%5D,gi%7C628972001%7Cgb%7CAHY83721.1%7C baseplate subunit %5BEnterobacteria phage T4%5D,gi%7C628972192%7Cgb%7CAHY83911.1%7C baseplate subunit %5BEnterobacteria phage T4%5D;length=364 +Merlin_4 blast match_part 17 29 . . . Gap=M13;ID=b2g.3.11.0.0;Parent=b2g.3.11.0 +Merlin_4 blast match_part 35 51 . . . Gap=M17;ID=b2g.3.11.0.1;Parent=b2g.3.11.0 +Merlin_4 blast match_part 55 83 . . . Gap=M29;ID=b2g.3.11.0.2;Parent=b2g.3.11.0 +Merlin_4 blast match_part 87 351 . . . Gap=M265;ID=b2g.3.11.0.3;Parent=b2g.3.11.0 +Merlin_4 blast protein_match 0 405 9.36795e-168 . . ID=b2g.3.12.0;accession=YP_009037574;blast_align_length=350;blast_bits=484.952;blast_frame=0;blast_gaps=17;blast_identities=227;blast_positives=285;blast_query_end=351;blast_query_start=19;blast_sbjct_end=369;blast_sbjct_start=20;blast_score=1247.0;blast_strand=None;description=baseplate subunit %5BEscherichia phage vB_EcoM_JS09%5D;hit_id=gi%7C642905805%7Cref%7CYP_009037574.1%7C;hit_titles=gi%7C642905805%7Cref%7CYP_009037574.1%7C baseplate subunit %5BEscherichia phage vB_EcoM_JS09%5D,gi%7C642903959%7Cgb%7CAIA79979.1%7C baseplate subunit %5BEscherichia phage vB_EcoM_JS09%5D;length=369 +Merlin_4 blast match_part 19 29 . . . Gap=M11;ID=b2g.3.12.0.0;Parent=b2g.3.12.0 +Merlin_4 blast match_part 35 83 . . . Gap=M49;ID=b2g.3.12.0.1;Parent=b2g.3.12.0 +Merlin_4 blast match_part 90 351 . . . Gap=M262;ID=b2g.3.12.0.2;Parent=b2g.3.12.0 +Merlin_4 blast protein_match 0 405 1.0678e-167 . . ID=b2g.3.13.0;accession=NP_861897;blast_align_length=350;blast_bits=484.567;blast_frame=0;blast_gaps=17;blast_identities=226;blast_positives=285;blast_query_end=351;blast_query_start=19;blast_sbjct_end=369;blast_sbjct_start=20;blast_score=1246.0;blast_strand=None;description=baseplate subunit %5BEnterobacteria phage RB69%5D;hit_id=gi%7C32453688%7Cref%7CNP_861897.1%7C;hit_titles=gi%7C32453688%7Cref%7CNP_861897.1%7C baseplate subunit %5BEnterobacteria phage RB69%5D,gi%7C32350507%7Cgb%7CAAP76106.1%7C gp48 baseplate tail tube cap %5BEnterobacteria phage RB69%5D,gi%7C604671902%7Cgb%7CAHV82896.1%7C baseplate tail tube cap %5BEscherichia phage vB_EcoM_PhAPEC2%5D;length=369 +Merlin_4 blast match_part 19 29 . . . Gap=M11;ID=b2g.3.13.0.0;Parent=b2g.3.13.0 +Merlin_4 blast match_part 35 83 . . . Gap=M49;ID=b2g.3.13.0.1;Parent=b2g.3.13.0 +Merlin_4 blast match_part 90 351 . . . Gap=M262;ID=b2g.3.13.0.2;Parent=b2g.3.13.0 +Merlin_4 blast protein_match 3 391 1.08287e-158 . . ID=b2g.3.14.0;accession=YP_004063891;blast_align_length=369;blast_bits=461.84;blast_frame=0;blast_gaps=21;blast_identities=228;blast_positives=285;blast_query_end=351;blast_query_start=3;blast_sbjct_end=368;blast_sbjct_start=1;blast_score=1187.0;blast_strand=None;description=gp48 baseplate subunit %5BEnterobacteria phage vB_EcoM-VR7%5D;hit_id=gi%7C314121772%7Cref%7CYP_004063891.1%7C;hit_titles=gi%7C314121772%7Cref%7CYP_004063891.1%7C gp48 baseplate subunit %5BEnterobacteria phage vB_EcoM-VR7%5D,gi%7C313151529%7Cgb%7CADR32585.1%7C gp48 baseplate subunit %5BEnterobacteria phage vB_EcoM-VR7%5D;length=368 +Merlin_4 blast match_part 3 10 . . . Gap=M8;ID=b2g.3.14.0.0;Parent=b2g.3.14.0 +Merlin_4 blast match_part 18 101 . . . Gap=M9 I1 M74;ID=b2g.3.14.0.1;Parent=b2g.3.14.0 +Merlin_4 blast match_part 107 107 . . . Gap=M1;ID=b2g.3.14.0.2;Parent=b2g.3.14.0 +Merlin_4 blast match_part 111 245 . . . Gap=M135;ID=b2g.3.14.0.3;Parent=b2g.3.14.0 +Merlin_4 blast match_part 253 253 . . . Gap=M1;ID=b2g.3.14.0.4;Parent=b2g.3.14.0 +Merlin_4 blast match_part 260 351 . . . Gap=M92;ID=b2g.3.14.0.5;Parent=b2g.3.14.0 +Merlin_4 blast protein_match 3 382 3.47109e-158 . . ID=b2g.3.15.0;accession=YP_003934831;blast_align_length=366;blast_bits=460.299;blast_frame=0;blast_gaps=21;blast_identities=228;blast_positives=285;blast_query_end=351;blast_query_start=3;blast_sbjct_end=362;blast_sbjct_start=1;blast_score=1183.0;blast_strand=None;description=baseplate tail tube cap %5BShigella phage SP18%5D;hit_id=gi%7C308814557%7Cref%7CYP_003934831.1%7C;hit_titles=gi%7C308814557%7Cref%7CYP_003934831.1%7C baseplate tail tube cap %5BShigella phage SP18%5D,gi%7C308206149%7Cgb%7CADO19548.1%7C baseplate tail tube cap %5BShigella phage SP18%5D;length=362 +Merlin_4 blast match_part 3 9 . . . Gap=M7;ID=b2g.3.15.0.0;Parent=b2g.3.15.0 +Merlin_4 blast match_part 18 101 . . . Gap=M9 I1 M74;ID=b2g.3.15.0.1;Parent=b2g.3.15.0 +Merlin_4 blast match_part 107 107 . . . Gap=M1;ID=b2g.3.15.0.2;Parent=b2g.3.15.0 +Merlin_4 blast match_part 111 245 . . . Gap=M135;ID=b2g.3.15.0.3;Parent=b2g.3.15.0 +Merlin_4 blast match_part 252 252 . . . Gap=M1;ID=b2g.3.15.0.4;Parent=b2g.3.15.0 +Merlin_4 blast match_part 256 256 . . . Gap=M1;ID=b2g.3.15.0.5;Parent=b2g.3.15.0 +Merlin_4 blast match_part 260 351 . . . Gap=M92;ID=b2g.3.15.0.6;Parent=b2g.3.15.0 +Merlin_4 blast protein_match 3 383 1.18966e-157 . . ID=b2g.3.16.0;accession=YP_007004251;blast_align_length=367;blast_bits=458.759;blast_frame=0;blast_gaps=23;blast_identities=233;blast_positives=284;blast_query_end=351;blast_query_start=3;blast_sbjct_end=362;blast_sbjct_start=1;blast_score=1179.0;blast_strand=None;description=baseplate tail tube cap %5BEnterobacteria phage Bp7%5D;hit_id=gi%7C422934215%7Cref%7CYP_007004251.1%7C;hit_titles=gi%7C422934215%7Cref%7CYP_007004251.1%7C baseplate tail tube cap %5BEnterobacteria phage Bp7%5D,gi%7C345450724%7Cgb%7CAEN93927.1%7C baseplate tail tube cap %5BEnterobacteria phage Bp7%5D;length=362 +Merlin_4 blast match_part 3 10 . . . Gap=M8;ID=b2g.3.16.0.0;Parent=b2g.3.16.0 +Merlin_4 blast match_part 18 26 . . . Gap=M9;ID=b2g.3.16.0.1;Parent=b2g.3.16.0 +Merlin_4 blast match_part 30 107 . . . Gap=M1 I1 M76;ID=b2g.3.16.0.2;Parent=b2g.3.16.0 +Merlin_4 blast match_part 111 245 . . . Gap=M135;ID=b2g.3.16.0.3;Parent=b2g.3.16.0 +Merlin_4 blast match_part 252 351 . . . Gap=M100;ID=b2g.3.16.0.4;Parent=b2g.3.16.0 +Merlin_4 blast protein_match 2 384 7.00414e-155 . . ID=b2g.3.17.0;accession=YP_003734335;blast_align_length=367;blast_bits=451.825;blast_frame=0;blast_gaps=23;blast_identities=228;blast_positives=283;blast_query_end=351;blast_query_start=3;blast_sbjct_end=363;blast_sbjct_start=2;blast_score=1161.0;blast_strand=None;description=48 gene product %5BEnterobacteria phage IME08%5D;hit_id=gi%7C299779141%7Cref%7CYP_003734335.1%7C;hit_titles=gi%7C299779141%7Cref%7CYP_003734335.1%7C 48 gene product %5BEnterobacteria phage IME08%5D,gi%7C298105870%7Cgb%7CADI55514.1%7C gp48 baseplate tail tube cap %5BEnterobacteria phage IME08%5D;length=363 +Merlin_4 blast match_part 3 10 . . . Gap=M8;ID=b2g.3.17.0.0;Parent=b2g.3.17.0 +Merlin_4 blast match_part 18 98 . . . Gap=M9 I1 M71;ID=b2g.3.17.0.1;Parent=b2g.3.17.0 +Merlin_4 blast match_part 102 107 . . . Gap=M6;ID=b2g.3.17.0.2;Parent=b2g.3.17.0 +Merlin_4 blast match_part 111 245 . . . Gap=M135;ID=b2g.3.17.0.3;Parent=b2g.3.17.0 +Merlin_4 blast match_part 252 351 . . . Gap=M100;ID=b2g.3.17.0.4;Parent=b2g.3.17.0 +Merlin_4 blast protein_match 3 381 1.82386e-154 . . ID=b2g.3.18.0;accession=YP_001595319;blast_align_length=365;blast_bits=450.669;blast_frame=0;blast_gaps=19;blast_identities=226;blast_positives=282;blast_query_end=351;blast_query_start=3;blast_sbjct_end=362;blast_sbjct_start=1;blast_score=1158.0;blast_strand=None;description=gp48 baseplate tail tube cap %5BEnterobacteria phage JS98%5D;hit_id=gi%7C161622626%7Cref%7CYP_001595319.1%7C;hit_titles=gi%7C161622626%7Cref%7CYP_001595319.1%7C gp48 baseplate tail tube cap %5BEnterobacteria phage JS98%5D,gi%7C238695346%7Cref%7CYP_002922539.1%7C gp48 baseplate tail tube cap %5BEnterobacteria phage JS10%5D,gi%7C52139949%7Cgb%7CAAU29319.1%7C gp48 baseplate tail tube cap %5BEnterobacteria phage JS98%5D,gi%7C220029482%7Cgb%7CACL78416.1%7C gp48 baseplate tail tube cap %5BEnterobacteria phage JS10%5D;length=362 +Merlin_4 blast match_part 3 10 . . . Gap=M8;ID=b2g.3.18.0.0;Parent=b2g.3.18.0 +Merlin_4 blast match_part 18 29 . . . Gap=M9 I1 M2;ID=b2g.3.18.0.1;Parent=b2g.3.18.0 +Merlin_4 blast match_part 33 98 . . . Gap=M66;ID=b2g.3.18.0.2;Parent=b2g.3.18.0 +Merlin_4 blast match_part 102 107 . . . Gap=M6;ID=b2g.3.18.0.3;Parent=b2g.3.18.0 +Merlin_4 blast match_part 111 245 . . . Gap=M135;ID=b2g.3.18.0.4;Parent=b2g.3.18.0 +Merlin_4 blast match_part 252 252 . . . Gap=M1;ID=b2g.3.18.0.5;Parent=b2g.3.18.0 +Merlin_4 blast match_part 256 256 . . . Gap=M1;ID=b2g.3.18.0.6;Parent=b2g.3.18.0 +Merlin_4 blast match_part 260 351 . . . Gap=M92;ID=b2g.3.18.0.7;Parent=b2g.3.18.0 +Merlin_4 blast protein_match 3 372 2.52876e-153 . . ID=b2g.3.19.0;accession=YP_004009560;blast_align_length=358;blast_bits=447.588;blast_frame=0;blast_gaps=14;blast_identities=217;blast_positives=280;blast_query_end=349;blast_query_start=3;blast_sbjct_end=355;blast_sbjct_start=1;blast_score=1150.0;blast_strand=None;description=gp48 baseplate tail tube cap %5BAcinetobacter phage Ac42%5D;hit_id=gi%7C311992692%7Cref%7CYP_004009560.1%7C;hit_titles=gi%7C311992692%7Cref%7CYP_004009560.1%7C gp48 baseplate tail tube cap %5BAcinetobacter phage Ac42%5D,gi%7C298684475%7Cgb%7CADI96436.1%7C gp48 baseplate tail tube cap %5BAcinetobacter phage Ac42%5D;length=358 +Merlin_4 blast match_part 3 8 . . . Gap=M6;ID=b2g.3.19.0.0;Parent=b2g.3.19.0 +Merlin_4 blast match_part 13 18 . . . Gap=M6;ID=b2g.3.19.0.1;Parent=b2g.3.19.0 +Merlin_4 blast match_part 22 94 . . . Gap=M12 I1 M17 I1 M42;ID=b2g.3.19.0.2;Parent=b2g.3.19.0 +Merlin_4 blast match_part 98 349 . . . Gap=M252;ID=b2g.3.19.0.3;Parent=b2g.3.19.0 +Merlin_4 blast protein_match 5 384 1.19665e-149 . . ID=b2g.3.20.0;accession=YP_004300777;blast_align_length=344;blast_bits=438.343;blast_frame=0;blast_gaps=13;blast_identities=210;blast_positives=264;blast_query_end=349;blast_query_start=17;blast_sbjct_end=354;blast_sbjct_start=13;blast_score=1126.0;blast_strand=None;description=gp48 baseplate tail tube cap %5BAcinetobacter phage 133%5D;hit_id=gi%7C326536336%7Cref%7CYP_004300777.1%7C;hit_titles=gi%7C326536336%7Cref%7CYP_004300777.1%7C gp48 baseplate tail tube cap %5BAcinetobacter phage 133%5D,gi%7C299483417%7Cgb%7CADJ19511.1%7C gp48 baseplate tail tube cap %5BAcinetobacter phage 133%5D;length=356 +Merlin_4 blast match_part 17 28 . . . Gap=M12;ID=b2g.3.20.0.0;Parent=b2g.3.20.0 +Merlin_4 blast match_part 33 53 . . . Gap=M21;ID=b2g.3.20.0.1;Parent=b2g.3.20.0 +Merlin_4 blast match_part 58 79 . . . Gap=M22;ID=b2g.3.20.0.2;Parent=b2g.3.20.0 +Merlin_4 blast match_part 83 99 . . . Gap=M17;ID=b2g.3.20.0.3;Parent=b2g.3.20.0 +Merlin_4 blast match_part 105 349 . . . Gap=M245;ID=b2g.3.20.0.4;Parent=b2g.3.20.0 +Merlin_4 blast protein_match 3 383 9.51542e-141 . . ID=b2g.3.21.0;accession=YP_004009815;blast_align_length=358;blast_bits=416.001;blast_frame=0;blast_gaps=14;blast_identities=203;blast_positives=264;blast_query_end=348;blast_query_start=5;blast_sbjct_end=360;blast_sbjct_start=3;blast_score=1068.0;blast_strand=None;description=gp48 baseplate %5BAcinetobacter phage Acj61%5D;hit_id=gi%7C311992948%7Cref%7CYP_004009815.1%7C;hit_titles=gi%7C311992948%7Cref%7CYP_004009815.1%7C gp48 baseplate %5BAcinetobacter phage Acj61%5D,gi%7C295815237%7Cgb%7CADG36163.1%7C gp48 baseplate %5BAcinetobacter phage Acj61%5D;length=364 +Merlin_4 blast match_part 5 10 . . . Gap=M6;ID=b2g.3.21.0.0;Parent=b2g.3.21.0 +Merlin_4 blast match_part 15 18 . . . Gap=M4;ID=b2g.3.21.0.1;Parent=b2g.3.21.0 +Merlin_4 blast match_part 22 50 . . . Gap=M29;ID=b2g.3.21.0.2;Parent=b2g.3.21.0 +Merlin_4 blast match_part 55 70 . . . Gap=M16;ID=b2g.3.21.0.3;Parent=b2g.3.21.0 +Merlin_4 blast match_part 74 83 . . . Gap=M10;ID=b2g.3.21.0.4;Parent=b2g.3.21.0 +Merlin_4 blast match_part 87 88 . . . Gap=M2;ID=b2g.3.21.0.5;Parent=b2g.3.21.0 +Merlin_4 blast match_part 92 102 . . . Gap=M11;ID=b2g.3.21.0.6;Parent=b2g.3.21.0 +Merlin_4 blast match_part 109 347 . . . Gap=M240;ID=b2g.3.21.0.7;Parent=b2g.3.21.0 +Merlin_4 blast protein_match 3 379 1.46922e-139 . . ID=b2g.3.22.0;accession=YP_004010339;blast_align_length=363;blast_bits=412.92;blast_frame=0;blast_gaps=22;blast_identities=212;blast_positives=267;blast_query_end=349;blast_query_start=3;blast_sbjct_end=357;blast_sbjct_start=1;blast_score=1060.0;blast_strand=None;description=gp48 baseplate tail tube cap %5BAcinetobacter phage Acj9%5D;hit_id=gi%7C311993474%7Cref%7CYP_004010339.1%7C;hit_titles=gi%7C311993474%7Cref%7CYP_004010339.1%7C gp48 baseplate tail tube cap %5BAcinetobacter phage Acj9%5D,gi%7C295917431%7Cgb%7CADG60102.1%7C gp48 baseplate tail tube cap %5BAcinetobacter phage Acj9%5D;length=360 +Merlin_4 blast match_part 3 10 . . . Gap=M8;ID=b2g.3.22.0.0;Parent=b2g.3.22.0 +Merlin_4 blast match_part 15 18 . . . Gap=M4;ID=b2g.3.22.0.1;Parent=b2g.3.22.0 +Merlin_4 blast match_part 22 46 . . . Gap=M25;ID=b2g.3.22.0.2;Parent=b2g.3.22.0 +Merlin_4 blast match_part 51 56 . . . Gap=M6;ID=b2g.3.22.0.3;Parent=b2g.3.22.0 +Merlin_4 blast match_part 60 124 . . . Gap=M65;ID=b2g.3.22.0.4;Parent=b2g.3.22.0 +Merlin_4 blast match_part 128 255 . . . Gap=M122 I2 M4;ID=b2g.3.22.0.5;Parent=b2g.3.22.0 +Merlin_4 blast match_part 259 349 . . . Gap=M91;ID=b2g.3.22.0.6;Parent=b2g.3.22.0 +Merlin_4 blast protein_match -1 382 4.21058e-139 . . ID=b2g.3.23.0;accession=YP_009030255;blast_align_length=339;blast_bits=411.379;blast_frame=0;blast_gaps=7;blast_identities=201;blast_positives=252;blast_query_end=350;blast_query_start=18;blast_sbjct_end=357;blast_sbjct_start=20;blast_score=1056.0;blast_strand=None;description=baseplate subunit %5BSerratia phage PS2%5D;hit_id=gi%7C639438515%7Cref%7CYP_009030255.1%7C;hit_titles=gi%7C639438515%7Cref%7CYP_009030255.1%7C baseplate subunit %5BSerratia phage PS2%5D,gi%7C625370588%7Cgb%7CAHY25448.1%7C baseplate subunit %5BSerratia phage PS2%5D;length=358 +Merlin_4 blast match_part 18 18 . . . Gap=M1;ID=b2g.3.23.0.0;Parent=b2g.3.23.0 +Merlin_4 blast match_part 23 28 . . . Gap=M6;ID=b2g.3.23.0.1;Parent=b2g.3.23.0 +Merlin_4 blast match_part 32 83 . . . Gap=M52;ID=b2g.3.23.0.2;Parent=b2g.3.23.0 +Merlin_4 blast match_part 89 94 . . . Gap=M6;ID=b2g.3.23.0.3;Parent=b2g.3.23.0 +Merlin_4 blast match_part 102 143 . . . Gap=M42;ID=b2g.3.23.0.4;Parent=b2g.3.23.0 +Merlin_4 blast match_part 149 246 . . . Gap=M96 I1 M1;ID=b2g.3.23.0.5;Parent=b2g.3.23.0 +Merlin_4 blast match_part 250 254 . . . Gap=M5;ID=b2g.3.23.0.6;Parent=b2g.3.23.0 +Merlin_4 blast match_part 258 350 . . . Gap=M93;ID=b2g.3.23.0.7;Parent=b2g.3.23.0 +Merlin_4 blast protein_match 3 363 4.9384e-138 . . ID=b2g.3.24.0;accession=NP_891751;blast_align_length=354;blast_bits=408.683;blast_frame=0;blast_gaps=13;blast_identities=200;blast_positives=260;blast_query_end=348;blast_query_start=3;blast_sbjct_end=349;blast_sbjct_start=1;blast_score=1049.0;blast_strand=None;description=gp48 baseplate tail tube cap %5BEnterobacteria phage RB49%5D;hit_id=gi%7C33620542%7Cref%7CNP_891751.1%7C;hit_titles=gi%7C33620542%7Cref%7CNP_891751.1%7C gp48 baseplate tail tube cap %5BEnterobacteria phage RB49%5D,gi%7C33348009%7Cgb%7CAAQ15410.1%7C gp48 baseplate tail tube cap %5BEnterobacteria phage RB49%5D;length=352 +Merlin_4 blast match_part 3 29 . . . Gap=M27;ID=b2g.3.24.0.0;Parent=b2g.3.24.0 +Merlin_4 blast match_part 35 52 . . . Gap=M18;ID=b2g.3.24.0.1;Parent=b2g.3.24.0 +Merlin_4 blast match_part 56 92 . . . Gap=M28 I2 M7;ID=b2g.3.24.0.2;Parent=b2g.3.24.0 +Merlin_4 blast match_part 97 100 . . . Gap=M4;ID=b2g.3.24.0.3;Parent=b2g.3.24.0 +Merlin_4 blast match_part 107 216 . . . Gap=M110;ID=b2g.3.24.0.4;Parent=b2g.3.24.0 +Merlin_4 blast match_part 220 246 . . . Gap=M27;ID=b2g.3.24.0.5;Parent=b2g.3.24.0 +Merlin_4 blast match_part 250 347 . . . Gap=M99;ID=b2g.3.24.0.6;Parent=b2g.3.24.0 +Merlin_4 blast protein_match 3 363 2.44502e-137 . . ID=b2g.3.25.0;accession=YP_002922259;blast_align_length=354;blast_bits=406.757;blast_frame=0;blast_gaps=13;blast_identities=199;blast_positives=259;blast_query_end=348;blast_query_start=3;blast_sbjct_end=349;blast_sbjct_start=1;blast_score=1044.0;blast_strand=None;description=gp48 baseplate tail tube cap %5BEnterobacteria phage JSE%5D;hit_id=gi%7C238695065%7Cref%7CYP_002922259.1%7C;hit_titles=gi%7C238695065%7Cref%7CYP_002922259.1%7C gp48 baseplate tail tube cap %5BEnterobacteria phage JSE%5D,gi%7C220029201%7Cgb%7CACL78136.1%7C gp48 baseplate tail tube cap %5BEnterobacteria phage JSE%5D;length=352 +Merlin_4 blast match_part 3 29 . . . Gap=M27;ID=b2g.3.25.0.0;Parent=b2g.3.25.0 +Merlin_4 blast match_part 35 52 . . . Gap=M18;ID=b2g.3.25.0.1;Parent=b2g.3.25.0 +Merlin_4 blast match_part 56 92 . . . Gap=M28 I2 M7;ID=b2g.3.25.0.2;Parent=b2g.3.25.0 +Merlin_4 blast match_part 97 100 . . . Gap=M4;ID=b2g.3.25.0.3;Parent=b2g.3.25.0 +Merlin_4 blast match_part 107 216 . . . Gap=M110;ID=b2g.3.25.0.4;Parent=b2g.3.25.0 +Merlin_4 blast match_part 220 246 . . . Gap=M27;ID=b2g.3.25.0.5;Parent=b2g.3.25.0 +Merlin_4 blast match_part 250 347 . . . Gap=M99;ID=b2g.3.25.0.6;Parent=b2g.3.25.0 +Merlin_4 blast protein_match 3 363 6.50999e-137 . . ID=b2g.3.26.0;accession=YP_001469527;blast_align_length=354;blast_bits=405.601;blast_frame=0;blast_gaps=13;blast_identities=198;blast_positives=259;blast_query_end=348;blast_query_start=3;blast_sbjct_end=349;blast_sbjct_start=1;blast_score=1041.0;blast_strand=None;description=gp48 baseplate tail tube cap %5BEnterobacteria phage Phi1%5D;hit_id=gi%7C157311484%7Cref%7CYP_001469527.1%7C;hit_titles=gi%7C157311484%7Cref%7CYP_001469527.1%7C gp48 baseplate tail tube cap %5BEnterobacteria phage Phi1%5D,gi%7C149380688%7Cgb%7CABR24693.1%7C gp48 baseplate tail tube cap %5BEnterobacteria phage Phi1%5D;length=352 +Merlin_4 blast match_part 3 29 . . . Gap=M27;ID=b2g.3.26.0.0;Parent=b2g.3.26.0 +Merlin_4 blast match_part 35 52 . . . Gap=M18;ID=b2g.3.26.0.1;Parent=b2g.3.26.0 +Merlin_4 blast match_part 56 92 . . . Gap=M28 I2 M7;ID=b2g.3.26.0.2;Parent=b2g.3.26.0 +Merlin_4 blast match_part 97 100 . . . Gap=M4;ID=b2g.3.26.0.3;Parent=b2g.3.26.0 +Merlin_4 blast match_part 107 216 . . . Gap=M110;ID=b2g.3.26.0.4;Parent=b2g.3.26.0 +Merlin_4 blast match_part 220 246 . . . Gap=M27;ID=b2g.3.26.0.5;Parent=b2g.3.26.0 +Merlin_4 blast match_part 250 347 . . . Gap=M99;ID=b2g.3.26.0.6;Parent=b2g.3.26.0 +Merlin_4 blast protein_match 2 353 2.03823e-122 . . ID=b2g.3.27.0;accession=AFQ22671;blast_align_length=345;blast_bits=368.237;blast_frame=0;blast_gaps=13;blast_identities=181;blast_positives=241;blast_query_end=349;blast_query_start=8;blast_sbjct_end=341;blast_sbjct_start=7;blast_score=944.0;blast_strand=None;description=baseplate tail tube cap %5BStenotrophomonas phage IME13%5D;hit_id=gi%7C401824981%7Cgb%7CAFQ22671.1%7C;hit_titles=gi%7C401824981%7Cgb%7CAFQ22671.1%7C baseplate tail tube cap %5BStenotrophomonas phage IME13%5D;length=342 +Merlin_4 blast match_part 8 9 . . . Gap=M2;ID=b2g.3.27.0.0;Parent=b2g.3.27.0 +Merlin_4 blast match_part 15 27 . . . Gap=M13;ID=b2g.3.27.0.1;Parent=b2g.3.27.0 +Merlin_4 blast match_part 32 32 . . . Gap=M1;ID=b2g.3.27.0.2;Parent=b2g.3.27.0 +Merlin_4 blast match_part 38 51 . . . Gap=M14;ID=b2g.3.27.0.3;Parent=b2g.3.27.0 +Merlin_4 blast match_part 56 70 . . . Gap=M15;ID=b2g.3.27.0.4;Parent=b2g.3.27.0 +Merlin_4 blast match_part 74 86 . . . Gap=M13;ID=b2g.3.27.0.5;Parent=b2g.3.27.0 +Merlin_4 blast match_part 92 94 . . . Gap=M3;ID=b2g.3.27.0.6;Parent=b2g.3.27.0 +Merlin_4 blast match_part 100 100 . . . Gap=M1;ID=b2g.3.27.0.7;Parent=b2g.3.27.0 +Merlin_4 blast match_part 106 222 . . . Gap=M117;ID=b2g.3.27.0.8;Parent=b2g.3.27.0 +Merlin_4 blast match_part 227 255 . . . Gap=M29;ID=b2g.3.27.0.9;Parent=b2g.3.27.0 +Merlin_4 blast match_part 259 349 . . . Gap=M91;ID=b2g.3.27.0.10;Parent=b2g.3.27.0 +Merlin_4 blast protein_match 2 353 7.92274e-121 . . ID=b2g.3.28.0;accession=YP_007677897;blast_align_length=345;blast_bits=364.385;blast_frame=0;blast_gaps=13;blast_identities=178;blast_positives=240;blast_query_end=349;blast_query_start=8;blast_sbjct_end=341;blast_sbjct_start=7;blast_score=934.0;blast_strand=None;description=baseplate tail tube cap %5BAeromonas phage Aes012%5D;hit_id=gi%7C472438117%7Cref%7CYP_007677897.1%7C;hit_titles=gi%7C472438117%7Cref%7CYP_007677897.1%7C baseplate tail tube cap %5BAeromonas phage Aes012%5D,gi%7C395653255%7Cgb%7CAFN69810.1%7C baseplate tail tube cap %5BAeromonas phage Aes012%5D;length=342 +Merlin_4 blast match_part 8 9 . . . Gap=M2;ID=b2g.3.28.0.0;Parent=b2g.3.28.0 +Merlin_4 blast match_part 15 27 . . . Gap=M13;ID=b2g.3.28.0.1;Parent=b2g.3.28.0 +Merlin_4 blast match_part 32 32 . . . Gap=M1;ID=b2g.3.28.0.2;Parent=b2g.3.28.0 +Merlin_4 blast match_part 38 51 . . . Gap=M14;ID=b2g.3.28.0.3;Parent=b2g.3.28.0 +Merlin_4 blast match_part 56 70 . . . Gap=M15;ID=b2g.3.28.0.4;Parent=b2g.3.28.0 +Merlin_4 blast match_part 74 86 . . . Gap=M13;ID=b2g.3.28.0.5;Parent=b2g.3.28.0 +Merlin_4 blast match_part 92 94 . . . Gap=M3;ID=b2g.3.28.0.6;Parent=b2g.3.28.0 +Merlin_4 blast match_part 100 100 . . . Gap=M1;ID=b2g.3.28.0.7;Parent=b2g.3.28.0 +Merlin_4 blast match_part 106 222 . . . Gap=M117;ID=b2g.3.28.0.8;Parent=b2g.3.28.0 +Merlin_4 blast match_part 227 255 . . . Gap=M29;ID=b2g.3.28.0.9;Parent=b2g.3.28.0 +Merlin_4 blast match_part 259 349 . . . Gap=M91;ID=b2g.3.28.0.10;Parent=b2g.3.28.0 +Merlin_4 blast protein_match -2 350 1.00609e-120 . . ID=b2g.3.29.0;accession=YP_003969100;blast_align_length=342;blast_bits=363.999;blast_frame=0;blast_gaps=11;blast_identities=177;blast_positives=239;blast_query_end=349;blast_query_start=8;blast_sbjct_end=341;blast_sbjct_start=11;blast_score=933.0;blast_strand=None;description=unnamed protein product %5BAeromonas phage phiAS4%5D;hit_id=gi%7C310722276%7Cref%7CYP_003969100.1%7C;hit_titles=gi%7C310722276%7Cref%7CYP_003969100.1%7C unnamed protein product %5BAeromonas phage phiAS4%5D,gi%7C306021119%7Cgb%7CADM79654.1%7C baseplate protein %5BAeromonas phage phiAS4%5D;length=342 +Merlin_4 blast match_part 8 10 . . . Gap=M3;ID=b2g.3.29.0.0;Parent=b2g.3.29.0 +Merlin_4 blast match_part 15 18 . . . Gap=M4;ID=b2g.3.29.0.1;Parent=b2g.3.29.0 +Merlin_4 blast match_part 22 27 . . . Gap=M3 I1 M2;ID=b2g.3.29.0.2;Parent=b2g.3.29.0 +Merlin_4 blast match_part 32 32 . . . Gap=M1;ID=b2g.3.29.0.3;Parent=b2g.3.29.0 +Merlin_4 blast match_part 38 51 . . . Gap=M14;ID=b2g.3.29.0.4;Parent=b2g.3.29.0 +Merlin_4 blast match_part 56 70 . . . Gap=M15;ID=b2g.3.29.0.5;Parent=b2g.3.29.0 +Merlin_4 blast match_part 74 86 . . . Gap=M13;ID=b2g.3.29.0.6;Parent=b2g.3.29.0 +Merlin_4 blast match_part 92 94 . . . Gap=M3;ID=b2g.3.29.0.7;Parent=b2g.3.29.0 +Merlin_4 blast match_part 100 100 . . . Gap=M1;ID=b2g.3.29.0.8;Parent=b2g.3.29.0 +Merlin_4 blast match_part 106 222 . . . Gap=M117;ID=b2g.3.29.0.9;Parent=b2g.3.29.0 +Merlin_4 blast match_part 227 255 . . . Gap=M29;ID=b2g.3.29.0.10;Parent=b2g.3.29.0 +Merlin_4 blast match_part 259 349 . . . Gap=M91;ID=b2g.3.29.0.11;Parent=b2g.3.29.0 +Merlin_4 blast protein_match -2 350 3.78445e-120 . . ID=b2g.3.30.0;accession=YP_656410;blast_align_length=342;blast_bits=362.459;blast_frame=0;blast_gaps=11;blast_identities=176;blast_positives=238;blast_query_end=349;blast_query_start=8;blast_sbjct_end=341;blast_sbjct_start=11;blast_score=929.0;blast_strand=None;description=gp48 base plate protein %5BAeromonas phage 25%5D;hit_id=gi%7C109290161%7Cref%7CYP_656410.1%7C;hit_titles=gi%7C109290161%7Cref%7CYP_656410.1%7C gp48 base plate protein %5BAeromonas phage 25%5D,gi%7C423262259%7Cref%7CYP_007010858.1%7C baseplate tail tube cap %5BAeromonas phage Aes508%5D,gi%7C104345834%7Cgb%7CABF72734.1%7C gp48 base plate protein %5BAeromonas phage 25%5D,gi%7C402762137%7Cgb%7CAFQ97251.1%7C baseplate tail tube cap %5BAeromonas phage Aes508%5D;length=342 +Merlin_4 blast match_part 8 10 . . . Gap=M3;ID=b2g.3.30.0.0;Parent=b2g.3.30.0 +Merlin_4 blast match_part 15 18 . . . Gap=M4;ID=b2g.3.30.0.1;Parent=b2g.3.30.0 +Merlin_4 blast match_part 22 27 . . . Gap=M3 I1 M2;ID=b2g.3.30.0.2;Parent=b2g.3.30.0 +Merlin_4 blast match_part 32 32 . . . Gap=M1;ID=b2g.3.30.0.3;Parent=b2g.3.30.0 +Merlin_4 blast match_part 38 51 . . . Gap=M14;ID=b2g.3.30.0.4;Parent=b2g.3.30.0 +Merlin_4 blast match_part 56 70 . . . Gap=M15;ID=b2g.3.30.0.5;Parent=b2g.3.30.0 +Merlin_4 blast match_part 74 86 . . . Gap=M13;ID=b2g.3.30.0.6;Parent=b2g.3.30.0 +Merlin_4 blast match_part 92 94 . . . Gap=M3;ID=b2g.3.30.0.7;Parent=b2g.3.30.0 +Merlin_4 blast match_part 100 100 . . . Gap=M1;ID=b2g.3.30.0.8;Parent=b2g.3.30.0 +Merlin_4 blast match_part 106 222 . . . Gap=M117;ID=b2g.3.30.0.9;Parent=b2g.3.30.0 +Merlin_4 blast match_part 227 255 . . . Gap=M29;ID=b2g.3.30.0.10;Parent=b2g.3.30.0 +Merlin_4 blast match_part 259 349 . . . Gap=M91;ID=b2g.3.30.0.11;Parent=b2g.3.30.0 +Merlin_4 blast protein_match 3 349 5.01898e-120 . . ID=b2g.3.31.0;accession=NP_932539;blast_align_length=351;blast_bits=362.073;blast_frame=0;blast_gaps=14;blast_identities=174;blast_positives=245;blast_query_end=349;blast_query_start=3;blast_sbjct_end=341;blast_sbjct_start=1;blast_score=928.0;blast_strand=None;description=baseplate subunit %5BAeromonas phage 44RR2.8t%5D;hit_id=gi%7C37651665%7Cref%7CNP_932539.1%7C;hit_titles=gi%7C37651665%7Cref%7CNP_932539.1%7C baseplate subunit %5BAeromonas phage 44RR2.8t%5D,gi%7C66391986%7Cref%7CYP_238911.1%7C baseplate tail tube cap %5BAeromonas phage 31%5D,gi%7C34732965%7Cgb%7CAAQ81502.1%7C baseplate tail tube cap %5BAeromonas phage 44RR2.8t%5D,gi%7C62114823%7Cgb%7CAAX63671.1%7C gp48 %5BAeromonas phage 31%5D;length=342 +Merlin_4 blast match_part 3 9 . . . Gap=M7;ID=b2g.3.31.0.0;Parent=b2g.3.31.0 +Merlin_4 blast match_part 15 27 . . . Gap=M13;ID=b2g.3.31.0.1;Parent=b2g.3.31.0 +Merlin_4 blast match_part 32 32 . . . Gap=M1;ID=b2g.3.31.0.2;Parent=b2g.3.31.0 +Merlin_4 blast match_part 38 51 . . . Gap=M14;ID=b2g.3.31.0.3;Parent=b2g.3.31.0 +Merlin_4 blast match_part 56 86 . . . Gap=M31;ID=b2g.3.31.0.4;Parent=b2g.3.31.0 +Merlin_4 blast match_part 92 94 . . . Gap=M3;ID=b2g.3.31.0.5;Parent=b2g.3.31.0 +Merlin_4 blast match_part 100 100 . . . Gap=M1;ID=b2g.3.31.0.6;Parent=b2g.3.31.0 +Merlin_4 blast match_part 106 222 . . . Gap=M117;ID=b2g.3.31.0.7;Parent=b2g.3.31.0 +Merlin_4 blast match_part 227 255 . . . Gap=M29;ID=b2g.3.31.0.8;Parent=b2g.3.31.0 +Merlin_4 blast match_part 259 349 . . . Gap=M91;ID=b2g.3.31.0.9;Parent=b2g.3.31.0 +Merlin_4 blast protein_match 138 355 1.69313e-98 . . ID=b2g.3.32.0;accession=AHI44678;blast_align_length=213;blast_bits=302.753;blast_frame=0;blast_gaps=1;blast_identities=139;blast_positives=171;blast_query_end=349;blast_query_start=138;blast_sbjct_end=213;blast_sbjct_start=1;blast_score=774.0;blast_strand=None;description=baseplate tail tube cap %5BAcinetobacter phage ZZ1%5D;hit_id=gi%7C582955110%7Cgb%7CAHI44678.1%7C;hit_titles=gi%7C582955110%7Cgb%7CAHI44678.1%7C baseplate tail tube cap %5BAcinetobacter phage ZZ1%5D;length=216 +Merlin_4 blast match_part 138 249 . . . Gap=M112;ID=b2g.3.32.0.0;Parent=b2g.3.32.0 +Merlin_4 blast match_part 259 349 . . . Gap=M91;ID=b2g.3.32.0.1;Parent=b2g.3.32.0 +Merlin_4 blast protein_match 152 355 1.55814e-91 . . ID=b2g.3.33.0;accession=YP_006489092;blast_align_length=199;blast_bits=284.263;blast_frame=0;blast_gaps=1;blast_identities=131;blast_positives=159;blast_query_end=349;blast_query_start=152;blast_sbjct_end=199;blast_sbjct_start=1;blast_score=726.0;blast_strand=None;description=putative split baseplate tail tube cap %5BAcinetobacter phage ZZ1%5D;hit_id=gi%7C392973134%7Cref%7CYP_006489092.1%7C;hit_titles=gi%7C392973134%7Cref%7CYP_006489092.1%7C putative split baseplate tail tube cap %5BAcinetobacter phage ZZ1%5D;length=202 +Merlin_4 blast match_part 152 249 . . . Gap=M98;ID=b2g.3.33.0.0;Parent=b2g.3.33.0 +Merlin_4 blast match_part 259 349 . . . Gap=M91;ID=b2g.3.33.0.1;Parent=b2g.3.33.0 +Merlin_4 blast protein_match 3 380 1.23976e-45 . . ID=b2g.3.34.0;accession=YP_003579965;blast_align_length=365;blast_bits=170.244;blast_frame=0;blast_gaps=32;blast_identities=111;blast_positives=191;blast_query_end=347;blast_query_start=3;blast_sbjct_end=353;blast_sbjct_start=1;blast_score=430.0;blast_strand=None;description=gp48 baseplate subunit %5BKlebsiella phage KP15%5D;hit_id=gi%7C294661512%7Cref%7CYP_003579965.1%7C;hit_titles=gi%7C294661512%7Cref%7CYP_003579965.1%7C gp48 baseplate subunit %5BKlebsiella phage KP15%5D,gi%7C448260646%7Cref%7CYP_007348740.1%7C baseplate tail tube cap %5BKlebsiella phage KP27%5D,gi%7C292660673%7Cgb%7CADE34921.1%7C gp48 baseplate subunit %5BKlebsiella phage KP15%5D,gi%7C370343455%7Cgb%7CAEX26584.1%7C baseplate tail tube cap %5BKlebsiella phage KP27%5D;length=357 +Merlin_4 blast match_part 3 4 . . . Gap=M2;ID=b2g.3.34.0.0;Parent=b2g.3.34.0 +Merlin_4 blast match_part 8 21 . . . Gap=M14;ID=b2g.3.34.0.1;Parent=b2g.3.34.0 +Merlin_4 blast match_part 27 29 . . . Gap=M3;ID=b2g.3.34.0.2;Parent=b2g.3.34.0 +Merlin_4 blast match_part 33 51 . . . Gap=M19;ID=b2g.3.34.0.3;Parent=b2g.3.34.0 +Merlin_4 blast match_part 59 72 . . . Gap=M14;ID=b2g.3.34.0.4;Parent=b2g.3.34.0 +Merlin_4 blast match_part 76 89 . . . Gap=M8 I2 M4;ID=b2g.3.34.0.5;Parent=b2g.3.34.0 +Merlin_4 blast match_part 94 104 . . . Gap=M11;ID=b2g.3.34.0.6;Parent=b2g.3.34.0 +Merlin_4 blast match_part 110 141 . . . Gap=M32;ID=b2g.3.34.0.7;Parent=b2g.3.34.0 +Merlin_4 blast match_part 149 176 . . . Gap=M28;ID=b2g.3.34.0.8;Parent=b2g.3.34.0 +Merlin_4 blast match_part 181 194 . . . Gap=M14;ID=b2g.3.34.0.9;Parent=b2g.3.34.0 +Merlin_4 blast match_part 202 216 . . . Gap=M15;ID=b2g.3.34.0.10;Parent=b2g.3.34.0 +Merlin_4 blast match_part 221 224 . . . Gap=M4;ID=b2g.3.34.0.11;Parent=b2g.3.34.0 +Merlin_4 blast match_part 228 243 . . . Gap=M1 I1 M14;ID=b2g.3.34.0.12;Parent=b2g.3.34.0 +Merlin_4 blast match_part 247 260 . . . Gap=M14;ID=b2g.3.34.0.13;Parent=b2g.3.34.0 +Merlin_4 blast match_part 264 287 . . . Gap=M24;ID=b2g.3.34.0.14;Parent=b2g.3.34.0 +Merlin_4 blast match_part 298 313 . . . Gap=M16;ID=b2g.3.34.0.15;Parent=b2g.3.34.0 +Merlin_4 blast match_part 317 333 . . . Gap=M17;ID=b2g.3.34.0.16;Parent=b2g.3.34.0 +Merlin_4 blast match_part 337 347 . . . Gap=M11;ID=b2g.3.34.0.17;Parent=b2g.3.34.0 +Merlin_4 blast protein_match 3 388 6.23176e-45 . . ID=b2g.3.35.0;accession=YP_239081;blast_align_length=369;blast_bits=168.703;blast_frame=0;blast_gaps=36;blast_identities=111;blast_positives=191;blast_query_end=347;blast_query_start=3;blast_sbjct_end=357;blast_sbjct_start=1;blast_score=426.0;blast_strand=None;description=gp48 baseplate %5BEnterobacteria phage RB43%5D;hit_id=gi%7C66391556%7Cref%7CYP_239081.1%7C;hit_titles=gi%7C66391556%7Cref%7CYP_239081.1%7C gp48 baseplate %5BEnterobacteria phage RB43%5D,gi%7C62288644%7Cgb%7CAAX78627.1%7C gp48 baseplate %5BEnterobacteria phage RB43%5D,gi%7C406718846%7Cemb%7CCCL97571.1%7C protein of unknown function %5BEnterobacteria phage RB43%5D,gi%7C415434114%7Cemb%7CCCK73954.1%7C protein of unknown function %5BEnterobacteria phage RB43%5D;length=361 +Merlin_4 blast match_part 3 10 . . . Gap=M8;ID=b2g.3.35.0.0;Parent=b2g.3.35.0 +Merlin_4 blast match_part 14 21 . . . Gap=M8;ID=b2g.3.35.0.1;Parent=b2g.3.35.0 +Merlin_4 blast match_part 26 51 . . . Gap=M26;ID=b2g.3.35.0.2;Parent=b2g.3.35.0 +Merlin_4 blast match_part 59 71 . . . Gap=M13;ID=b2g.3.35.0.3;Parent=b2g.3.35.0 +Merlin_4 blast match_part 75 141 . . . Gap=M9 I2 M56;ID=b2g.3.35.0.4;Parent=b2g.3.35.0 +Merlin_4 blast match_part 149 150 . . . Gap=M2;ID=b2g.3.35.0.5;Parent=b2g.3.35.0 +Merlin_4 blast match_part 154 176 . . . Gap=M23;ID=b2g.3.35.0.6;Parent=b2g.3.35.0 +Merlin_4 blast match_part 181 194 . . . Gap=M14;ID=b2g.3.35.0.7;Parent=b2g.3.35.0 +Merlin_4 blast match_part 202 216 . . . Gap=M15;ID=b2g.3.35.0.8;Parent=b2g.3.35.0 +Merlin_4 blast match_part 221 224 . . . Gap=M4;ID=b2g.3.35.0.9;Parent=b2g.3.35.0 +Merlin_4 blast match_part 228 233 . . . Gap=M3 I1 M2;ID=b2g.3.35.0.10;Parent=b2g.3.35.0 +Merlin_4 blast match_part 237 237 . . . Gap=M1;ID=b2g.3.35.0.11;Parent=b2g.3.35.0 +Merlin_4 blast match_part 241 247 . . . Gap=M7;ID=b2g.3.35.0.12;Parent=b2g.3.35.0 +Merlin_4 blast match_part 251 287 . . . Gap=M37;ID=b2g.3.35.0.13;Parent=b2g.3.35.0 +Merlin_4 blast match_part 298 313 . . . Gap=M16;ID=b2g.3.35.0.14;Parent=b2g.3.35.0 +Merlin_4 blast match_part 317 333 . . . Gap=M17;ID=b2g.3.35.0.15;Parent=b2g.3.35.0 +Merlin_4 blast match_part 337 347 . . . Gap=M11;ID=b2g.3.35.0.16;Parent=b2g.3.35.0 +Merlin_4 blast protein_match 3 394 2.35983e-40 . . ID=b2g.3.36.0;accession=YP_008060624;blast_align_length=372;blast_bits=156.377;blast_frame=0;blast_gaps=39;blast_identities=106;blast_positives=187;blast_query_end=347;blast_query_start=3;blast_sbjct_end=360;blast_sbjct_start=1;blast_score=394.0;blast_strand=None;description=baseplate tail tube cap %5BEscherichia phage Lw1%5D;hit_id=gi%7C509141759%7Cref%7CYP_008060624.1%7C;hit_titles=gi%7C509141759%7Cref%7CYP_008060624.1%7C baseplate tail tube cap %5BEscherichia phage Lw1%5D,gi%7C479258586%7Cgb%7CAGJ71509.1%7C baseplate tail tube cap %5BEscherichia phage Lw1%5D;length=364 +Merlin_4 blast match_part 3 10 . . . Gap=M8;ID=b2g.3.36.0.0;Parent=b2g.3.36.0 +Merlin_4 blast match_part 14 21 . . . Gap=M8;ID=b2g.3.36.0.1;Parent=b2g.3.36.0 +Merlin_4 blast match_part 26 51 . . . Gap=M26;ID=b2g.3.36.0.2;Parent=b2g.3.36.0 +Merlin_4 blast match_part 59 70 . . . Gap=M12;ID=b2g.3.36.0.3;Parent=b2g.3.36.0 +Merlin_4 blast match_part 75 141 . . . Gap=M9 I2 M56;ID=b2g.3.36.0.4;Parent=b2g.3.36.0 +Merlin_4 blast match_part 150 176 . . . Gap=M27;ID=b2g.3.36.0.5;Parent=b2g.3.36.0 +Merlin_4 blast match_part 181 194 . . . Gap=M14;ID=b2g.3.36.0.6;Parent=b2g.3.36.0 +Merlin_4 blast match_part 202 216 . . . Gap=M15;ID=b2g.3.36.0.7;Parent=b2g.3.36.0 +Merlin_4 blast match_part 221 227 . . . Gap=M7;ID=b2g.3.36.0.8;Parent=b2g.3.36.0 +Merlin_4 blast match_part 232 236 . . . Gap=M5;ID=b2g.3.36.0.9;Parent=b2g.3.36.0 +Merlin_4 blast match_part 243 244 . . . Gap=M2;ID=b2g.3.36.0.10;Parent=b2g.3.36.0 +Merlin_4 blast match_part 249 255 . . . Gap=M7;ID=b2g.3.36.0.11;Parent=b2g.3.36.0 +Merlin_4 blast match_part 260 287 . . . Gap=M28;ID=b2g.3.36.0.12;Parent=b2g.3.36.0 +Merlin_4 blast match_part 298 313 . . . Gap=M16;ID=b2g.3.36.0.13;Parent=b2g.3.36.0 +Merlin_4 blast match_part 317 333 . . . Gap=M17;ID=b2g.3.36.0.14;Parent=b2g.3.36.0 +Merlin_4 blast match_part 337 347 . . . Gap=M11;ID=b2g.3.36.0.15;Parent=b2g.3.36.0 +Merlin_4 blast protein_match 3 394 6.71724e-40 . . ID=b2g.3.37.0;accession=YP_003858396;blast_align_length=372;blast_bits=155.221;blast_frame=0;blast_gaps=39;blast_identities=106;blast_positives=186;blast_query_end=347;blast_query_start=3;blast_sbjct_end=360;blast_sbjct_start=1;blast_score=391.0;blast_strand=None;description=gp48 baseplate tail tube cap %5BEnterobacteria phage RB16%5D;hit_id=gi%7C304373651%7Cref%7CYP_003858396.1%7C;hit_titles=gi%7C304373651%7Cref%7CYP_003858396.1%7C gp48 baseplate tail tube cap %5BEnterobacteria phage RB16%5D,gi%7C299829607%7Cgb%7CADJ55400.1%7C gp48 baseplate tail tube cap %5BEnterobacteria phage RB16%5D;length=364 +Merlin_4 blast match_part 3 10 . . . Gap=M8;ID=b2g.3.37.0.0;Parent=b2g.3.37.0 +Merlin_4 blast match_part 14 21 . . . Gap=M8;ID=b2g.3.37.0.1;Parent=b2g.3.37.0 +Merlin_4 blast match_part 26 51 . . . Gap=M26;ID=b2g.3.37.0.2;Parent=b2g.3.37.0 +Merlin_4 blast match_part 59 70 . . . Gap=M12;ID=b2g.3.37.0.3;Parent=b2g.3.37.0 +Merlin_4 blast match_part 75 141 . . . Gap=M9 I2 M56;ID=b2g.3.37.0.4;Parent=b2g.3.37.0 +Merlin_4 blast match_part 150 176 . . . Gap=M27;ID=b2g.3.37.0.5;Parent=b2g.3.37.0 +Merlin_4 blast match_part 181 194 . . . Gap=M14;ID=b2g.3.37.0.6;Parent=b2g.3.37.0 +Merlin_4 blast match_part 202 216 . . . Gap=M15;ID=b2g.3.37.0.7;Parent=b2g.3.37.0 +Merlin_4 blast match_part 221 227 . . . Gap=M7;ID=b2g.3.37.0.8;Parent=b2g.3.37.0 +Merlin_4 blast match_part 232 236 . . . Gap=M5;ID=b2g.3.37.0.9;Parent=b2g.3.37.0 +Merlin_4 blast match_part 243 244 . . . Gap=M2;ID=b2g.3.37.0.10;Parent=b2g.3.37.0 +Merlin_4 blast match_part 249 255 . . . Gap=M7;ID=b2g.3.37.0.11;Parent=b2g.3.37.0 +Merlin_4 blast match_part 260 287 . . . Gap=M28;ID=b2g.3.37.0.12;Parent=b2g.3.37.0 +Merlin_4 blast match_part 298 313 . . . Gap=M16;ID=b2g.3.37.0.13;Parent=b2g.3.37.0 +Merlin_4 blast match_part 317 333 . . . Gap=M17;ID=b2g.3.37.0.14;Parent=b2g.3.37.0 +Merlin_4 blast match_part 337 347 . . . Gap=M11;ID=b2g.3.37.0.15;Parent=b2g.3.37.0 +Merlin_4 blast protein_match -1 408 2.64906e-39 . . ID=b2g.3.38.0;accession=YP_006986373;blast_align_length=358;blast_bits=153.68;blast_frame=0;blast_gaps=43;blast_identities=102;blast_positives=178;blast_query_end=347;blast_query_start=17;blast_sbjct_end=360;blast_sbjct_start=19;blast_score=387.0;blast_strand=None;description=baseplate tail tube cap %5BCronobacter phage vB_CsaM_GAP161%5D;hit_id=gi%7C414086183%7Cref%7CYP_006986373.1%7C;hit_titles=gi%7C414086183%7Cref%7CYP_006986373.1%7C baseplate tail tube cap %5BCronobacter phage vB_CsaM_GAP161%5D,gi%7C378566508%7Cgb%7CAFC22204.1%7C baseplate tail tube cap %5BCronobacter phage vB_CsaM_GAP161%5D;length=364 +Merlin_4 blast match_part 17 21 . . . Gap=M5;ID=b2g.3.38.0.0;Parent=b2g.3.38.0 +Merlin_4 blast match_part 26 51 . . . Gap=M26;ID=b2g.3.38.0.1;Parent=b2g.3.38.0 +Merlin_4 blast match_part 59 71 . . . Gap=M13;ID=b2g.3.38.0.2;Parent=b2g.3.38.0 +Merlin_4 blast match_part 75 141 . . . Gap=M9 I2 M56;ID=b2g.3.38.0.3;Parent=b2g.3.38.0 +Merlin_4 blast match_part 150 176 . . . Gap=M27;ID=b2g.3.38.0.4;Parent=b2g.3.38.0 +Merlin_4 blast match_part 181 194 . . . Gap=M14;ID=b2g.3.38.0.5;Parent=b2g.3.38.0 +Merlin_4 blast match_part 202 216 . . . Gap=M15;ID=b2g.3.38.0.6;Parent=b2g.3.38.0 +Merlin_4 blast match_part 221 224 . . . Gap=M4;ID=b2g.3.38.0.7;Parent=b2g.3.38.0 +Merlin_4 blast match_part 228 230 . . . Gap=M3;ID=b2g.3.38.0.8;Parent=b2g.3.38.0 +Merlin_4 blast match_part 236 244 . . . Gap=M9;ID=b2g.3.38.0.9;Parent=b2g.3.38.0 +Merlin_4 blast match_part 248 251 . . . Gap=M4;ID=b2g.3.38.0.10;Parent=b2g.3.38.0 +Merlin_4 blast match_part 257 263 . . . Gap=M7;ID=b2g.3.38.0.11;Parent=b2g.3.38.0 +Merlin_4 blast match_part 267 287 . . . Gap=M21;ID=b2g.3.38.0.12;Parent=b2g.3.38.0 +Merlin_4 blast match_part 298 313 . . . Gap=M16;ID=b2g.3.38.0.13;Parent=b2g.3.38.0 +Merlin_4 blast match_part 317 326 . . . Gap=M10;ID=b2g.3.38.0.14;Parent=b2g.3.38.0 +Merlin_4 blast match_part 331 333 . . . Gap=M3;ID=b2g.3.38.0.15;Parent=b2g.3.38.0 +Merlin_4 blast match_part 337 347 . . . Gap=M11;ID=b2g.3.38.0.16;Parent=b2g.3.38.0 +Merlin_4 blast protein_match 4 175 1.55074e-24 . . ID=b2g.3.39.0;accession=YP_006489093;blast_align_length=125;blast_bits=107.071;blast_frame=0;blast_gaps=10;blast_identities=59;blast_positives=80;blast_query_end=136;blast_query_start=22;blast_sbjct_end=143;blast_sbjct_start=19;blast_score=266.0;blast_strand=None;description=putative split baseplate tail tube cap %5BAcinetobacter phage ZZ1%5D;hit_id=gi%7C392973135%7Cref%7CYP_006489093.1%7C;hit_titles=gi%7C392973135%7Cref%7CYP_006489093.1%7C putative split baseplate tail tube cap %5BAcinetobacter phage ZZ1%5D;length=143 +Merlin_4 blast match_part 22 56 . . . Gap=M35;ID=b2g.3.39.0.0;Parent=b2g.3.39.0 +Merlin_4 blast match_part 60 83 . . . Gap=M24;ID=b2g.3.39.0.1;Parent=b2g.3.39.0 +Merlin_4 blast match_part 88 90 . . . Gap=M3;ID=b2g.3.39.0.2;Parent=b2g.3.39.0 +Merlin_4 blast match_part 94 101 . . . Gap=M8;ID=b2g.3.39.0.3;Parent=b2g.3.39.0 +Merlin_4 blast match_part 108 136 . . . Gap=M29;ID=b2g.3.39.0.4;Parent=b2g.3.39.0 +Merlin_4 blast protein_match -21 452 3.83249e-07 . . ID=b2g.3.40.0;accession=WP_025548737;blast_align_length=269;blast_bits=60.8474;blast_frame=0;blast_gaps=44;blast_identities=65;blast_positives=105;blast_query_end=346;blast_query_start=87;blast_sbjct_end=342;blast_sbjct_start=109;blast_score=146.0;blast_strand=None;description=hypothetical protein %5BVibrio parahaemolyticus%5D;hit_id=gi%7C646519388%7Cref%7CWP_025548737.1%7C;hit_titles=gi%7C646519388%7Cref%7CWP_025548737.1%7C hypothetical protein %5BVibrio parahaemolyticus%5D,gi%7C655769907%7Cgb%7CKEE53216.1%7C hypothetical protein EM88_01435 %5BVibrio parahaemolyticus%5D,gi%7C655811799%7Cgb%7CKEE89780.1%7C hypothetical protein EM91_01710 %5BVibrio parahaemolyticus%5D;length=356 +Merlin_4 blast match_part 87 87 . . . Gap=M1;ID=b2g.3.40.0.0;Parent=b2g.3.40.0 +Merlin_4 blast match_part 92 101 . . . Gap=M10;ID=b2g.3.40.0.1;Parent=b2g.3.40.0 +Merlin_4 blast match_part 106 114 . . . Gap=M9;ID=b2g.3.40.0.2;Parent=b2g.3.40.0 +Merlin_4 blast match_part 121 124 . . . Gap=M4;ID=b2g.3.40.0.3;Parent=b2g.3.40.0 +Merlin_4 blast match_part 129 131 . . . Gap=M3;ID=b2g.3.40.0.4;Parent=b2g.3.40.0 +Merlin_4 blast match_part 136 138 . . . Gap=M3;ID=b2g.3.40.0.5;Parent=b2g.3.40.0 +Merlin_4 blast match_part 147 153 . . . Gap=M7;ID=b2g.3.40.0.6;Parent=b2g.3.40.0 +Merlin_4 blast match_part 162 162 . . . Gap=M1;ID=b2g.3.40.0.7;Parent=b2g.3.40.0 +Merlin_4 blast match_part 166 178 . . . Gap=M13;ID=b2g.3.40.0.8;Parent=b2g.3.40.0 +Merlin_4 blast match_part 184 186 . . . Gap=M3;ID=b2g.3.40.0.9;Parent=b2g.3.40.0 +Merlin_4 blast match_part 190 192 . . . Gap=M3;ID=b2g.3.40.0.10;Parent=b2g.3.40.0 +Merlin_4 blast match_part 196 196 . . . Gap=M1;ID=b2g.3.40.0.11;Parent=b2g.3.40.0 +Merlin_4 blast match_part 200 216 . . . Gap=M17;ID=b2g.3.40.0.12;Parent=b2g.3.40.0 +Merlin_4 blast match_part 220 228 . . . Gap=M9;ID=b2g.3.40.0.13;Parent=b2g.3.40.0 +Merlin_4 blast match_part 247 260 . . . Gap=M4 I2 M8;ID=b2g.3.40.0.14;Parent=b2g.3.40.0 +Merlin_4 blast match_part 269 269 . . . Gap=M1;ID=b2g.3.40.0.15;Parent=b2g.3.40.0 +Merlin_4 blast match_part 274 282 . . . Gap=M9;ID=b2g.3.40.0.16;Parent=b2g.3.40.0 +Merlin_4 blast match_part 286 316 . . . Gap=M10 I1 M20;ID=b2g.3.40.0.17;Parent=b2g.3.40.0 +Merlin_4 blast match_part 326 346 . . . Gap=M21;ID=b2g.3.40.0.18;Parent=b2g.3.40.0 +Merlin_4 blast protein_match 0 460 2.65852e-06 . . ID=b2g.3.41.0;accession=YP_009006262;blast_align_length=307;blast_bits=58.5362;blast_frame=0;blast_gaps=50;blast_identities=73;blast_positives=122;blast_query_end=344;blast_query_start=60;blast_sbjct_end=339;blast_sbjct_start=61;blast_score=140.0;blast_strand=None;description=tail-tube assembly protein %5BVibrio phage VH7D%5D;hit_id=gi%7C589286464%7Cref%7CYP_009006262.1%7C;hit_titles=gi%7C589286464%7Cref%7CYP_009006262.1%7C tail-tube assembly protein %5BVibrio phage VH7D%5D,gi%7C432142395%7Cgb%7CAGB06975.1%7C tail-tube assembly protein %5BVibrio phage VH7D%5D;length=378 +Merlin_4 blast match_part 60 71 . . . Gap=M12;ID=b2g.3.41.0.0;Parent=b2g.3.41.0 +Merlin_4 blast match_part 75 75 . . . Gap=M1;ID=b2g.3.41.0.1;Parent=b2g.3.41.0 +Merlin_4 blast match_part 82 90 . . . Gap=M9;ID=b2g.3.41.0.2;Parent=b2g.3.41.0 +Merlin_4 blast match_part 97 98 . . . Gap=M2;ID=b2g.3.41.0.3;Parent=b2g.3.41.0 +Merlin_4 blast match_part 103 127 . . . Gap=M25;ID=b2g.3.41.0.4;Parent=b2g.3.41.0 +Merlin_4 blast match_part 131 131 . . . Gap=M1;ID=b2g.3.41.0.5;Parent=b2g.3.41.0 +Merlin_4 blast match_part 136 144 . . . Gap=M9;ID=b2g.3.41.0.6;Parent=b2g.3.41.0 +Merlin_4 blast match_part 148 151 . . . Gap=M4;ID=b2g.3.41.0.7;Parent=b2g.3.41.0 +Merlin_4 blast match_part 155 155 . . . Gap=M1;ID=b2g.3.41.0.8;Parent=b2g.3.41.0 +Merlin_4 blast match_part 159 162 . . . Gap=M4;ID=b2g.3.41.0.9;Parent=b2g.3.41.0 +Merlin_4 blast match_part 168 171 . . . Gap=M4;ID=b2g.3.41.0.10;Parent=b2g.3.41.0 +Merlin_4 blast match_part 178 178 . . . Gap=M1;ID=b2g.3.41.0.11;Parent=b2g.3.41.0 +Merlin_4 blast match_part 182 186 . . . Gap=M5;ID=b2g.3.41.0.12;Parent=b2g.3.41.0 +Merlin_4 blast match_part 190 192 . . . Gap=M3;ID=b2g.3.41.0.13;Parent=b2g.3.41.0 +Merlin_4 blast match_part 196 196 . . . Gap=M1;ID=b2g.3.41.0.14;Parent=b2g.3.41.0 +Merlin_4 blast match_part 200 216 . . . Gap=M17;ID=b2g.3.41.0.15;Parent=b2g.3.41.0 +Merlin_4 blast match_part 221 222 . . . Gap=M2;ID=b2g.3.41.0.16;Parent=b2g.3.41.0 +Merlin_4 blast match_part 230 238 . . . Gap=M9;ID=b2g.3.41.0.17;Parent=b2g.3.41.0 +Merlin_4 blast match_part 243 255 . . . Gap=M13;ID=b2g.3.41.0.18;Parent=b2g.3.41.0 +Merlin_4 blast match_part 261 268 . . . Gap=M8;ID=b2g.3.41.0.19;Parent=b2g.3.41.0 +Merlin_4 blast match_part 277 282 . . . Gap=M6;ID=b2g.3.41.0.20;Parent=b2g.3.41.0 +Merlin_4 blast match_part 288 316 . . . Gap=M8 I1 M20;ID=b2g.3.41.0.21;Parent=b2g.3.41.0 +Merlin_4 blast match_part 326 327 . . . Gap=M2;ID=b2g.3.41.0.22;Parent=b2g.3.41.0 +Merlin_4 blast match_part 331 344 . . . Gap=M14;ID=b2g.3.41.0.23;Parent=b2g.3.41.0 +##gff-version 3 ##sequence-region Merlin_5 1 4 -Merlin_5 blast protein_match 1 577 0.0 . . ID=biopygen115;accession=YP_007501227;description=baseplate hub %5BSalmonella phage S16%5D;hit_id=gi%7C456351275%7Cref%7CYP_007501227.1%7C;hit_titles=gi%7C456351275%7Cref%7CYP_007501227.1%7C baseplate hub %5BSalmonella phage S16%5D,gi%7C347466340%7Cgb%7CAEO97126.1%7C baseplate hub %5BSalmonella phage S16%5D,gi%7C408387124%7Cgb%7CAFU64133.1%7C baseplate hub %5BSalmonella phage STML-198%5D;length=577 -Merlin_5 blast match_part 1 69 . . . Gap=M69;ID=gi%7C456351275%7Cref%7CYP_007501227.1%7C;Parent=biopygen115 -Merlin_5 blast match_part 73 123 . . . Gap=M51;ID=gi%7C456351275%7Cref%7CYP_007501227.1%7C;Parent=biopygen115 -Merlin_5 blast match_part 131 143 . . . Gap=M13;ID=gi%7C456351275%7Cref%7CYP_007501227.1%7C;Parent=biopygen115 -Merlin_5 blast match_part 147 153 . . . Gap=M7;ID=gi%7C456351275%7Cref%7CYP_007501227.1%7C;Parent=biopygen115 -Merlin_5 blast match_part 158 185 . . . Gap=M5 I1 M22;ID=gi%7C456351275%7Cref%7CYP_007501227.1%7C;Parent=biopygen115 -Merlin_5 blast match_part 192 377 . . . Gap=M186;ID=gi%7C456351275%7Cref%7CYP_007501227.1%7C;Parent=biopygen115 -Merlin_5 blast match_part 381 404 . . . Gap=M24;ID=gi%7C456351275%7Cref%7CYP_007501227.1%7C;Parent=biopygen115 -Merlin_5 blast match_part 408 426 . . . Gap=M19;ID=gi%7C456351275%7Cref%7CYP_007501227.1%7C;Parent=biopygen115 -Merlin_5 blast match_part 430 530 . . . Gap=M101;ID=gi%7C456351275%7Cref%7CYP_007501227.1%7C;Parent=biopygen115 -Merlin_5 blast match_part 536 536 . . . Gap=M1;ID=gi%7C456351275%7Cref%7CYP_007501227.1%7C;Parent=biopygen115 -Merlin_5 blast match_part 540 576 . . . Gap=M37;ID=gi%7C456351275%7Cref%7CYP_007501227.1%7C;Parent=biopygen115 -Merlin_5 blast protein_match 1 577 0.0 . . ID=biopygen116;accession=YP_009005474;description=baseplate hub subunit tail length determinator %5BEnterobacter phage PG7%5D;hit_id=gi%7C589889938%7Cref%7CYP_009005474.1%7C;hit_titles=gi%7C589889938%7Cref%7CYP_009005474.1%7C baseplate hub subunit tail length determinator %5BEnterobacter phage PG7%5D,gi%7C583927851%7Cgb%7CAHI61113.1%7C baseplate hub subunit tail length determinator %5BEnterobacter phage PG7%5D;length=586 -Merlin_5 blast match_part 1 116 . . . Gap=M11 I1 M104;ID=gi%7C589889938%7Cref%7CYP_009005474.1%7C;Parent=biopygen116 -Merlin_5 blast match_part 120 122 . . . Gap=M3;ID=gi%7C589889938%7Cref%7CYP_009005474.1%7C;Parent=biopygen116 -Merlin_5 blast match_part 129 139 . . . Gap=M11;ID=gi%7C589889938%7Cref%7CYP_009005474.1%7C;Parent=biopygen116 -Merlin_5 blast match_part 143 155 . . . Gap=M13;ID=gi%7C589889938%7Cref%7CYP_009005474.1%7C;Parent=biopygen116 -Merlin_5 blast match_part 159 181 . . . Gap=M23;ID=gi%7C589889938%7Cref%7CYP_009005474.1%7C;Parent=biopygen116 -Merlin_5 blast match_part 186 376 . . . Gap=M191;ID=gi%7C589889938%7Cref%7CYP_009005474.1%7C;Parent=biopygen116 -Merlin_5 blast match_part 381 388 . . . Gap=M8;ID=gi%7C589889938%7Cref%7CYP_009005474.1%7C;Parent=biopygen116 -Merlin_5 blast match_part 392 402 . . . Gap=M11;ID=gi%7C589889938%7Cref%7CYP_009005474.1%7C;Parent=biopygen116 -Merlin_5 blast match_part 408 488 . . . Gap=M81;ID=gi%7C589889938%7Cref%7CYP_009005474.1%7C;Parent=biopygen116 -Merlin_5 blast match_part 492 500 . . . Gap=M9;ID=gi%7C589889938%7Cref%7CYP_009005474.1%7C;Parent=biopygen116 -Merlin_5 blast match_part 505 536 . . . Gap=M32;ID=gi%7C589889938%7Cref%7CYP_009005474.1%7C;Parent=biopygen116 -Merlin_5 blast match_part 542 543 . . . Gap=M2;ID=gi%7C589889938%7Cref%7CYP_009005474.1%7C;Parent=biopygen116 -Merlin_5 blast match_part 547 576 . . . Gap=M30;ID=gi%7C589889938%7Cref%7CYP_009005474.1%7C;Parent=biopygen116 -Merlin_5 blast protein_match 1 577 0.0 . . ID=biopygen117;accession=YP_004010053;description=gp29 base plate hub subunit%2C tail length determinator %5BEnterobacteria phage CC31%5D;hit_id=gi%7C311993187%7Cref%7CYP_004010053.1%7C;hit_titles=gi%7C311993187%7Cref%7CYP_004010053.1%7C gp29 base plate hub subunit%2C tail length determinator %5BEnterobacteria phage CC31%5D,gi%7C284178025%7Cgb%7CADB81691.1%7C gp29 base plate hub subunit%2C tail length determinator %5BEnterobacteria phage CC31%5D;length=586 -Merlin_5 blast match_part 1 116 . . . Gap=M11 I1 M104;ID=gi%7C311993187%7Cref%7CYP_004010053.1%7C;Parent=biopygen117 -Merlin_5 blast match_part 120 122 . . . Gap=M3;ID=gi%7C311993187%7Cref%7CYP_004010053.1%7C;Parent=biopygen117 -Merlin_5 blast match_part 129 139 . . . Gap=M11;ID=gi%7C311993187%7Cref%7CYP_004010053.1%7C;Parent=biopygen117 -Merlin_5 blast match_part 143 155 . . . Gap=M13;ID=gi%7C311993187%7Cref%7CYP_004010053.1%7C;Parent=biopygen117 -Merlin_5 blast match_part 159 181 . . . Gap=M23;ID=gi%7C311993187%7Cref%7CYP_004010053.1%7C;Parent=biopygen117 -Merlin_5 blast match_part 186 376 . . . Gap=M191;ID=gi%7C311993187%7Cref%7CYP_004010053.1%7C;Parent=biopygen117 -Merlin_5 blast match_part 381 388 . . . Gap=M8;ID=gi%7C311993187%7Cref%7CYP_004010053.1%7C;Parent=biopygen117 -Merlin_5 blast match_part 392 402 . . . Gap=M11;ID=gi%7C311993187%7Cref%7CYP_004010053.1%7C;Parent=biopygen117 -Merlin_5 blast match_part 408 488 . . . Gap=M81;ID=gi%7C311993187%7Cref%7CYP_004010053.1%7C;Parent=biopygen117 -Merlin_5 blast match_part 492 500 . . . Gap=M9;ID=gi%7C311993187%7Cref%7CYP_004010053.1%7C;Parent=biopygen117 -Merlin_5 blast match_part 505 528 . . . Gap=M24;ID=gi%7C311993187%7Cref%7CYP_004010053.1%7C;Parent=biopygen117 -Merlin_5 blast match_part 532 532 . . . Gap=M1;ID=gi%7C311993187%7Cref%7CYP_004010053.1%7C;Parent=biopygen117 -Merlin_5 blast match_part 540 576 . . . Gap=M6 I1 M30;ID=gi%7C311993187%7Cref%7CYP_004010053.1%7C;Parent=biopygen117 -Merlin_5 blast protein_match 0 577 1.35305e-146 . . ID=biopygen118;accession=YP_007004568;description=phage baseplate hub %5BEnterobacteria phage ime09%5D;hit_id=gi%7C422934607%7Cref%7CYP_007004568.1%7C;hit_titles=gi%7C422934607%7Cref%7CYP_007004568.1%7C phage baseplate hub %5BEnterobacteria phage ime09%5D,gi%7C339791390%7Cgb%7CAEK12447.1%7C phage baseplate hub %5BEnterobacteria phage ime09%5D;length=590 -Merlin_5 blast match_part 2 70 . . . Gap=M10 I1 M58;ID=gi%7C422934607%7Cref%7CYP_007004568.1%7C;Parent=biopygen118 -Merlin_5 blast match_part 81 82 . . . Gap=M2;ID=gi%7C422934607%7Cref%7CYP_007004568.1%7C;Parent=biopygen118 -Merlin_5 blast match_part 86 89 . . . Gap=M4;ID=gi%7C422934607%7Cref%7CYP_007004568.1%7C;Parent=biopygen118 -Merlin_5 blast match_part 94 114 . . . Gap=M21;ID=gi%7C422934607%7Cref%7CYP_007004568.1%7C;Parent=biopygen118 -Merlin_5 blast match_part 120 148 . . . Gap=M29;ID=gi%7C422934607%7Cref%7CYP_007004568.1%7C;Parent=biopygen118 -Merlin_5 blast match_part 153 200 . . . Gap=M48;ID=gi%7C422934607%7Cref%7CYP_007004568.1%7C;Parent=biopygen118 -Merlin_5 blast match_part 204 382 . . . Gap=M179;ID=gi%7C422934607%7Cref%7CYP_007004568.1%7C;Parent=biopygen118 -Merlin_5 blast match_part 386 400 . . . Gap=M15;ID=gi%7C422934607%7Cref%7CYP_007004568.1%7C;Parent=biopygen118 -Merlin_5 blast match_part 404 404 . . . Gap=M1;ID=gi%7C422934607%7Cref%7CYP_007004568.1%7C;Parent=biopygen118 -Merlin_5 blast match_part 408 444 . . . Gap=M37;ID=gi%7C422934607%7Cref%7CYP_007004568.1%7C;Parent=biopygen118 -Merlin_5 blast match_part 449 449 . . . Gap=M1;ID=gi%7C422934607%7Cref%7CYP_007004568.1%7C;Parent=biopygen118 -Merlin_5 blast match_part 454 463 . . . Gap=M10;ID=gi%7C422934607%7Cref%7CYP_007004568.1%7C;Parent=biopygen118 -Merlin_5 blast match_part 467 507 . . . Gap=M35 I1 M5;ID=gi%7C422934607%7Cref%7CYP_007004568.1%7C;Parent=biopygen118 -Merlin_5 blast match_part 511 524 . . . Gap=M14;ID=gi%7C422934607%7Cref%7CYP_007004568.1%7C;Parent=biopygen118 -Merlin_5 blast match_part 532 533 . . . Gap=M2;ID=gi%7C422934607%7Cref%7CYP_007004568.1%7C;Parent=biopygen118 -Merlin_5 blast match_part 539 576 . . . Gap=M38;ID=gi%7C422934607%7Cref%7CYP_007004568.1%7C;Parent=biopygen118 -Merlin_5 blast protein_match 0 577 9.14277e-145 . . ID=biopygen119;accession=YP_002854147;description=gp29 base plate hub %5BEnterobacteria phage RB51%5D;hit_id=gi%7C228861124%7Cref%7CYP_002854147.1%7C;hit_titles=gi%7C228861124%7Cref%7CYP_002854147.1%7C gp29 base plate hub %5BEnterobacteria phage RB51%5D,gi%7C227438798%7Cgb%7CACP31110.1%7C gp29 base plate hub %5BEnterobacteria phage RB51%5D,gi%7C291290410%7Cdbj%7CBAI83205.1%7C baseplate hub subunit/tail length determinator %5BEnterobacteria phage AR1%5D;length=590 -Merlin_5 blast match_part 2 70 . . . Gap=M10 I1 M58;ID=gi%7C228861124%7Cref%7CYP_002854147.1%7C;Parent=biopygen119 -Merlin_5 blast match_part 81 82 . . . Gap=M2;ID=gi%7C228861124%7Cref%7CYP_002854147.1%7C;Parent=biopygen119 -Merlin_5 blast match_part 86 89 . . . Gap=M4;ID=gi%7C228861124%7Cref%7CYP_002854147.1%7C;Parent=biopygen119 -Merlin_5 blast match_part 94 114 . . . Gap=M21;ID=gi%7C228861124%7Cref%7CYP_002854147.1%7C;Parent=biopygen119 -Merlin_5 blast match_part 120 124 . . . Gap=M5;ID=gi%7C228861124%7Cref%7CYP_002854147.1%7C;Parent=biopygen119 -Merlin_5 blast match_part 129 148 . . . Gap=M20;ID=gi%7C228861124%7Cref%7CYP_002854147.1%7C;Parent=biopygen119 -Merlin_5 blast match_part 153 200 . . . Gap=M48;ID=gi%7C228861124%7Cref%7CYP_002854147.1%7C;Parent=biopygen119 -Merlin_5 blast match_part 204 382 . . . Gap=M179;ID=gi%7C228861124%7Cref%7CYP_002854147.1%7C;Parent=biopygen119 -Merlin_5 blast match_part 386 400 . . . Gap=M15;ID=gi%7C228861124%7Cref%7CYP_002854147.1%7C;Parent=biopygen119 -Merlin_5 blast match_part 404 404 . . . Gap=M1;ID=gi%7C228861124%7Cref%7CYP_002854147.1%7C;Parent=biopygen119 -Merlin_5 blast match_part 408 444 . . . Gap=M37;ID=gi%7C228861124%7Cref%7CYP_002854147.1%7C;Parent=biopygen119 -Merlin_5 blast match_part 449 449 . . . Gap=M1;ID=gi%7C228861124%7Cref%7CYP_002854147.1%7C;Parent=biopygen119 -Merlin_5 blast match_part 454 463 . . . Gap=M10;ID=gi%7C228861124%7Cref%7CYP_002854147.1%7C;Parent=biopygen119 -Merlin_5 blast match_part 467 507 . . . Gap=M35 I1 M5;ID=gi%7C228861124%7Cref%7CYP_002854147.1%7C;Parent=biopygen119 -Merlin_5 blast match_part 511 524 . . . Gap=M14;ID=gi%7C228861124%7Cref%7CYP_002854147.1%7C;Parent=biopygen119 -Merlin_5 blast match_part 532 533 . . . Gap=M2;ID=gi%7C228861124%7Cref%7CYP_002854147.1%7C;Parent=biopygen119 -Merlin_5 blast match_part 539 576 . . . Gap=M38;ID=gi%7C228861124%7Cref%7CYP_002854147.1%7C;Parent=biopygen119 -Merlin_5 blast protein_match 0 577 1.58375e-144 . . ID=biopygen120;accession=YP_007004932;description=baseplate hub subunit tail length determinator %5BEscherichia phage wV7%5D;hit_id=gi%7C422934972%7Cref%7CYP_007004932.1%7C;hit_titles=gi%7C422934972%7Cref%7CYP_007004932.1%7C baseplate hub subunit tail length determinator %5BEscherichia phage wV7%5D,gi%7C343177526%7Cgb%7CAEM00852.1%7C baseplate hub subunit tail length determinator %5BEscherichia phage wV7%5D;length=590 -Merlin_5 blast match_part 2 70 . . . Gap=M10 I1 M58;ID=gi%7C422934972%7Cref%7CYP_007004932.1%7C;Parent=biopygen120 -Merlin_5 blast match_part 81 82 . . . Gap=M2;ID=gi%7C422934972%7Cref%7CYP_007004932.1%7C;Parent=biopygen120 -Merlin_5 blast match_part 86 89 . . . Gap=M4;ID=gi%7C422934972%7Cref%7CYP_007004932.1%7C;Parent=biopygen120 -Merlin_5 blast match_part 94 114 . . . Gap=M21;ID=gi%7C422934972%7Cref%7CYP_007004932.1%7C;Parent=biopygen120 -Merlin_5 blast match_part 120 124 . . . Gap=M5;ID=gi%7C422934972%7Cref%7CYP_007004932.1%7C;Parent=biopygen120 -Merlin_5 blast match_part 129 148 . . . Gap=M20;ID=gi%7C422934972%7Cref%7CYP_007004932.1%7C;Parent=biopygen120 -Merlin_5 blast match_part 153 200 . . . Gap=M48;ID=gi%7C422934972%7Cref%7CYP_007004932.1%7C;Parent=biopygen120 -Merlin_5 blast match_part 204 382 . . . Gap=M179;ID=gi%7C422934972%7Cref%7CYP_007004932.1%7C;Parent=biopygen120 -Merlin_5 blast match_part 386 400 . . . Gap=M15;ID=gi%7C422934972%7Cref%7CYP_007004932.1%7C;Parent=biopygen120 -Merlin_5 blast match_part 404 404 . . . Gap=M1;ID=gi%7C422934972%7Cref%7CYP_007004932.1%7C;Parent=biopygen120 -Merlin_5 blast match_part 408 444 . . . Gap=M37;ID=gi%7C422934972%7Cref%7CYP_007004932.1%7C;Parent=biopygen120 -Merlin_5 blast match_part 449 449 . . . Gap=M1;ID=gi%7C422934972%7Cref%7CYP_007004932.1%7C;Parent=biopygen120 -Merlin_5 blast match_part 454 463 . . . Gap=M10;ID=gi%7C422934972%7Cref%7CYP_007004932.1%7C;Parent=biopygen120 -Merlin_5 blast match_part 467 507 . . . Gap=M35 I1 M5;ID=gi%7C422934972%7Cref%7CYP_007004932.1%7C;Parent=biopygen120 -Merlin_5 blast match_part 511 524 . . . Gap=M14;ID=gi%7C422934972%7Cref%7CYP_007004932.1%7C;Parent=biopygen120 -Merlin_5 blast match_part 532 533 . . . Gap=M2;ID=gi%7C422934972%7Cref%7CYP_007004932.1%7C;Parent=biopygen120 -Merlin_5 blast match_part 539 576 . . . Gap=M38;ID=gi%7C422934972%7Cref%7CYP_007004932.1%7C;Parent=biopygen120 -Merlin_5 blast protein_match 1 577 3.83095e-144 . . ID=biopygen121;accession=AHV82895;description=baseplate hub subunit%2C tail length determinator %5BEscherichia phage vB_EcoM_PhAPEC2%5D;hit_id=gi%7C604671901%7Cgb%7CAHV82895.1%7C;hit_titles=gi%7C604671901%7Cgb%7CAHV82895.1%7C baseplate hub subunit%2C tail length determinator %5BEscherichia phage vB_EcoM_PhAPEC2%5D;length=590 -Merlin_5 blast match_part 1 114 . . . Gap=M114;ID=gi%7C604671901%7Cgb%7CAHV82895.1%7C;Parent=biopygen121 -Merlin_5 blast match_part 120 124 . . . Gap=M5;ID=gi%7C604671901%7Cgb%7CAHV82895.1%7C;Parent=biopygen121 -Merlin_5 blast match_part 129 139 . . . Gap=M11;ID=gi%7C604671901%7Cgb%7CAHV82895.1%7C;Parent=biopygen121 -Merlin_5 blast match_part 143 146 . . . Gap=M4;ID=gi%7C604671901%7Cgb%7CAHV82895.1%7C;Parent=biopygen121 -Merlin_5 blast match_part 152 170 . . . Gap=M19;ID=gi%7C604671901%7Cgb%7CAHV82895.1%7C;Parent=biopygen121 -Merlin_5 blast match_part 174 184 . . . Gap=M11;ID=gi%7C604671901%7Cgb%7CAHV82895.1%7C;Parent=biopygen121 -Merlin_5 blast match_part 189 306 . . . Gap=M118;ID=gi%7C604671901%7Cgb%7CAHV82895.1%7C;Parent=biopygen121 -Merlin_5 blast match_part 310 374 . . . Gap=M65;ID=gi%7C604671901%7Cgb%7CAHV82895.1%7C;Parent=biopygen121 -Merlin_5 blast match_part 378 388 . . . Gap=M11;ID=gi%7C604671901%7Cgb%7CAHV82895.1%7C;Parent=biopygen121 -Merlin_5 blast match_part 392 463 . . . Gap=M72;ID=gi%7C604671901%7Cgb%7CAHV82895.1%7C;Parent=biopygen121 -Merlin_5 blast match_part 468 524 . . . Gap=M57;ID=gi%7C604671901%7Cgb%7CAHV82895.1%7C;Parent=biopygen121 -Merlin_5 blast match_part 528 534 . . . Gap=M1 I2 M4;ID=gi%7C604671901%7Cgb%7CAHV82895.1%7C;Parent=biopygen121 -Merlin_5 blast match_part 541 549 . . . Gap=M4 I2 M3;ID=gi%7C604671901%7Cgb%7CAHV82895.1%7C;Parent=biopygen121 -Merlin_5 blast match_part 554 576 . . . Gap=M23;ID=gi%7C604671901%7Cgb%7CAHV82895.1%7C;Parent=biopygen121 -Merlin_5 blast protein_match 1 577 4.26665e-144 . . ID=biopygen122;accession=NP_861896;description=gp29 baseplate hub subunit%2C tail length determinator %5BEnterobacteria phage RB69%5D;hit_id=gi%7C32453687%7Cref%7CNP_861896.1%7C;hit_titles=gi%7C32453687%7Cref%7CNP_861896.1%7C gp29 baseplate hub subunit%2C tail length determinator %5BEnterobacteria phage RB69%5D,gi%7C32350506%7Cgb%7CAAP76105.1%7C gp29 baseplate hub subunit%2C tail length determinator %5BEnterobacteria phage RB69%5D;length=590 -Merlin_5 blast match_part 1 114 . . . Gap=M114;ID=gi%7C32453687%7Cref%7CNP_861896.1%7C;Parent=biopygen122 -Merlin_5 blast match_part 120 124 . . . Gap=M5;ID=gi%7C32453687%7Cref%7CNP_861896.1%7C;Parent=biopygen122 -Merlin_5 blast match_part 129 139 . . . Gap=M11;ID=gi%7C32453687%7Cref%7CNP_861896.1%7C;Parent=biopygen122 -Merlin_5 blast match_part 143 146 . . . Gap=M4;ID=gi%7C32453687%7Cref%7CNP_861896.1%7C;Parent=biopygen122 -Merlin_5 blast match_part 152 170 . . . Gap=M19;ID=gi%7C32453687%7Cref%7CNP_861896.1%7C;Parent=biopygen122 -Merlin_5 blast match_part 174 184 . . . Gap=M11;ID=gi%7C32453687%7Cref%7CNP_861896.1%7C;Parent=biopygen122 -Merlin_5 blast match_part 189 306 . . . Gap=M118;ID=gi%7C32453687%7Cref%7CNP_861896.1%7C;Parent=biopygen122 -Merlin_5 blast match_part 310 374 . . . Gap=M65;ID=gi%7C32453687%7Cref%7CNP_861896.1%7C;Parent=biopygen122 -Merlin_5 blast match_part 378 388 . . . Gap=M11;ID=gi%7C32453687%7Cref%7CNP_861896.1%7C;Parent=biopygen122 -Merlin_5 blast match_part 392 463 . . . Gap=M72;ID=gi%7C32453687%7Cref%7CNP_861896.1%7C;Parent=biopygen122 -Merlin_5 blast match_part 468 531 . . . Gap=M64;ID=gi%7C32453687%7Cref%7CNP_861896.1%7C;Parent=biopygen122 -Merlin_5 blast match_part 535 536 . . . Gap=M2;ID=gi%7C32453687%7Cref%7CNP_861896.1%7C;Parent=biopygen122 -Merlin_5 blast match_part 541 549 . . . Gap=M4 I2 M3;ID=gi%7C32453687%7Cref%7CNP_861896.1%7C;Parent=biopygen122 -Merlin_5 blast match_part 554 576 . . . Gap=M23;ID=gi%7C32453687%7Cref%7CNP_861896.1%7C;Parent=biopygen122 -Merlin_5 blast protein_match 1 577 6.28771e-144 . . ID=biopygen123;accession=YP_009037575;description=baseplate hub subunit%2C tail length determinator %5BEscherichia phage vB_EcoM_JS09%5D;hit_id=gi%7C642905806%7Cref%7CYP_009037575.1%7C;hit_titles=gi%7C642905806%7Cref%7CYP_009037575.1%7C baseplate hub subunit%2C tail length determinator %5BEscherichia phage vB_EcoM_JS09%5D,gi%7C642903960%7Cgb%7CAIA79980.1%7C baseplate hub subunit%2C tail length determinator %5BEscherichia phage vB_EcoM_JS09%5D;length=590 -Merlin_5 blast match_part 1 114 . . . Gap=M114;ID=gi%7C642905806%7Cref%7CYP_009037575.1%7C;Parent=biopygen123 -Merlin_5 blast match_part 120 124 . . . Gap=M5;ID=gi%7C642905806%7Cref%7CYP_009037575.1%7C;Parent=biopygen123 -Merlin_5 blast match_part 129 139 . . . Gap=M11;ID=gi%7C642905806%7Cref%7CYP_009037575.1%7C;Parent=biopygen123 -Merlin_5 blast match_part 143 146 . . . Gap=M4;ID=gi%7C642905806%7Cref%7CYP_009037575.1%7C;Parent=biopygen123 -Merlin_5 blast match_part 152 170 . . . Gap=M19;ID=gi%7C642905806%7Cref%7CYP_009037575.1%7C;Parent=biopygen123 -Merlin_5 blast match_part 174 184 . . . Gap=M11;ID=gi%7C642905806%7Cref%7CYP_009037575.1%7C;Parent=biopygen123 -Merlin_5 blast match_part 189 306 . . . Gap=M118;ID=gi%7C642905806%7Cref%7CYP_009037575.1%7C;Parent=biopygen123 -Merlin_5 blast match_part 310 374 . . . Gap=M65;ID=gi%7C642905806%7Cref%7CYP_009037575.1%7C;Parent=biopygen123 -Merlin_5 blast match_part 378 388 . . . Gap=M11;ID=gi%7C642905806%7Cref%7CYP_009037575.1%7C;Parent=biopygen123 -Merlin_5 blast match_part 392 463 . . . Gap=M72;ID=gi%7C642905806%7Cref%7CYP_009037575.1%7C;Parent=biopygen123 -Merlin_5 blast match_part 468 524 . . . Gap=M57;ID=gi%7C642905806%7Cref%7CYP_009037575.1%7C;Parent=biopygen123 -Merlin_5 blast match_part 528 534 . . . Gap=M1 I2 M4;ID=gi%7C642905806%7Cref%7CYP_009037575.1%7C;Parent=biopygen123 -Merlin_5 blast match_part 541 549 . . . Gap=M4 I2 M3;ID=gi%7C642905806%7Cref%7CYP_009037575.1%7C;Parent=biopygen123 -Merlin_5 blast match_part 554 576 . . . Gap=M23;ID=gi%7C642905806%7Cref%7CYP_009037575.1%7C;Parent=biopygen123 -Merlin_5 blast protein_match 0 577 7.24825e-143 . . ID=biopygen124;accession=YP_002854526;description=gp29 base plate hub %5BEnterobacteria phage RB14%5D;hit_id=gi%7C228861505%7Cref%7CYP_002854526.1%7C;hit_titles=gi%7C228861505%7Cref%7CYP_002854526.1%7C gp29 base plate hub %5BEnterobacteria phage RB14%5D,gi%7C227438521%7Cgb%7CACP30834.1%7C gp29 base plate hub %5BEnterobacteria phage RB14%5D;length=590 -Merlin_5 blast match_part 2 70 . . . Gap=M10 I1 M58;ID=gi%7C228861505%7Cref%7CYP_002854526.1%7C;Parent=biopygen124 -Merlin_5 blast match_part 81 82 . . . Gap=M2;ID=gi%7C228861505%7Cref%7CYP_002854526.1%7C;Parent=biopygen124 -Merlin_5 blast match_part 86 89 . . . Gap=M4;ID=gi%7C228861505%7Cref%7CYP_002854526.1%7C;Parent=biopygen124 -Merlin_5 blast match_part 94 114 . . . Gap=M21;ID=gi%7C228861505%7Cref%7CYP_002854526.1%7C;Parent=biopygen124 -Merlin_5 blast match_part 120 148 . . . Gap=M29;ID=gi%7C228861505%7Cref%7CYP_002854526.1%7C;Parent=biopygen124 -Merlin_5 blast match_part 153 200 . . . Gap=M48;ID=gi%7C228861505%7Cref%7CYP_002854526.1%7C;Parent=biopygen124 -Merlin_5 blast match_part 204 373 . . . Gap=M170;ID=gi%7C228861505%7Cref%7CYP_002854526.1%7C;Parent=biopygen124 -Merlin_5 blast match_part 378 382 . . . Gap=M5;ID=gi%7C228861505%7Cref%7CYP_002854526.1%7C;Parent=biopygen124 -Merlin_5 blast match_part 386 400 . . . Gap=M15;ID=gi%7C228861505%7Cref%7CYP_002854526.1%7C;Parent=biopygen124 -Merlin_5 blast match_part 404 404 . . . Gap=M1;ID=gi%7C228861505%7Cref%7CYP_002854526.1%7C;Parent=biopygen124 -Merlin_5 blast match_part 408 444 . . . Gap=M37;ID=gi%7C228861505%7Cref%7CYP_002854526.1%7C;Parent=biopygen124 -Merlin_5 blast match_part 449 449 . . . Gap=M1;ID=gi%7C228861505%7Cref%7CYP_002854526.1%7C;Parent=biopygen124 -Merlin_5 blast match_part 454 463 . . . Gap=M10;ID=gi%7C228861505%7Cref%7CYP_002854526.1%7C;Parent=biopygen124 -Merlin_5 blast match_part 467 507 . . . Gap=M35 I1 M5;ID=gi%7C228861505%7Cref%7CYP_002854526.1%7C;Parent=biopygen124 -Merlin_5 blast match_part 511 524 . . . Gap=M14;ID=gi%7C228861505%7Cref%7CYP_002854526.1%7C;Parent=biopygen124 -Merlin_5 blast match_part 532 533 . . . Gap=M2;ID=gi%7C228861505%7Cref%7CYP_002854526.1%7C;Parent=biopygen124 -Merlin_5 blast match_part 539 576 . . . Gap=M38;ID=gi%7C228861505%7Cref%7CYP_002854526.1%7C;Parent=biopygen124 -Merlin_5 blast protein_match 0 577 8.89384e-143 . . ID=biopygen125;accession=YP_006986747;description=baseplate hub subunit tail length determinator %5BEnterobacteria phage vB_EcoM_ACG-C40%5D;hit_id=gi%7C414086558%7Cref%7CYP_006986747.1%7C;hit_titles=gi%7C414086558%7Cref%7CYP_006986747.1%7C baseplate hub subunit tail length determinator %5BEnterobacteria phage vB_EcoM_ACG-C40%5D,gi%7C383396339%7Cgb%7CAFH20155.1%7C baseplate hub subunit tail length determinator %5BEnterobacteria phage vB_EcoM_ACG-C40%5D;length=590 -Merlin_5 blast match_part 2 70 . . . Gap=M10 I1 M58;ID=gi%7C414086558%7Cref%7CYP_006986747.1%7C;Parent=biopygen125 -Merlin_5 blast match_part 81 82 . . . Gap=M2;ID=gi%7C414086558%7Cref%7CYP_006986747.1%7C;Parent=biopygen125 -Merlin_5 blast match_part 86 89 . . . Gap=M4;ID=gi%7C414086558%7Cref%7CYP_006986747.1%7C;Parent=biopygen125 -Merlin_5 blast match_part 94 114 . . . Gap=M21;ID=gi%7C414086558%7Cref%7CYP_006986747.1%7C;Parent=biopygen125 -Merlin_5 blast match_part 120 128 . . . Gap=M9;ID=gi%7C414086558%7Cref%7CYP_006986747.1%7C;Parent=biopygen125 -Merlin_5 blast match_part 132 148 . . . Gap=M17;ID=gi%7C414086558%7Cref%7CYP_006986747.1%7C;Parent=biopygen125 -Merlin_5 blast match_part 153 200 . . . Gap=M48;ID=gi%7C414086558%7Cref%7CYP_006986747.1%7C;Parent=biopygen125 -Merlin_5 blast match_part 204 373 . . . Gap=M170;ID=gi%7C414086558%7Cref%7CYP_006986747.1%7C;Parent=biopygen125 -Merlin_5 blast match_part 378 382 . . . Gap=M5;ID=gi%7C414086558%7Cref%7CYP_006986747.1%7C;Parent=biopygen125 -Merlin_5 blast match_part 386 400 . . . Gap=M15;ID=gi%7C414086558%7Cref%7CYP_006986747.1%7C;Parent=biopygen125 -Merlin_5 blast match_part 404 404 . . . Gap=M1;ID=gi%7C414086558%7Cref%7CYP_006986747.1%7C;Parent=biopygen125 -Merlin_5 blast match_part 408 444 . . . Gap=M37;ID=gi%7C414086558%7Cref%7CYP_006986747.1%7C;Parent=biopygen125 -Merlin_5 blast match_part 449 449 . . . Gap=M1;ID=gi%7C414086558%7Cref%7CYP_006986747.1%7C;Parent=biopygen125 -Merlin_5 blast match_part 454 463 . . . Gap=M10;ID=gi%7C414086558%7Cref%7CYP_006986747.1%7C;Parent=biopygen125 -Merlin_5 blast match_part 467 507 . . . Gap=M35 I1 M5;ID=gi%7C414086558%7Cref%7CYP_006986747.1%7C;Parent=biopygen125 -Merlin_5 blast match_part 511 524 . . . Gap=M14;ID=gi%7C414086558%7Cref%7CYP_006986747.1%7C;Parent=biopygen125 -Merlin_5 blast match_part 532 533 . . . Gap=M2;ID=gi%7C414086558%7Cref%7CYP_006986747.1%7C;Parent=biopygen125 -Merlin_5 blast match_part 539 576 . . . Gap=M38;ID=gi%7C414086558%7Cref%7CYP_006986747.1%7C;Parent=biopygen125 -Merlin_5 blast protein_match 0 577 1.07961e-142 . . ID=biopygen126;accession=NP_049805;description=gp29 baseplate hub subunit%2C tail length determinator %5BEnterobacteria phage T4%5D;hit_id=gi%7C9632606%7Cref%7CNP_049805.1%7C;hit_titles=gi%7C9632606%7Cref%7CNP_049805.1%7C gp29 baseplate hub subunit%2C tail length determinator %5BEnterobacteria phage T4%5D,gi%7C137988%7Csp%7CP13337.1%7CVG29_BPT4 RecName: Full%3DTail-tube assembly protein Gp29%3B AltName: Full%3DFolylpolyglutamate synthase%3B AltName: Full%3DTail length regulator%3B AltName: Full%3DTetrahydrofolylpolyglutamate synthase %5BEnterobacteria phage T4%5D,gi%7C5354230%7Cgb%7CAAD42437.1%7CAF158101_24 gp29 baseplate hub subunit%2C tail length determinator %5BEnterobacteria phage T4%5D,gi%7C215946%7Cgb%7CAAA32538.1%7C tail-tube assembly protein %5BEnterobacteria phage T4%5D;length=590 -Merlin_5 blast match_part 2 70 . . . Gap=M10 I1 M58;ID=gi%7C9632606%7Cref%7CNP_049805.1%7C;Parent=biopygen126 -Merlin_5 blast match_part 78 82 . . . Gap=M5;ID=gi%7C9632606%7Cref%7CNP_049805.1%7C;Parent=biopygen126 -Merlin_5 blast match_part 86 89 . . . Gap=M4;ID=gi%7C9632606%7Cref%7CNP_049805.1%7C;Parent=biopygen126 -Merlin_5 blast match_part 94 114 . . . Gap=M21;ID=gi%7C9632606%7Cref%7CNP_049805.1%7C;Parent=biopygen126 -Merlin_5 blast match_part 120 148 . . . Gap=M29;ID=gi%7C9632606%7Cref%7CNP_049805.1%7C;Parent=biopygen126 -Merlin_5 blast match_part 153 200 . . . Gap=M48;ID=gi%7C9632606%7Cref%7CNP_049805.1%7C;Parent=biopygen126 -Merlin_5 blast match_part 204 373 . . . Gap=M170;ID=gi%7C9632606%7Cref%7CNP_049805.1%7C;Parent=biopygen126 -Merlin_5 blast match_part 378 382 . . . Gap=M5;ID=gi%7C9632606%7Cref%7CNP_049805.1%7C;Parent=biopygen126 -Merlin_5 blast match_part 386 400 . . . Gap=M15;ID=gi%7C9632606%7Cref%7CNP_049805.1%7C;Parent=biopygen126 -Merlin_5 blast match_part 404 404 . . . Gap=M1;ID=gi%7C9632606%7Cref%7CNP_049805.1%7C;Parent=biopygen126 -Merlin_5 blast match_part 408 444 . . . Gap=M37;ID=gi%7C9632606%7Cref%7CNP_049805.1%7C;Parent=biopygen126 -Merlin_5 blast match_part 449 449 . . . Gap=M1;ID=gi%7C9632606%7Cref%7CNP_049805.1%7C;Parent=biopygen126 -Merlin_5 blast match_part 454 463 . . . Gap=M10;ID=gi%7C9632606%7Cref%7CNP_049805.1%7C;Parent=biopygen126 -Merlin_5 blast match_part 467 507 . . . Gap=M35 I1 M5;ID=gi%7C9632606%7Cref%7CNP_049805.1%7C;Parent=biopygen126 -Merlin_5 blast match_part 511 524 . . . Gap=M14;ID=gi%7C9632606%7Cref%7CNP_049805.1%7C;Parent=biopygen126 -Merlin_5 blast match_part 532 533 . . . Gap=M2;ID=gi%7C9632606%7Cref%7CNP_049805.1%7C;Parent=biopygen126 -Merlin_5 blast match_part 539 576 . . . Gap=M38;ID=gi%7C9632606%7Cref%7CNP_049805.1%7C;Parent=biopygen126 -Merlin_5 blast protein_match 0 577 1.95194e-142 . . ID=biopygen127;accession=AGR46140;description=baseplate hub subunit %5BYersinia phage PST%5D;hit_id=gi%7C525334458%7Cgb%7CAGR46140.1%7C;hit_titles=gi%7C525334458%7Cgb%7CAGR46140.1%7C baseplate hub subunit %5BYersinia phage PST%5D;length=590 -Merlin_5 blast match_part 2 82 . . . Gap=M10 I1 M70;ID=gi%7C525334458%7Cgb%7CAGR46140.1%7C;Parent=biopygen127 -Merlin_5 blast match_part 89 89 . . . Gap=M1;ID=gi%7C525334458%7Cgb%7CAGR46140.1%7C;Parent=biopygen127 -Merlin_5 blast match_part 94 114 . . . Gap=M21;ID=gi%7C525334458%7Cgb%7CAGR46140.1%7C;Parent=biopygen127 -Merlin_5 blast match_part 120 148 . . . Gap=M29;ID=gi%7C525334458%7Cgb%7CAGR46140.1%7C;Parent=biopygen127 -Merlin_5 blast match_part 153 200 . . . Gap=M48;ID=gi%7C525334458%7Cgb%7CAGR46140.1%7C;Parent=biopygen127 -Merlin_5 blast match_part 204 373 . . . Gap=M170;ID=gi%7C525334458%7Cgb%7CAGR46140.1%7C;Parent=biopygen127 -Merlin_5 blast match_part 378 382 . . . Gap=M5;ID=gi%7C525334458%7Cgb%7CAGR46140.1%7C;Parent=biopygen127 -Merlin_5 blast match_part 386 400 . . . Gap=M15;ID=gi%7C525334458%7Cgb%7CAGR46140.1%7C;Parent=biopygen127 -Merlin_5 blast match_part 404 404 . . . Gap=M1;ID=gi%7C525334458%7Cgb%7CAGR46140.1%7C;Parent=biopygen127 -Merlin_5 blast match_part 408 444 . . . Gap=M37;ID=gi%7C525334458%7Cgb%7CAGR46140.1%7C;Parent=biopygen127 -Merlin_5 blast match_part 449 449 . . . Gap=M1;ID=gi%7C525334458%7Cgb%7CAGR46140.1%7C;Parent=biopygen127 -Merlin_5 blast match_part 454 463 . . . Gap=M10;ID=gi%7C525334458%7Cgb%7CAGR46140.1%7C;Parent=biopygen127 -Merlin_5 blast match_part 467 507 . . . Gap=M35 I1 M5;ID=gi%7C525334458%7Cgb%7CAGR46140.1%7C;Parent=biopygen127 -Merlin_5 blast match_part 511 524 . . . Gap=M14;ID=gi%7C525334458%7Cgb%7CAGR46140.1%7C;Parent=biopygen127 -Merlin_5 blast match_part 532 533 . . . Gap=M2;ID=gi%7C525334458%7Cgb%7CAGR46140.1%7C;Parent=biopygen127 -Merlin_5 blast match_part 539 576 . . . Gap=M38;ID=gi%7C525334458%7Cgb%7CAGR46140.1%7C;Parent=biopygen127 -Merlin_5 blast protein_match 0 577 2.03785e-142 . . ID=biopygen128;accession=ADJ39915;description=baseplate hub subunit tail length determinator %5BEnterobacteria phage T4T%5D;hit_id=gi%7C299780553%7Cgb%7CADJ39915.1%7C;hit_titles=gi%7C299780553%7Cgb%7CADJ39915.1%7C baseplate hub subunit tail length determinator %5BEnterobacteria phage T4T%5D;length=590 -Merlin_5 blast match_part 2 70 . . . Gap=M10 I1 M58;ID=gi%7C299780553%7Cgb%7CADJ39915.1%7C;Parent=biopygen128 -Merlin_5 blast match_part 81 82 . . . Gap=M2;ID=gi%7C299780553%7Cgb%7CADJ39915.1%7C;Parent=biopygen128 -Merlin_5 blast match_part 86 89 . . . Gap=M4;ID=gi%7C299780553%7Cgb%7CADJ39915.1%7C;Parent=biopygen128 -Merlin_5 blast match_part 94 114 . . . Gap=M21;ID=gi%7C299780553%7Cgb%7CADJ39915.1%7C;Parent=biopygen128 -Merlin_5 blast match_part 120 148 . . . Gap=M29;ID=gi%7C299780553%7Cgb%7CADJ39915.1%7C;Parent=biopygen128 -Merlin_5 blast match_part 153 200 . . . Gap=M48;ID=gi%7C299780553%7Cgb%7CADJ39915.1%7C;Parent=biopygen128 -Merlin_5 blast match_part 204 373 . . . Gap=M170;ID=gi%7C299780553%7Cgb%7CADJ39915.1%7C;Parent=biopygen128 -Merlin_5 blast match_part 378 382 . . . Gap=M5;ID=gi%7C299780553%7Cgb%7CADJ39915.1%7C;Parent=biopygen128 -Merlin_5 blast match_part 386 400 . . . Gap=M15;ID=gi%7C299780553%7Cgb%7CADJ39915.1%7C;Parent=biopygen128 -Merlin_5 blast match_part 404 404 . . . Gap=M1;ID=gi%7C299780553%7Cgb%7CADJ39915.1%7C;Parent=biopygen128 -Merlin_5 blast match_part 408 444 . . . Gap=M37;ID=gi%7C299780553%7Cgb%7CADJ39915.1%7C;Parent=biopygen128 -Merlin_5 blast match_part 449 449 . . . Gap=M1;ID=gi%7C299780553%7Cgb%7CADJ39915.1%7C;Parent=biopygen128 -Merlin_5 blast match_part 454 463 . . . Gap=M10;ID=gi%7C299780553%7Cgb%7CADJ39915.1%7C;Parent=biopygen128 -Merlin_5 blast match_part 467 507 . . . Gap=M35 I1 M5;ID=gi%7C299780553%7Cgb%7CADJ39915.1%7C;Parent=biopygen128 -Merlin_5 blast match_part 511 524 . . . Gap=M14;ID=gi%7C299780553%7Cgb%7CADJ39915.1%7C;Parent=biopygen128 -Merlin_5 blast match_part 532 533 . . . Gap=M2;ID=gi%7C299780553%7Cgb%7CADJ39915.1%7C;Parent=biopygen128 -Merlin_5 blast match_part 539 576 . . . Gap=M38;ID=gi%7C299780553%7Cgb%7CADJ39915.1%7C;Parent=biopygen128 -Merlin_5 blast protein_match 0 577 1.93327e-137 . . ID=biopygen129;accession=YP_004415085;description=putative baseplate hub subunit and tail length determinator %5BShigella phage Shfl2%5D;hit_id=gi%7C330858710%7Cref%7CYP_004415085.1%7C;hit_titles=gi%7C330858710%7Cref%7CYP_004415085.1%7C putative baseplate hub subunit and tail length determinator %5BShigella phage Shfl2%5D,gi%7C327397644%7Cgb%7CAEA73146.1%7C putative baseplate hub subunit and tail length determinator %5BShigella phage Shfl2%5D;length=590 -Merlin_5 blast match_part 2 70 . . . Gap=M10 I1 M58;ID=gi%7C330858710%7Cref%7CYP_004415085.1%7C;Parent=biopygen129 -Merlin_5 blast match_part 81 82 . . . Gap=M2;ID=gi%7C330858710%7Cref%7CYP_004415085.1%7C;Parent=biopygen129 -Merlin_5 blast match_part 86 89 . . . Gap=M4;ID=gi%7C330858710%7Cref%7CYP_004415085.1%7C;Parent=biopygen129 -Merlin_5 blast match_part 94 114 . . . Gap=M21;ID=gi%7C330858710%7Cref%7CYP_004415085.1%7C;Parent=biopygen129 -Merlin_5 blast match_part 120 148 . . . Gap=M29;ID=gi%7C330858710%7Cref%7CYP_004415085.1%7C;Parent=biopygen129 -Merlin_5 blast match_part 153 200 . . . Gap=M48;ID=gi%7C330858710%7Cref%7CYP_004415085.1%7C;Parent=biopygen129 -Merlin_5 blast match_part 204 373 . . . Gap=M170;ID=gi%7C330858710%7Cref%7CYP_004415085.1%7C;Parent=biopygen129 -Merlin_5 blast match_part 378 382 . . . Gap=M5;ID=gi%7C330858710%7Cref%7CYP_004415085.1%7C;Parent=biopygen129 -Merlin_5 blast match_part 386 400 . . . Gap=M15;ID=gi%7C330858710%7Cref%7CYP_004415085.1%7C;Parent=biopygen129 -Merlin_5 blast match_part 404 404 . . . Gap=M1;ID=gi%7C330858710%7Cref%7CYP_004415085.1%7C;Parent=biopygen129 -Merlin_5 blast match_part 408 444 . . . Gap=M37;ID=gi%7C330858710%7Cref%7CYP_004415085.1%7C;Parent=biopygen129 -Merlin_5 blast match_part 449 449 . . . Gap=M1;ID=gi%7C330858710%7Cref%7CYP_004415085.1%7C;Parent=biopygen129 -Merlin_5 blast match_part 454 463 . . . Gap=M10;ID=gi%7C330858710%7Cref%7CYP_004415085.1%7C;Parent=biopygen129 -Merlin_5 blast match_part 467 507 . . . Gap=M35 I1 M5;ID=gi%7C330858710%7Cref%7CYP_004415085.1%7C;Parent=biopygen129 -Merlin_5 blast match_part 511 532 . . . Gap=M14 I2 M6;ID=gi%7C330858710%7Cref%7CYP_004415085.1%7C;Parent=biopygen129 -Merlin_5 blast match_part 540 544 . . . Gap=M5;ID=gi%7C330858710%7Cref%7CYP_004415085.1%7C;Parent=biopygen129 -Merlin_5 blast match_part 551 552 . . . Gap=M2;ID=gi%7C330858710%7Cref%7CYP_004415085.1%7C;Parent=biopygen129 -Merlin_5 blast match_part 556 576 . . . Gap=M21;ID=gi%7C330858710%7Cref%7CYP_004415085.1%7C;Parent=biopygen129 -Merlin_5 blast protein_match 0 577 3.75934e-136 . . ID=biopygen130;accession=AFO10716;description=baseplate hub protein %5BEscherichia phage ECML-134%5D;hit_id=gi%7C397134209%7Cgb%7CAFO10716.1%7C;hit_titles=gi%7C397134209%7Cgb%7CAFO10716.1%7C baseplate hub protein %5BEscherichia phage ECML-134%5D;length=590 -Merlin_5 blast match_part 2 70 . . . Gap=M10 I1 M58;ID=gi%7C397134209%7Cgb%7CAFO10716.1%7C;Parent=biopygen130 -Merlin_5 blast match_part 81 82 . . . Gap=M2;ID=gi%7C397134209%7Cgb%7CAFO10716.1%7C;Parent=biopygen130 -Merlin_5 blast match_part 86 89 . . . Gap=M4;ID=gi%7C397134209%7Cgb%7CAFO10716.1%7C;Parent=biopygen130 -Merlin_5 blast match_part 94 114 . . . Gap=M21;ID=gi%7C397134209%7Cgb%7CAFO10716.1%7C;Parent=biopygen130 -Merlin_5 blast match_part 120 148 . . . Gap=M29;ID=gi%7C397134209%7Cgb%7CAFO10716.1%7C;Parent=biopygen130 -Merlin_5 blast match_part 153 200 . . . Gap=M48;ID=gi%7C397134209%7Cgb%7CAFO10716.1%7C;Parent=biopygen130 -Merlin_5 blast match_part 204 373 . . . Gap=M170;ID=gi%7C397134209%7Cgb%7CAFO10716.1%7C;Parent=biopygen130 -Merlin_5 blast match_part 378 382 . . . Gap=M5;ID=gi%7C397134209%7Cgb%7CAFO10716.1%7C;Parent=biopygen130 -Merlin_5 blast match_part 386 400 . . . Gap=M15;ID=gi%7C397134209%7Cgb%7CAFO10716.1%7C;Parent=biopygen130 -Merlin_5 blast match_part 404 404 . . . Gap=M1;ID=gi%7C397134209%7Cgb%7CAFO10716.1%7C;Parent=biopygen130 -Merlin_5 blast match_part 408 444 . . . Gap=M37;ID=gi%7C397134209%7Cgb%7CAFO10716.1%7C;Parent=biopygen130 -Merlin_5 blast match_part 449 449 . . . Gap=M1;ID=gi%7C397134209%7Cgb%7CAFO10716.1%7C;Parent=biopygen130 -Merlin_5 blast match_part 454 463 . . . Gap=M10;ID=gi%7C397134209%7Cgb%7CAFO10716.1%7C;Parent=biopygen130 -Merlin_5 blast match_part 467 507 . . . Gap=M35 I1 M5;ID=gi%7C397134209%7Cgb%7CAFO10716.1%7C;Parent=biopygen130 -Merlin_5 blast match_part 511 524 . . . Gap=M14;ID=gi%7C397134209%7Cgb%7CAFO10716.1%7C;Parent=biopygen130 -Merlin_5 blast match_part 532 533 . . . Gap=M2;ID=gi%7C397134209%7Cgb%7CAFO10716.1%7C;Parent=biopygen130 -Merlin_5 blast match_part 539 576 . . . Gap=M38;ID=gi%7C397134209%7Cgb%7CAFO10716.1%7C;Parent=biopygen130 -Merlin_5 blast protein_match 0 577 5.49342e-131 . . ID=biopygen131;accession=YP_803132;description=base plate hub %5BEnterobacteria phage RB32%5D;hit_id=gi%7C116326412%7Cref%7CYP_803132.1%7C;hit_titles=gi%7C116326412%7Cref%7CYP_803132.1%7C base plate hub %5BEnterobacteria phage RB32%5D,gi%7C115344005%7Cgb%7CABI95014.1%7C base plate hub %5BEnterobacteria phage RB32%5D;length=590 -Merlin_5 blast match_part 2 70 . . . Gap=M10 I1 M58;ID=gi%7C116326412%7Cref%7CYP_803132.1%7C;Parent=biopygen131 -Merlin_5 blast match_part 81 82 . . . Gap=M2;ID=gi%7C116326412%7Cref%7CYP_803132.1%7C;Parent=biopygen131 -Merlin_5 blast match_part 86 89 . . . Gap=M4;ID=gi%7C116326412%7Cref%7CYP_803132.1%7C;Parent=biopygen131 -Merlin_5 blast match_part 94 114 . . . Gap=M21;ID=gi%7C116326412%7Cref%7CYP_803132.1%7C;Parent=biopygen131 -Merlin_5 blast match_part 120 148 . . . Gap=M29;ID=gi%7C116326412%7Cref%7CYP_803132.1%7C;Parent=biopygen131 -Merlin_5 blast match_part 153 200 . . . Gap=M48;ID=gi%7C116326412%7Cref%7CYP_803132.1%7C;Parent=biopygen131 -Merlin_5 blast match_part 204 373 . . . Gap=M170;ID=gi%7C116326412%7Cref%7CYP_803132.1%7C;Parent=biopygen131 -Merlin_5 blast match_part 378 382 . . . Gap=M5;ID=gi%7C116326412%7Cref%7CYP_803132.1%7C;Parent=biopygen131 -Merlin_5 blast match_part 386 400 . . . Gap=M15;ID=gi%7C116326412%7Cref%7CYP_803132.1%7C;Parent=biopygen131 -Merlin_5 blast match_part 404 404 . . . Gap=M1;ID=gi%7C116326412%7Cref%7CYP_803132.1%7C;Parent=biopygen131 -Merlin_5 blast match_part 408 444 . . . Gap=M37;ID=gi%7C116326412%7Cref%7CYP_803132.1%7C;Parent=biopygen131 -Merlin_5 blast match_part 449 449 . . . Gap=M1;ID=gi%7C116326412%7Cref%7CYP_803132.1%7C;Parent=biopygen131 -Merlin_5 blast match_part 454 463 . . . Gap=M10;ID=gi%7C116326412%7Cref%7CYP_803132.1%7C;Parent=biopygen131 -Merlin_5 blast match_part 467 507 . . . Gap=M35 I1 M5;ID=gi%7C116326412%7Cref%7CYP_803132.1%7C;Parent=biopygen131 -Merlin_5 blast match_part 511 524 . . . Gap=M14;ID=gi%7C116326412%7Cref%7CYP_803132.1%7C;Parent=biopygen131 -Merlin_5 blast match_part 532 533 . . . Gap=M2;ID=gi%7C116326412%7Cref%7CYP_803132.1%7C;Parent=biopygen131 -Merlin_5 blast match_part 539 576 . . . Gap=M38;ID=gi%7C116326412%7Cref%7CYP_803132.1%7C;Parent=biopygen131 -Merlin_5 blast protein_match 0 577 4.84152e-128 . . ID=biopygen132;accession=YP_009030799;description=baseplate hub subunit tail length determinator %5BEscherichia phage e11/2%5D;hit_id=gi%7C639438842%7Cref%7CYP_009030799.1%7C;hit_titles=gi%7C639438842%7Cref%7CYP_009030799.1%7C baseplate hub subunit tail length determinator %5BEscherichia phage e11/2%5D,gi%7C628971670%7Cgb%7CAHY83392.1%7C baseplate hub subunit tail length determinator %5BEscherichia phage e11/2%5D;length=590 -Merlin_5 blast match_part 2 70 . . . Gap=M10 I1 M58;ID=gi%7C639438842%7Cref%7CYP_009030799.1%7C;Parent=biopygen132 -Merlin_5 blast match_part 81 82 . . . Gap=M2;ID=gi%7C639438842%7Cref%7CYP_009030799.1%7C;Parent=biopygen132 -Merlin_5 blast match_part 86 89 . . . Gap=M4;ID=gi%7C639438842%7Cref%7CYP_009030799.1%7C;Parent=biopygen132 -Merlin_5 blast match_part 94 114 . . . Gap=M21;ID=gi%7C639438842%7Cref%7CYP_009030799.1%7C;Parent=biopygen132 -Merlin_5 blast match_part 120 148 . . . Gap=M29;ID=gi%7C639438842%7Cref%7CYP_009030799.1%7C;Parent=biopygen132 -Merlin_5 blast match_part 153 200 . . . Gap=M48;ID=gi%7C639438842%7Cref%7CYP_009030799.1%7C;Parent=biopygen132 -Merlin_5 blast match_part 204 373 . . . Gap=M170;ID=gi%7C639438842%7Cref%7CYP_009030799.1%7C;Parent=biopygen132 -Merlin_5 blast match_part 378 382 . . . Gap=M5;ID=gi%7C639438842%7Cref%7CYP_009030799.1%7C;Parent=biopygen132 -Merlin_5 blast match_part 386 400 . . . Gap=M15;ID=gi%7C639438842%7Cref%7CYP_009030799.1%7C;Parent=biopygen132 -Merlin_5 blast match_part 404 404 . . . Gap=M1;ID=gi%7C639438842%7Cref%7CYP_009030799.1%7C;Parent=biopygen132 -Merlin_5 blast match_part 408 444 . . . Gap=M37;ID=gi%7C639438842%7Cref%7CYP_009030799.1%7C;Parent=biopygen132 -Merlin_5 blast match_part 449 449 . . . Gap=M1;ID=gi%7C639438842%7Cref%7CYP_009030799.1%7C;Parent=biopygen132 -Merlin_5 blast match_part 454 463 . . . Gap=M10;ID=gi%7C639438842%7Cref%7CYP_009030799.1%7C;Parent=biopygen132 -Merlin_5 blast match_part 467 507 . . . Gap=M35 I1 M5;ID=gi%7C639438842%7Cref%7CYP_009030799.1%7C;Parent=biopygen132 -Merlin_5 blast match_part 511 524 . . . Gap=M14;ID=gi%7C639438842%7Cref%7CYP_009030799.1%7C;Parent=biopygen132 -Merlin_5 blast match_part 532 533 . . . Gap=M2;ID=gi%7C639438842%7Cref%7CYP_009030799.1%7C;Parent=biopygen132 -Merlin_5 blast match_part 539 576 . . . Gap=M38;ID=gi%7C639438842%7Cref%7CYP_009030799.1%7C;Parent=biopygen132 -Merlin_5 blast protein_match 218 577 1.22596e-95 . . ID=biopygen133;accession=CCI89087;description=phage baseplate hub %5BYersinia phage phiD1%5D;hit_id=gi%7C398313740%7Cemb%7CCCI89087.1%7C;hit_titles=gi%7C398313740%7Cemb%7CCCI89087.1%7C phage baseplate hub %5BYersinia phage phiD1%5D;length=369 -Merlin_5 blast match_part 218 373 . . . Gap=M156;ID=gi%7C398313740%7Cemb%7CCCI89087.1%7C;Parent=biopygen133 -Merlin_5 blast match_part 378 382 . . . Gap=M5;ID=gi%7C398313740%7Cemb%7CCCI89087.1%7C;Parent=biopygen133 -Merlin_5 blast match_part 386 400 . . . Gap=M15;ID=gi%7C398313740%7Cemb%7CCCI89087.1%7C;Parent=biopygen133 -Merlin_5 blast match_part 404 404 . . . Gap=M1;ID=gi%7C398313740%7Cemb%7CCCI89087.1%7C;Parent=biopygen133 -Merlin_5 blast match_part 408 444 . . . Gap=M37;ID=gi%7C398313740%7Cemb%7CCCI89087.1%7C;Parent=biopygen133 -Merlin_5 blast match_part 449 449 . . . Gap=M1;ID=gi%7C398313740%7Cemb%7CCCI89087.1%7C;Parent=biopygen133 -Merlin_5 blast match_part 454 463 . . . Gap=M10;ID=gi%7C398313740%7Cemb%7CCCI89087.1%7C;Parent=biopygen133 -Merlin_5 blast match_part 467 507 . . . Gap=M35 I1 M5;ID=gi%7C398313740%7Cemb%7CCCI89087.1%7C;Parent=biopygen133 -Merlin_5 blast match_part 511 524 . . . Gap=M14;ID=gi%7C398313740%7Cemb%7CCCI89087.1%7C;Parent=biopygen133 -Merlin_5 blast match_part 532 533 . . . Gap=M2;ID=gi%7C398313740%7Cemb%7CCCI89087.1%7C;Parent=biopygen133 -Merlin_5 blast match_part 539 576 . . . Gap=M38;ID=gi%7C398313740%7Cemb%7CCCI89087.1%7C;Parent=biopygen133 -Merlin_5 blast protein_match 1 577 2.81533e-89 . . ID=biopygen134;accession=YP_007236029;description=phage baseplate hub %5BYersinia phage phiR1-RT%5D;hit_id=gi%7C431809132%7Cref%7CYP_007236029.1%7C;hit_titles=gi%7C431809132%7Cref%7CYP_007236029.1%7C phage baseplate hub %5BYersinia phage phiR1-RT%5D,gi%7C398313421%7Cemb%7CCCI88770.1%7C phage baseplate hub %5BYersinia phage phiR1-RT%5D;length=582 -Merlin_5 blast match_part 1 5 . . . Gap=M5;ID=gi%7C431809132%7Cref%7CYP_007236029.1%7C;Parent=biopygen134 -Merlin_5 blast match_part 11 70 . . . Gap=M60;ID=gi%7C431809132%7Cref%7CYP_007236029.1%7C;Parent=biopygen134 -Merlin_5 blast match_part 74 80 . . . Gap=M7;ID=gi%7C431809132%7Cref%7CYP_007236029.1%7C;Parent=biopygen134 -Merlin_5 blast match_part 84 84 . . . Gap=M1;ID=gi%7C431809132%7Cref%7CYP_007236029.1%7C;Parent=biopygen134 -Merlin_5 blast match_part 88 112 . . . Gap=M25;ID=gi%7C431809132%7Cref%7CYP_007236029.1%7C;Parent=biopygen134 -Merlin_5 blast match_part 117 118 . . . Gap=M2;ID=gi%7C431809132%7Cref%7CYP_007236029.1%7C;Parent=biopygen134 -Merlin_5 blast match_part 123 130 . . . Gap=M8;ID=gi%7C431809132%7Cref%7CYP_007236029.1%7C;Parent=biopygen134 -Merlin_5 blast match_part 138 150 . . . Gap=M13;ID=gi%7C431809132%7Cref%7CYP_007236029.1%7C;Parent=biopygen134 -Merlin_5 blast match_part 154 166 . . . Gap=M13;ID=gi%7C431809132%7Cref%7CYP_007236029.1%7C;Parent=biopygen134 -Merlin_5 blast match_part 175 181 . . . Gap=M7;ID=gi%7C431809132%7Cref%7CYP_007236029.1%7C;Parent=biopygen134 -Merlin_5 blast match_part 185 286 . . . Gap=M102;ID=gi%7C431809132%7Cref%7CYP_007236029.1%7C;Parent=biopygen134 -Merlin_5 blast match_part 290 309 . . . Gap=M20;ID=gi%7C431809132%7Cref%7CYP_007236029.1%7C;Parent=biopygen134 -Merlin_5 blast match_part 313 374 . . . Gap=M62;ID=gi%7C431809132%7Cref%7CYP_007236029.1%7C;Parent=biopygen134 -Merlin_5 blast match_part 381 382 . . . Gap=M2;ID=gi%7C431809132%7Cref%7CYP_007236029.1%7C;Parent=biopygen134 -Merlin_5 blast match_part 389 392 . . . Gap=M4;ID=gi%7C431809132%7Cref%7CYP_007236029.1%7C;Parent=biopygen134 -Merlin_5 blast match_part 396 424 . . . Gap=M5 I1 M23;ID=gi%7C431809132%7Cref%7CYP_007236029.1%7C;Parent=biopygen134 -Merlin_5 blast match_part 428 444 . . . Gap=M17;ID=gi%7C431809132%7Cref%7CYP_007236029.1%7C;Parent=biopygen134 -Merlin_5 blast match_part 448 452 . . . Gap=M5;ID=gi%7C431809132%7Cref%7CYP_007236029.1%7C;Parent=biopygen134 -Merlin_5 blast match_part 456 462 . . . Gap=M7;ID=gi%7C431809132%7Cref%7CYP_007236029.1%7C;Parent=biopygen134 -Merlin_5 blast match_part 467 500 . . . Gap=M34;ID=gi%7C431809132%7Cref%7CYP_007236029.1%7C;Parent=biopygen134 -Merlin_5 blast match_part 510 511 . . . Gap=M2;ID=gi%7C431809132%7Cref%7CYP_007236029.1%7C;Parent=biopygen134 -Merlin_5 blast match_part 515 530 . . . Gap=M16;ID=gi%7C431809132%7Cref%7CYP_007236029.1%7C;Parent=biopygen134 -Merlin_5 blast match_part 534 535 . . . Gap=M2;ID=gi%7C431809132%7Cref%7CYP_007236029.1%7C;Parent=biopygen134 -Merlin_5 blast match_part 543 558 . . . Gap=M16;ID=gi%7C431809132%7Cref%7CYP_007236029.1%7C;Parent=biopygen134 -Merlin_5 blast match_part 562 576 . . . Gap=M15;ID=gi%7C431809132%7Cref%7CYP_007236029.1%7C;Parent=biopygen134 -Merlin_5 blast protein_match 1 577 3.573e-78 . . ID=biopygen135;accession=YP_007004252;description=baseplate hub subunit %5BEnterobacteria phage Bp7%5D;hit_id=gi%7C422934216%7Cref%7CYP_007004252.1%7C;hit_titles=gi%7C422934216%7Cref%7CYP_007004252.1%7C baseplate hub subunit %5BEnterobacteria phage Bp7%5D,gi%7C345450725%7Cgb%7CAEN93928.1%7C baseplate hub subunit %5BEnterobacteria phage Bp7%5D;length=578 -Merlin_5 blast match_part 1 17 . . . Gap=M17;ID=gi%7C422934216%7Cref%7CYP_007004252.1%7C;Parent=biopygen135 -Merlin_5 blast match_part 21 38 . . . Gap=M18;ID=gi%7C422934216%7Cref%7CYP_007004252.1%7C;Parent=biopygen135 -Merlin_5 blast match_part 42 80 . . . Gap=M39;ID=gi%7C422934216%7Cref%7CYP_007004252.1%7C;Parent=biopygen135 -Merlin_5 blast match_part 85 92 . . . Gap=M8;ID=gi%7C422934216%7Cref%7CYP_007004252.1%7C;Parent=biopygen135 -Merlin_5 blast match_part 98 112 . . . Gap=M15;ID=gi%7C422934216%7Cref%7CYP_007004252.1%7C;Parent=biopygen135 -Merlin_5 blast match_part 116 116 . . . Gap=M1;ID=gi%7C422934216%7Cref%7CYP_007004252.1%7C;Parent=biopygen135 -Merlin_5 blast match_part 120 120 . . . Gap=M1;ID=gi%7C422934216%7Cref%7CYP_007004252.1%7C;Parent=biopygen135 -Merlin_5 blast match_part 124 126 . . . Gap=M3;ID=gi%7C422934216%7Cref%7CYP_007004252.1%7C;Parent=biopygen135 -Merlin_5 blast match_part 131 158 . . . Gap=M28;ID=gi%7C422934216%7Cref%7CYP_007004252.1%7C;Parent=biopygen135 -Merlin_5 blast match_part 162 170 . . . Gap=M9;ID=gi%7C422934216%7Cref%7CYP_007004252.1%7C;Parent=biopygen135 -Merlin_5 blast match_part 175 279 . . . Gap=M105;ID=gi%7C422934216%7Cref%7CYP_007004252.1%7C;Parent=biopygen135 -Merlin_5 blast match_part 285 333 . . . Gap=M49;ID=gi%7C422934216%7Cref%7CYP_007004252.1%7C;Parent=biopygen135 -Merlin_5 blast match_part 338 386 . . . Gap=M49;ID=gi%7C422934216%7Cref%7CYP_007004252.1%7C;Parent=biopygen135 -Merlin_5 blast match_part 395 406 . . . Gap=M4 I1 M7;ID=gi%7C422934216%7Cref%7CYP_007004252.1%7C;Parent=biopygen135 -Merlin_5 blast match_part 410 410 . . . Gap=M1;ID=gi%7C422934216%7Cref%7CYP_007004252.1%7C;Parent=biopygen135 -Merlin_5 blast match_part 414 416 . . . Gap=M3;ID=gi%7C422934216%7Cref%7CYP_007004252.1%7C;Parent=biopygen135 -Merlin_5 blast match_part 422 426 . . . Gap=M5;ID=gi%7C422934216%7Cref%7CYP_007004252.1%7C;Parent=biopygen135 -Merlin_5 blast match_part 430 443 . . . Gap=M14;ID=gi%7C422934216%7Cref%7CYP_007004252.1%7C;Parent=biopygen135 -Merlin_5 blast match_part 447 448 . . . Gap=M2;ID=gi%7C422934216%7Cref%7CYP_007004252.1%7C;Parent=biopygen135 -Merlin_5 blast match_part 452 460 . . . Gap=M9;ID=gi%7C422934216%7Cref%7CYP_007004252.1%7C;Parent=biopygen135 -Merlin_5 blast match_part 467 476 . . . Gap=M10;ID=gi%7C422934216%7Cref%7CYP_007004252.1%7C;Parent=biopygen135 -Merlin_5 blast match_part 480 487 . . . Gap=M8;ID=gi%7C422934216%7Cref%7CYP_007004252.1%7C;Parent=biopygen135 -Merlin_5 blast match_part 491 492 . . . Gap=M2;ID=gi%7C422934216%7Cref%7CYP_007004252.1%7C;Parent=biopygen135 -Merlin_5 blast match_part 497 501 . . . Gap=M5;ID=gi%7C422934216%7Cref%7CYP_007004252.1%7C;Parent=biopygen135 -Merlin_5 blast match_part 505 524 . . . Gap=M20;ID=gi%7C422934216%7Cref%7CYP_007004252.1%7C;Parent=biopygen135 -Merlin_5 blast match_part 528 535 . . . Gap=M8;ID=gi%7C422934216%7Cref%7CYP_007004252.1%7C;Parent=biopygen135 -Merlin_5 blast match_part 543 547 . . . Gap=M5;ID=gi%7C422934216%7Cref%7CYP_007004252.1%7C;Parent=biopygen135 -Merlin_5 blast match_part 552 558 . . . Gap=M7;ID=gi%7C422934216%7Cref%7CYP_007004252.1%7C;Parent=biopygen135 -Merlin_5 blast match_part 562 576 . . . Gap=M15;ID=gi%7C422934216%7Cref%7CYP_007004252.1%7C;Parent=biopygen135 -Merlin_5 blast protein_match 0 577 3.63307e-78 . . ID=biopygen136;accession=YP_004063890;description=gp29 baseplate hub subunit tail length determinator %5BEnterobacteria phage vB_EcoM-VR7%5D;hit_id=gi%7C314121771%7Cref%7CYP_004063890.1%7C;hit_titles=gi%7C314121771%7Cref%7CYP_004063890.1%7C gp29 baseplate hub subunit tail length determinator %5BEnterobacteria phage vB_EcoM-VR7%5D,gi%7C313151528%7Cgb%7CADR32584.1%7C gp29 baseplate hub subunit tail length determinator %5BEnterobacteria phage vB_EcoM-VR7%5D;length=581 -Merlin_5 blast match_part 2 3 . . . Gap=M2;ID=gi%7C314121771%7Cref%7CYP_004063890.1%7C;Parent=biopygen136 -Merlin_5 blast match_part 7 17 . . . Gap=M11;ID=gi%7C314121771%7Cref%7CYP_004063890.1%7C;Parent=biopygen136 -Merlin_5 blast match_part 21 38 . . . Gap=M18;ID=gi%7C314121771%7Cref%7CYP_004063890.1%7C;Parent=biopygen136 -Merlin_5 blast match_part 42 94 . . . Gap=M53;ID=gi%7C314121771%7Cref%7CYP_004063890.1%7C;Parent=biopygen136 -Merlin_5 blast match_part 98 113 . . . Gap=M16;ID=gi%7C314121771%7Cref%7CYP_004063890.1%7C;Parent=biopygen136 -Merlin_5 blast match_part 123 145 . . . Gap=M23;ID=gi%7C314121771%7Cref%7CYP_004063890.1%7C;Parent=biopygen136 -Merlin_5 blast match_part 153 158 . . . Gap=M6;ID=gi%7C314121771%7Cref%7CYP_004063890.1%7C;Parent=biopygen136 -Merlin_5 blast match_part 164 186 . . . Gap=M8 I1 M14;ID=gi%7C314121771%7Cref%7CYP_004063890.1%7C;Parent=biopygen136 -Merlin_5 blast match_part 192 233 . . . Gap=M42;ID=gi%7C314121771%7Cref%7CYP_004063890.1%7C;Parent=biopygen136 -Merlin_5 blast match_part 237 258 . . . Gap=M22;ID=gi%7C314121771%7Cref%7CYP_004063890.1%7C;Parent=biopygen136 -Merlin_5 blast match_part 262 279 . . . Gap=M18;ID=gi%7C314121771%7Cref%7CYP_004063890.1%7C;Parent=biopygen136 -Merlin_5 blast match_part 285 290 . . . Gap=M6;ID=gi%7C314121771%7Cref%7CYP_004063890.1%7C;Parent=biopygen136 -Merlin_5 blast match_part 294 386 . . . Gap=M93;ID=gi%7C314121771%7Cref%7CYP_004063890.1%7C;Parent=biopygen136 -Merlin_5 blast match_part 395 406 . . . Gap=M4 I1 M7;ID=gi%7C314121771%7Cref%7CYP_004063890.1%7C;Parent=biopygen136 -Merlin_5 blast match_part 410 410 . . . Gap=M1;ID=gi%7C314121771%7Cref%7CYP_004063890.1%7C;Parent=biopygen136 -Merlin_5 blast match_part 414 416 . . . Gap=M3;ID=gi%7C314121771%7Cref%7CYP_004063890.1%7C;Parent=biopygen136 -Merlin_5 blast match_part 422 426 . . . Gap=M5;ID=gi%7C314121771%7Cref%7CYP_004063890.1%7C;Parent=biopygen136 -Merlin_5 blast match_part 430 443 . . . Gap=M14;ID=gi%7C314121771%7Cref%7CYP_004063890.1%7C;Parent=biopygen136 -Merlin_5 blast match_part 447 448 . . . Gap=M2;ID=gi%7C314121771%7Cref%7CYP_004063890.1%7C;Parent=biopygen136 -Merlin_5 blast match_part 452 476 . . . Gap=M25;ID=gi%7C314121771%7Cref%7CYP_004063890.1%7C;Parent=biopygen136 -Merlin_5 blast match_part 480 485 . . . Gap=M6;ID=gi%7C314121771%7Cref%7CYP_004063890.1%7C;Parent=biopygen136 -Merlin_5 blast match_part 490 493 . . . Gap=M4;ID=gi%7C314121771%7Cref%7CYP_004063890.1%7C;Parent=biopygen136 -Merlin_5 blast match_part 497 502 . . . Gap=M6;ID=gi%7C314121771%7Cref%7CYP_004063890.1%7C;Parent=biopygen136 -Merlin_5 blast match_part 506 507 . . . Gap=M2;ID=gi%7C314121771%7Cref%7CYP_004063890.1%7C;Parent=biopygen136 -Merlin_5 blast match_part 513 518 . . . Gap=M6;ID=gi%7C314121771%7Cref%7CYP_004063890.1%7C;Parent=biopygen136 -Merlin_5 blast match_part 522 524 . . . Gap=M3;ID=gi%7C314121771%7Cref%7CYP_004063890.1%7C;Parent=biopygen136 -Merlin_5 blast match_part 528 530 . . . Gap=M3;ID=gi%7C314121771%7Cref%7CYP_004063890.1%7C;Parent=biopygen136 -Merlin_5 blast match_part 534 534 . . . Gap=M1;ID=gi%7C314121771%7Cref%7CYP_004063890.1%7C;Parent=biopygen136 -Merlin_5 blast match_part 542 558 . . . Gap=M17;ID=gi%7C314121771%7Cref%7CYP_004063890.1%7C;Parent=biopygen136 -Merlin_5 blast match_part 562 576 . . . Gap=M15;ID=gi%7C314121771%7Cref%7CYP_004063890.1%7C;Parent=biopygen136 -Merlin_5 blast protein_match 1 577 2.99001e-77 . . ID=biopygen137;accession=YP_003734334;description=29 gene product %5BEnterobacteria phage IME08%5D;hit_id=gi%7C299779140%7Cref%7CYP_003734334.1%7C;hit_titles=gi%7C299779140%7Cref%7CYP_003734334.1%7C 29 gene product %5BEnterobacteria phage IME08%5D,gi%7C298105869%7Cgb%7CADI55513.1%7C gp29 baseplate hub subunit %5BEnterobacteria phage IME08%5D;length=578 -Merlin_5 blast match_part 1 17 . . . Gap=M17;ID=gi%7C299779140%7Cref%7CYP_003734334.1%7C;Parent=biopygen137 -Merlin_5 blast match_part 21 38 . . . Gap=M18;ID=gi%7C299779140%7Cref%7CYP_003734334.1%7C;Parent=biopygen137 -Merlin_5 blast match_part 42 80 . . . Gap=M39;ID=gi%7C299779140%7Cref%7CYP_003734334.1%7C;Parent=biopygen137 -Merlin_5 blast match_part 85 92 . . . Gap=M8;ID=gi%7C299779140%7Cref%7CYP_003734334.1%7C;Parent=biopygen137 -Merlin_5 blast match_part 98 112 . . . Gap=M15;ID=gi%7C299779140%7Cref%7CYP_003734334.1%7C;Parent=biopygen137 -Merlin_5 blast match_part 116 116 . . . Gap=M1;ID=gi%7C299779140%7Cref%7CYP_003734334.1%7C;Parent=biopygen137 -Merlin_5 blast match_part 120 120 . . . Gap=M1;ID=gi%7C299779140%7Cref%7CYP_003734334.1%7C;Parent=biopygen137 -Merlin_5 blast match_part 124 126 . . . Gap=M3;ID=gi%7C299779140%7Cref%7CYP_003734334.1%7C;Parent=biopygen137 -Merlin_5 blast match_part 131 158 . . . Gap=M28;ID=gi%7C299779140%7Cref%7CYP_003734334.1%7C;Parent=biopygen137 -Merlin_5 blast match_part 162 170 . . . Gap=M9;ID=gi%7C299779140%7Cref%7CYP_003734334.1%7C;Parent=biopygen137 -Merlin_5 blast match_part 175 279 . . . Gap=M105;ID=gi%7C299779140%7Cref%7CYP_003734334.1%7C;Parent=biopygen137 -Merlin_5 blast match_part 285 333 . . . Gap=M49;ID=gi%7C299779140%7Cref%7CYP_003734334.1%7C;Parent=biopygen137 -Merlin_5 blast match_part 338 386 . . . Gap=M49;ID=gi%7C299779140%7Cref%7CYP_003734334.1%7C;Parent=biopygen137 -Merlin_5 blast match_part 395 406 . . . Gap=M4 I1 M7;ID=gi%7C299779140%7Cref%7CYP_003734334.1%7C;Parent=biopygen137 -Merlin_5 blast match_part 410 410 . . . Gap=M1;ID=gi%7C299779140%7Cref%7CYP_003734334.1%7C;Parent=biopygen137 -Merlin_5 blast match_part 414 416 . . . Gap=M3;ID=gi%7C299779140%7Cref%7CYP_003734334.1%7C;Parent=biopygen137 -Merlin_5 blast match_part 422 426 . . . Gap=M5;ID=gi%7C299779140%7Cref%7CYP_003734334.1%7C;Parent=biopygen137 -Merlin_5 blast match_part 430 443 . . . Gap=M14;ID=gi%7C299779140%7Cref%7CYP_003734334.1%7C;Parent=biopygen137 -Merlin_5 blast match_part 447 448 . . . Gap=M2;ID=gi%7C299779140%7Cref%7CYP_003734334.1%7C;Parent=biopygen137 -Merlin_5 blast match_part 452 476 . . . Gap=M8 I1 M16;ID=gi%7C299779140%7Cref%7CYP_003734334.1%7C;Parent=biopygen137 -Merlin_5 blast match_part 480 487 . . . Gap=M8;ID=gi%7C299779140%7Cref%7CYP_003734334.1%7C;Parent=biopygen137 -Merlin_5 blast match_part 491 492 . . . Gap=M2;ID=gi%7C299779140%7Cref%7CYP_003734334.1%7C;Parent=biopygen137 -Merlin_5 blast match_part 497 501 . . . Gap=M5;ID=gi%7C299779140%7Cref%7CYP_003734334.1%7C;Parent=biopygen137 -Merlin_5 blast match_part 505 524 . . . Gap=M20;ID=gi%7C299779140%7Cref%7CYP_003734334.1%7C;Parent=biopygen137 -Merlin_5 blast match_part 528 535 . . . Gap=M8;ID=gi%7C299779140%7Cref%7CYP_003734334.1%7C;Parent=biopygen137 -Merlin_5 blast match_part 543 547 . . . Gap=M5;ID=gi%7C299779140%7Cref%7CYP_003734334.1%7C;Parent=biopygen137 -Merlin_5 blast match_part 552 558 . . . Gap=M7;ID=gi%7C299779140%7Cref%7CYP_003734334.1%7C;Parent=biopygen137 -Merlin_5 blast match_part 562 576 . . . Gap=M15;ID=gi%7C299779140%7Cref%7CYP_003734334.1%7C;Parent=biopygen137 -Merlin_5 blast protein_match 0 577 1.10381e-76 . . ID=biopygen138;accession=YP_003934830;description=baseplate hub subunit tail length determinator %5BShigella phage SP18%5D;hit_id=gi%7C308814556%7Cref%7CYP_003934830.1%7C;hit_titles=gi%7C308814556%7Cref%7CYP_003934830.1%7C baseplate hub subunit tail length determinator %5BShigella phage SP18%5D,gi%7C308206148%7Cgb%7CADO19547.1%7C baseplate hub subunit tail length determinator %5BShigella phage SP18%5D;length=581 -Merlin_5 blast match_part 2 3 . . . Gap=M2;ID=gi%7C308814556%7Cref%7CYP_003934830.1%7C;Parent=biopygen138 -Merlin_5 blast match_part 7 17 . . . Gap=M11;ID=gi%7C308814556%7Cref%7CYP_003934830.1%7C;Parent=biopygen138 -Merlin_5 blast match_part 21 38 . . . Gap=M18;ID=gi%7C308814556%7Cref%7CYP_003934830.1%7C;Parent=biopygen138 -Merlin_5 blast match_part 42 94 . . . Gap=M53;ID=gi%7C308814556%7Cref%7CYP_003934830.1%7C;Parent=biopygen138 -Merlin_5 blast match_part 98 113 . . . Gap=M16;ID=gi%7C308814556%7Cref%7CYP_003934830.1%7C;Parent=biopygen138 -Merlin_5 blast match_part 123 145 . . . Gap=M23;ID=gi%7C308814556%7Cref%7CYP_003934830.1%7C;Parent=biopygen138 -Merlin_5 blast match_part 153 158 . . . Gap=M6;ID=gi%7C308814556%7Cref%7CYP_003934830.1%7C;Parent=biopygen138 -Merlin_5 blast match_part 164 186 . . . Gap=M8 I1 M14;ID=gi%7C308814556%7Cref%7CYP_003934830.1%7C;Parent=biopygen138 -Merlin_5 blast match_part 192 233 . . . Gap=M42;ID=gi%7C308814556%7Cref%7CYP_003934830.1%7C;Parent=biopygen138 -Merlin_5 blast match_part 237 258 . . . Gap=M22;ID=gi%7C308814556%7Cref%7CYP_003934830.1%7C;Parent=biopygen138 -Merlin_5 blast match_part 262 279 . . . Gap=M18;ID=gi%7C308814556%7Cref%7CYP_003934830.1%7C;Parent=biopygen138 -Merlin_5 blast match_part 285 290 . . . Gap=M6;ID=gi%7C308814556%7Cref%7CYP_003934830.1%7C;Parent=biopygen138 -Merlin_5 blast match_part 294 386 . . . Gap=M93;ID=gi%7C308814556%7Cref%7CYP_003934830.1%7C;Parent=biopygen138 -Merlin_5 blast match_part 395 406 . . . Gap=M4 I1 M7;ID=gi%7C308814556%7Cref%7CYP_003934830.1%7C;Parent=biopygen138 -Merlin_5 blast match_part 410 410 . . . Gap=M1;ID=gi%7C308814556%7Cref%7CYP_003934830.1%7C;Parent=biopygen138 -Merlin_5 blast match_part 414 416 . . . Gap=M3;ID=gi%7C308814556%7Cref%7CYP_003934830.1%7C;Parent=biopygen138 -Merlin_5 blast match_part 422 426 . . . Gap=M5;ID=gi%7C308814556%7Cref%7CYP_003934830.1%7C;Parent=biopygen138 -Merlin_5 blast match_part 430 443 . . . Gap=M14;ID=gi%7C308814556%7Cref%7CYP_003934830.1%7C;Parent=biopygen138 -Merlin_5 blast match_part 447 448 . . . Gap=M2;ID=gi%7C308814556%7Cref%7CYP_003934830.1%7C;Parent=biopygen138 -Merlin_5 blast match_part 452 461 . . . Gap=M10;ID=gi%7C308814556%7Cref%7CYP_003934830.1%7C;Parent=biopygen138 -Merlin_5 blast match_part 465 476 . . . Gap=M12;ID=gi%7C308814556%7Cref%7CYP_003934830.1%7C;Parent=biopygen138 -Merlin_5 blast match_part 480 493 . . . Gap=M2 I1 M11;ID=gi%7C308814556%7Cref%7CYP_003934830.1%7C;Parent=biopygen138 -Merlin_5 blast match_part 497 502 . . . Gap=M6;ID=gi%7C308814556%7Cref%7CYP_003934830.1%7C;Parent=biopygen138 -Merlin_5 blast match_part 506 507 . . . Gap=M2;ID=gi%7C308814556%7Cref%7CYP_003934830.1%7C;Parent=biopygen138 -Merlin_5 blast match_part 512 518 . . . Gap=M7;ID=gi%7C308814556%7Cref%7CYP_003934830.1%7C;Parent=biopygen138 -Merlin_5 blast match_part 522 524 . . . Gap=M3;ID=gi%7C308814556%7Cref%7CYP_003934830.1%7C;Parent=biopygen138 -Merlin_5 blast match_part 528 530 . . . Gap=M3;ID=gi%7C308814556%7Cref%7CYP_003934830.1%7C;Parent=biopygen138 -Merlin_5 blast match_part 534 534 . . . Gap=M1;ID=gi%7C308814556%7Cref%7CYP_003934830.1%7C;Parent=biopygen138 -Merlin_5 blast match_part 542 558 . . . Gap=M17;ID=gi%7C308814556%7Cref%7CYP_003934830.1%7C;Parent=biopygen138 -Merlin_5 blast match_part 562 576 . . . Gap=M15;ID=gi%7C308814556%7Cref%7CYP_003934830.1%7C;Parent=biopygen138 -Merlin_5 blast protein_match 1 577 1.03696e-75 . . ID=biopygen139;accession=YP_002922538;description=gp29 baseplate hub subunit%2C tail length determinator %5BEnterobacteria phage JS10%5D;hit_id=gi%7C238695345%7Cref%7CYP_002922538.1%7C;hit_titles=gi%7C238695345%7Cref%7CYP_002922538.1%7C gp29 baseplate hub subunit%2C tail length determinator %5BEnterobacteria phage JS10%5D,gi%7C220029481%7Cgb%7CACL78415.1%7C gp29 baseplate hub subunit%2C tail length determinator %5BEnterobacteria phage JS10%5D;length=578 -Merlin_5 blast match_part 1 17 . . . Gap=M17;ID=gi%7C238695345%7Cref%7CYP_002922538.1%7C;Parent=biopygen139 -Merlin_5 blast match_part 21 38 . . . Gap=M18;ID=gi%7C238695345%7Cref%7CYP_002922538.1%7C;Parent=biopygen139 -Merlin_5 blast match_part 42 80 . . . Gap=M39;ID=gi%7C238695345%7Cref%7CYP_002922538.1%7C;Parent=biopygen139 -Merlin_5 blast match_part 85 92 . . . Gap=M8;ID=gi%7C238695345%7Cref%7CYP_002922538.1%7C;Parent=biopygen139 -Merlin_5 blast match_part 98 112 . . . Gap=M15;ID=gi%7C238695345%7Cref%7CYP_002922538.1%7C;Parent=biopygen139 -Merlin_5 blast match_part 116 116 . . . Gap=M1;ID=gi%7C238695345%7Cref%7CYP_002922538.1%7C;Parent=biopygen139 -Merlin_5 blast match_part 120 120 . . . Gap=M1;ID=gi%7C238695345%7Cref%7CYP_002922538.1%7C;Parent=biopygen139 -Merlin_5 blast match_part 124 126 . . . Gap=M3;ID=gi%7C238695345%7Cref%7CYP_002922538.1%7C;Parent=biopygen139 -Merlin_5 blast match_part 131 158 . . . Gap=M28;ID=gi%7C238695345%7Cref%7CYP_002922538.1%7C;Parent=biopygen139 -Merlin_5 blast match_part 162 168 . . . Gap=M7;ID=gi%7C238695345%7Cref%7CYP_002922538.1%7C;Parent=biopygen139 -Merlin_5 blast match_part 172 186 . . . Gap=M15;ID=gi%7C238695345%7Cref%7CYP_002922538.1%7C;Parent=biopygen139 -Merlin_5 blast match_part 191 258 . . . Gap=M68;ID=gi%7C238695345%7Cref%7CYP_002922538.1%7C;Parent=biopygen139 -Merlin_5 blast match_part 262 279 . . . Gap=M18;ID=gi%7C238695345%7Cref%7CYP_002922538.1%7C;Parent=biopygen139 -Merlin_5 blast match_part 285 290 . . . Gap=M6;ID=gi%7C238695345%7Cref%7CYP_002922538.1%7C;Parent=biopygen139 -Merlin_5 blast match_part 294 386 . . . Gap=M93;ID=gi%7C238695345%7Cref%7CYP_002922538.1%7C;Parent=biopygen139 -Merlin_5 blast match_part 395 406 . . . Gap=M4 I1 M7;ID=gi%7C238695345%7Cref%7CYP_002922538.1%7C;Parent=biopygen139 -Merlin_5 blast match_part 410 410 . . . Gap=M1;ID=gi%7C238695345%7Cref%7CYP_002922538.1%7C;Parent=biopygen139 -Merlin_5 blast match_part 414 416 . . . Gap=M3;ID=gi%7C238695345%7Cref%7CYP_002922538.1%7C;Parent=biopygen139 -Merlin_5 blast match_part 422 426 . . . Gap=M5;ID=gi%7C238695345%7Cref%7CYP_002922538.1%7C;Parent=biopygen139 -Merlin_5 blast match_part 430 443 . . . Gap=M14;ID=gi%7C238695345%7Cref%7CYP_002922538.1%7C;Parent=biopygen139 -Merlin_5 blast match_part 447 448 . . . Gap=M2;ID=gi%7C238695345%7Cref%7CYP_002922538.1%7C;Parent=biopygen139 -Merlin_5 blast match_part 452 460 . . . Gap=M9;ID=gi%7C238695345%7Cref%7CYP_002922538.1%7C;Parent=biopygen139 -Merlin_5 blast match_part 467 476 . . . Gap=M10;ID=gi%7C238695345%7Cref%7CYP_002922538.1%7C;Parent=biopygen139 -Merlin_5 blast match_part 480 487 . . . Gap=M8;ID=gi%7C238695345%7Cref%7CYP_002922538.1%7C;Parent=biopygen139 -Merlin_5 blast match_part 491 492 . . . Gap=M2;ID=gi%7C238695345%7Cref%7CYP_002922538.1%7C;Parent=biopygen139 -Merlin_5 blast match_part 497 501 . . . Gap=M5;ID=gi%7C238695345%7Cref%7CYP_002922538.1%7C;Parent=biopygen139 -Merlin_5 blast match_part 505 524 . . . Gap=M20;ID=gi%7C238695345%7Cref%7CYP_002922538.1%7C;Parent=biopygen139 -Merlin_5 blast match_part 528 535 . . . Gap=M8;ID=gi%7C238695345%7Cref%7CYP_002922538.1%7C;Parent=biopygen139 -Merlin_5 blast match_part 543 547 . . . Gap=M5;ID=gi%7C238695345%7Cref%7CYP_002922538.1%7C;Parent=biopygen139 -Merlin_5 blast match_part 552 558 . . . Gap=M7;ID=gi%7C238695345%7Cref%7CYP_002922538.1%7C;Parent=biopygen139 -Merlin_5 blast match_part 562 576 . . . Gap=M15;ID=gi%7C238695345%7Cref%7CYP_002922538.1%7C;Parent=biopygen139 -Merlin_5 blast protein_match 1 577 1.72858e-74 . . ID=biopygen140;accession=YP_001595318;description=gp29 baseplate hub subunit tail length determinator %5BEnterobacteria phage JS98%5D;hit_id=gi%7C161622623%7Cref%7CYP_001595318.1%7C;hit_titles=gi%7C161622623%7Cref%7CYP_001595318.1%7C gp29 baseplate hub subunit tail length determinator %5BEnterobacteria phage JS98%5D,gi%7C52139948%7Cgb%7CAAU29318.1%7C gp29 baseplate hub subunit tail length determinator %5BEnterobacteria phage JS98%5D;length=578 -Merlin_5 blast match_part 1 17 . . . Gap=M17;ID=gi%7C161622623%7Cref%7CYP_001595318.1%7C;Parent=biopygen140 -Merlin_5 blast match_part 21 38 . . . Gap=M18;ID=gi%7C161622623%7Cref%7CYP_001595318.1%7C;Parent=biopygen140 -Merlin_5 blast match_part 42 80 . . . Gap=M39;ID=gi%7C161622623%7Cref%7CYP_001595318.1%7C;Parent=biopygen140 -Merlin_5 blast match_part 85 92 . . . Gap=M8;ID=gi%7C161622623%7Cref%7CYP_001595318.1%7C;Parent=biopygen140 -Merlin_5 blast match_part 98 112 . . . Gap=M15;ID=gi%7C161622623%7Cref%7CYP_001595318.1%7C;Parent=biopygen140 -Merlin_5 blast match_part 116 116 . . . Gap=M1;ID=gi%7C161622623%7Cref%7CYP_001595318.1%7C;Parent=biopygen140 -Merlin_5 blast match_part 120 120 . . . Gap=M1;ID=gi%7C161622623%7Cref%7CYP_001595318.1%7C;Parent=biopygen140 -Merlin_5 blast match_part 124 126 . . . Gap=M3;ID=gi%7C161622623%7Cref%7CYP_001595318.1%7C;Parent=biopygen140 -Merlin_5 blast match_part 131 158 . . . Gap=M28;ID=gi%7C161622623%7Cref%7CYP_001595318.1%7C;Parent=biopygen140 -Merlin_5 blast match_part 162 168 . . . Gap=M7;ID=gi%7C161622623%7Cref%7CYP_001595318.1%7C;Parent=biopygen140 -Merlin_5 blast match_part 172 186 . . . Gap=M15;ID=gi%7C161622623%7Cref%7CYP_001595318.1%7C;Parent=biopygen140 -Merlin_5 blast match_part 191 258 . . . Gap=M68;ID=gi%7C161622623%7Cref%7CYP_001595318.1%7C;Parent=biopygen140 -Merlin_5 blast match_part 262 279 . . . Gap=M18;ID=gi%7C161622623%7Cref%7CYP_001595318.1%7C;Parent=biopygen140 -Merlin_5 blast match_part 285 290 . . . Gap=M6;ID=gi%7C161622623%7Cref%7CYP_001595318.1%7C;Parent=biopygen140 -Merlin_5 blast match_part 294 386 . . . Gap=M93;ID=gi%7C161622623%7Cref%7CYP_001595318.1%7C;Parent=biopygen140 -Merlin_5 blast match_part 395 406 . . . Gap=M4 I1 M7;ID=gi%7C161622623%7Cref%7CYP_001595318.1%7C;Parent=biopygen140 -Merlin_5 blast match_part 410 410 . . . Gap=M1;ID=gi%7C161622623%7Cref%7CYP_001595318.1%7C;Parent=biopygen140 -Merlin_5 blast match_part 414 416 . . . Gap=M3;ID=gi%7C161622623%7Cref%7CYP_001595318.1%7C;Parent=biopygen140 -Merlin_5 blast match_part 422 426 . . . Gap=M5;ID=gi%7C161622623%7Cref%7CYP_001595318.1%7C;Parent=biopygen140 -Merlin_5 blast match_part 430 443 . . . Gap=M14;ID=gi%7C161622623%7Cref%7CYP_001595318.1%7C;Parent=biopygen140 -Merlin_5 blast match_part 447 448 . . . Gap=M2;ID=gi%7C161622623%7Cref%7CYP_001595318.1%7C;Parent=biopygen140 -Merlin_5 blast match_part 452 460 . . . Gap=M9;ID=gi%7C161622623%7Cref%7CYP_001595318.1%7C;Parent=biopygen140 -Merlin_5 blast match_part 467 476 . . . Gap=M10;ID=gi%7C161622623%7Cref%7CYP_001595318.1%7C;Parent=biopygen140 -Merlin_5 blast match_part 480 487 . . . Gap=M8;ID=gi%7C161622623%7Cref%7CYP_001595318.1%7C;Parent=biopygen140 -Merlin_5 blast match_part 491 492 . . . Gap=M2;ID=gi%7C161622623%7Cref%7CYP_001595318.1%7C;Parent=biopygen140 -Merlin_5 blast match_part 497 501 . . . Gap=M5;ID=gi%7C161622623%7Cref%7CYP_001595318.1%7C;Parent=biopygen140 -Merlin_5 blast match_part 505 524 . . . Gap=M20;ID=gi%7C161622623%7Cref%7CYP_001595318.1%7C;Parent=biopygen140 -Merlin_5 blast match_part 528 535 . . . Gap=M8;ID=gi%7C161622623%7Cref%7CYP_001595318.1%7C;Parent=biopygen140 -Merlin_5 blast match_part 543 547 . . . Gap=M5;ID=gi%7C161622623%7Cref%7CYP_001595318.1%7C;Parent=biopygen140 -Merlin_5 blast match_part 552 558 . . . Gap=M7;ID=gi%7C161622623%7Cref%7CYP_001595318.1%7C;Parent=biopygen140 -Merlin_5 blast match_part 562 576 . . . Gap=M15;ID=gi%7C161622623%7Cref%7CYP_001595318.1%7C;Parent=biopygen140 -Merlin_5 blast protein_match 1 577 7.65187e-63 . . ID=biopygen141;accession=YP_004009559;description=gp29 baseplate hub subunit %5BAcinetobacter phage Ac42%5D;hit_id=gi%7C311992691%7Cref%7CYP_004009559.1%7C;hit_titles=gi%7C311992691%7Cref%7CYP_004009559.1%7C gp29 baseplate hub subunit %5BAcinetobacter phage Ac42%5D,gi%7C298684474%7Cgb%7CADI96435.1%7C gp29 baseplate hub subunit %5BAcinetobacter phage Ac42%5D;length=569 -Merlin_5 blast match_part 1 18 . . . Gap=M18;ID=gi%7C311992691%7Cref%7CYP_004009559.1%7C;Parent=biopygen141 -Merlin_5 blast match_part 22 24 . . . Gap=M3;ID=gi%7C311992691%7Cref%7CYP_004009559.1%7C;Parent=biopygen141 -Merlin_5 blast match_part 30 38 . . . Gap=M9;ID=gi%7C311992691%7Cref%7CYP_004009559.1%7C;Parent=biopygen141 -Merlin_5 blast match_part 42 45 . . . Gap=M4;ID=gi%7C311992691%7Cref%7CYP_004009559.1%7C;Parent=biopygen141 -Merlin_5 blast match_part 49 60 . . . Gap=M12;ID=gi%7C311992691%7Cref%7CYP_004009559.1%7C;Parent=biopygen141 -Merlin_5 blast match_part 64 76 . . . Gap=M13;ID=gi%7C311992691%7Cref%7CYP_004009559.1%7C;Parent=biopygen141 -Merlin_5 blast match_part 98 112 . . . Gap=M15;ID=gi%7C311992691%7Cref%7CYP_004009559.1%7C;Parent=biopygen141 -Merlin_5 blast match_part 117 122 . . . Gap=M6;ID=gi%7C311992691%7Cref%7CYP_004009559.1%7C;Parent=biopygen141 -Merlin_5 blast match_part 127 127 . . . Gap=M1;ID=gi%7C311992691%7Cref%7CYP_004009559.1%7C;Parent=biopygen141 -Merlin_5 blast match_part 131 145 . . . Gap=M15;ID=gi%7C311992691%7Cref%7CYP_004009559.1%7C;Parent=biopygen141 -Merlin_5 blast match_part 149 165 . . . Gap=M2 I1 M14;ID=gi%7C311992691%7Cref%7CYP_004009559.1%7C;Parent=biopygen141 -Merlin_5 blast match_part 174 178 . . . Gap=M5;ID=gi%7C311992691%7Cref%7CYP_004009559.1%7C;Parent=biopygen141 -Merlin_5 blast match_part 182 185 . . . Gap=M4;ID=gi%7C311992691%7Cref%7CYP_004009559.1%7C;Parent=biopygen141 -Merlin_5 blast match_part 189 226 . . . Gap=M38;ID=gi%7C311992691%7Cref%7CYP_004009559.1%7C;Parent=biopygen141 -Merlin_5 blast match_part 230 233 . . . Gap=M4;ID=gi%7C311992691%7Cref%7CYP_004009559.1%7C;Parent=biopygen141 -Merlin_5 blast match_part 237 266 . . . Gap=M30;ID=gi%7C311992691%7Cref%7CYP_004009559.1%7C;Parent=biopygen141 -Merlin_5 blast match_part 270 279 . . . Gap=M10;ID=gi%7C311992691%7Cref%7CYP_004009559.1%7C;Parent=biopygen141 -Merlin_5 blast match_part 283 295 . . . Gap=M13;ID=gi%7C311992691%7Cref%7CYP_004009559.1%7C;Parent=biopygen141 -Merlin_5 blast match_part 301 306 . . . Gap=M6;ID=gi%7C311992691%7Cref%7CYP_004009559.1%7C;Parent=biopygen141 -Merlin_5 blast match_part 310 310 . . . Gap=M1;ID=gi%7C311992691%7Cref%7CYP_004009559.1%7C;Parent=biopygen141 -Merlin_5 blast match_part 314 353 . . . Gap=M40;ID=gi%7C311992691%7Cref%7CYP_004009559.1%7C;Parent=biopygen141 -Merlin_5 blast match_part 357 379 . . . Gap=M23;ID=gi%7C311992691%7Cref%7CYP_004009559.1%7C;Parent=biopygen141 -Merlin_5 blast match_part 385 385 . . . Gap=M1;ID=gi%7C311992691%7Cref%7CYP_004009559.1%7C;Parent=biopygen141 -Merlin_5 blast match_part 389 397 . . . Gap=M9;ID=gi%7C311992691%7Cref%7CYP_004009559.1%7C;Parent=biopygen141 -Merlin_5 blast match_part 402 405 . . . Gap=M4;ID=gi%7C311992691%7Cref%7CYP_004009559.1%7C;Parent=biopygen141 -Merlin_5 blast match_part 410 412 . . . Gap=M3;ID=gi%7C311992691%7Cref%7CYP_004009559.1%7C;Parent=biopygen141 -Merlin_5 blast match_part 416 443 . . . Gap=M28;ID=gi%7C311992691%7Cref%7CYP_004009559.1%7C;Parent=biopygen141 -Merlin_5 blast match_part 448 455 . . . Gap=M8;ID=gi%7C311992691%7Cref%7CYP_004009559.1%7C;Parent=biopygen141 -Merlin_5 blast match_part 459 466 . . . Gap=M8;ID=gi%7C311992691%7Cref%7CYP_004009559.1%7C;Parent=biopygen141 -Merlin_5 blast match_part 470 494 . . . Gap=M25;ID=gi%7C311992691%7Cref%7CYP_004009559.1%7C;Parent=biopygen141 -Merlin_5 blast match_part 500 500 . . . Gap=M1;ID=gi%7C311992691%7Cref%7CYP_004009559.1%7C;Parent=biopygen141 -Merlin_5 blast match_part 505 513 . . . Gap=M9;ID=gi%7C311992691%7Cref%7CYP_004009559.1%7C;Parent=biopygen141 -Merlin_5 blast match_part 518 522 . . . Gap=M5;ID=gi%7C311992691%7Cref%7CYP_004009559.1%7C;Parent=biopygen141 -Merlin_5 blast match_part 526 528 . . . Gap=M3;ID=gi%7C311992691%7Cref%7CYP_004009559.1%7C;Parent=biopygen141 -Merlin_5 blast match_part 535 556 . . . Gap=M22;ID=gi%7C311992691%7Cref%7CYP_004009559.1%7C;Parent=biopygen141 -Merlin_5 blast match_part 561 576 . . . Gap=M16;ID=gi%7C311992691%7Cref%7CYP_004009559.1%7C;Parent=biopygen141 -Merlin_5 blast protein_match 8 571 6.69261e-57 . . ID=biopygen142;accession=YP_009030254;description=baseplate hub subunit%2C tail length determinator %5BSerratia phage PS2%5D;hit_id=gi%7C639438514%7Cref%7CYP_009030254.1%7C;hit_titles=gi%7C639438514%7Cref%7CYP_009030254.1%7C baseplate hub subunit%2C tail length determinator %5BSerratia phage PS2%5D,gi%7C625370587%7Cgb%7CAHY25447.1%7C baseplate hub subunit%2C tail length determinator %5BSerratia phage PS2%5D;length=572 -Merlin_5 blast match_part 42 69 . . . Gap=M28;ID=gi%7C639438514%7Cref%7CYP_009030254.1%7C;Parent=biopygen142 -Merlin_5 blast match_part 74 82 . . . Gap=M9;ID=gi%7C639438514%7Cref%7CYP_009030254.1%7C;Parent=biopygen142 -Merlin_5 blast match_part 86 91 . . . Gap=M6;ID=gi%7C639438514%7Cref%7CYP_009030254.1%7C;Parent=biopygen142 -Merlin_5 blast match_part 95 118 . . . Gap=M24;ID=gi%7C639438514%7Cref%7CYP_009030254.1%7C;Parent=biopygen142 -Merlin_5 blast match_part 123 143 . . . Gap=M21;ID=gi%7C639438514%7Cref%7CYP_009030254.1%7C;Parent=biopygen142 -Merlin_5 blast match_part 151 167 . . . Gap=M17;ID=gi%7C639438514%7Cref%7CYP_009030254.1%7C;Parent=biopygen142 -Merlin_5 blast match_part 174 191 . . . Gap=M18;ID=gi%7C639438514%7Cref%7CYP_009030254.1%7C;Parent=biopygen142 -Merlin_5 blast match_part 197 198 . . . Gap=M2;ID=gi%7C639438514%7Cref%7CYP_009030254.1%7C;Parent=biopygen142 -Merlin_5 blast match_part 202 228 . . . Gap=M27;ID=gi%7C639438514%7Cref%7CYP_009030254.1%7C;Parent=biopygen142 -Merlin_5 blast match_part 232 254 . . . Gap=M23;ID=gi%7C639438514%7Cref%7CYP_009030254.1%7C;Parent=biopygen142 -Merlin_5 blast match_part 258 280 . . . Gap=M23;ID=gi%7C639438514%7Cref%7CYP_009030254.1%7C;Parent=biopygen142 -Merlin_5 blast match_part 285 306 . . . Gap=M22;ID=gi%7C639438514%7Cref%7CYP_009030254.1%7C;Parent=biopygen142 -Merlin_5 blast match_part 310 333 . . . Gap=M24;ID=gi%7C639438514%7Cref%7CYP_009030254.1%7C;Parent=biopygen142 -Merlin_5 blast match_part 338 354 . . . Gap=M17;ID=gi%7C639438514%7Cref%7CYP_009030254.1%7C;Parent=biopygen142 -Merlin_5 blast match_part 359 375 . . . Gap=M17;ID=gi%7C639438514%7Cref%7CYP_009030254.1%7C;Parent=biopygen142 -Merlin_5 blast match_part 379 386 . . . Gap=M8;ID=gi%7C639438514%7Cref%7CYP_009030254.1%7C;Parent=biopygen142 -Merlin_5 blast match_part 391 391 . . . Gap=M1;ID=gi%7C639438514%7Cref%7CYP_009030254.1%7C;Parent=biopygen142 -Merlin_5 blast match_part 396 396 . . . Gap=M1;ID=gi%7C639438514%7Cref%7CYP_009030254.1%7C;Parent=biopygen142 -Merlin_5 blast match_part 401 417 . . . Gap=M17;ID=gi%7C639438514%7Cref%7CYP_009030254.1%7C;Parent=biopygen142 -Merlin_5 blast match_part 422 432 . . . Gap=M11;ID=gi%7C639438514%7Cref%7CYP_009030254.1%7C;Parent=biopygen142 -Merlin_5 blast match_part 438 440 . . . Gap=M3;ID=gi%7C639438514%7Cref%7CYP_009030254.1%7C;Parent=biopygen142 -Merlin_5 blast match_part 452 454 . . . Gap=M3;ID=gi%7C639438514%7Cref%7CYP_009030254.1%7C;Parent=biopygen142 -Merlin_5 blast match_part 459 459 . . . Gap=M1;ID=gi%7C639438514%7Cref%7CYP_009030254.1%7C;Parent=biopygen142 -Merlin_5 blast match_part 464 464 . . . Gap=M1;ID=gi%7C639438514%7Cref%7CYP_009030254.1%7C;Parent=biopygen142 -Merlin_5 blast match_part 468 478 . . . Gap=M8 I2 M1;ID=gi%7C639438514%7Cref%7CYP_009030254.1%7C;Parent=biopygen142 -Merlin_5 blast match_part 482 500 . . . Gap=M19;ID=gi%7C639438514%7Cref%7CYP_009030254.1%7C;Parent=biopygen142 -Merlin_5 blast match_part 504 509 . . . Gap=M6;ID=gi%7C639438514%7Cref%7CYP_009030254.1%7C;Parent=biopygen142 -Merlin_5 blast match_part 513 523 . . . Gap=M11;ID=gi%7C639438514%7Cref%7CYP_009030254.1%7C;Parent=biopygen142 -Merlin_5 blast match_part 529 537 . . . Gap=M9;ID=gi%7C639438514%7Cref%7CYP_009030254.1%7C;Parent=biopygen142 -Merlin_5 blast match_part 546 569 . . . Gap=M25;ID=gi%7C639438514%7Cref%7CYP_009030254.1%7C;Parent=biopygen142 -Merlin_5 blast protein_match 10 571 2.33408e-54 . . ID=biopygen143;accession=YP_002922258;description=tail length regulator %5BEnterobacteria phage JSE%5D;hit_id=gi%7C238695064%7Cref%7CYP_002922258.1%7C;hit_titles=gi%7C238695064%7Cref%7CYP_002922258.1%7C tail length regulator %5BEnterobacteria phage JSE%5D,gi%7C220029200%7Cgb%7CACL78135.1%7C tail length regulator %5BEnterobacteria phage JSE%5D;length=577 -Merlin_5 blast match_part 22 24 . . . Gap=M3;ID=gi%7C238695064%7Cref%7CYP_002922258.1%7C;Parent=biopygen143 -Merlin_5 blast match_part 30 38 . . . Gap=M9;ID=gi%7C238695064%7Cref%7CYP_002922258.1%7C;Parent=biopygen143 -Merlin_5 blast match_part 42 91 . . . Gap=M50;ID=gi%7C238695064%7Cref%7CYP_002922258.1%7C;Parent=biopygen143 -Merlin_5 blast match_part 95 102 . . . Gap=M8;ID=gi%7C238695064%7Cref%7CYP_002922258.1%7C;Parent=biopygen143 -Merlin_5 blast match_part 108 112 . . . Gap=M5;ID=gi%7C238695064%7Cref%7CYP_002922258.1%7C;Parent=biopygen143 -Merlin_5 blast match_part 116 116 . . . Gap=M1;ID=gi%7C238695064%7Cref%7CYP_002922258.1%7C;Parent=biopygen143 -Merlin_5 blast match_part 125 146 . . . Gap=M22;ID=gi%7C238695064%7Cref%7CYP_002922258.1%7C;Parent=biopygen143 -Merlin_5 blast match_part 150 159 . . . Gap=M10;ID=gi%7C238695064%7Cref%7CYP_002922258.1%7C;Parent=biopygen143 -Merlin_5 blast match_part 164 183 . . . Gap=M20;ID=gi%7C238695064%7Cref%7CYP_002922258.1%7C;Parent=biopygen143 -Merlin_5 blast match_part 187 279 . . . Gap=M93;ID=gi%7C238695064%7Cref%7CYP_002922258.1%7C;Parent=biopygen143 -Merlin_5 blast match_part 283 324 . . . Gap=M42;ID=gi%7C238695064%7Cref%7CYP_002922258.1%7C;Parent=biopygen143 -Merlin_5 blast match_part 328 328 . . . Gap=M1;ID=gi%7C238695064%7Cref%7CYP_002922258.1%7C;Parent=biopygen143 -Merlin_5 blast match_part 333 341 . . . Gap=M9;ID=gi%7C238695064%7Cref%7CYP_002922258.1%7C;Parent=biopygen143 -Merlin_5 blast match_part 345 347 . . . Gap=M3;ID=gi%7C238695064%7Cref%7CYP_002922258.1%7C;Parent=biopygen143 -Merlin_5 blast match_part 352 374 . . . Gap=M1 I1 M21;ID=gi%7C238695064%7Cref%7CYP_002922258.1%7C;Parent=biopygen143 -Merlin_5 blast match_part 381 389 . . . Gap=M9;ID=gi%7C238695064%7Cref%7CYP_002922258.1%7C;Parent=biopygen143 -Merlin_5 blast match_part 395 402 . . . Gap=M8;ID=gi%7C238695064%7Cref%7CYP_002922258.1%7C;Parent=biopygen143 -Merlin_5 blast match_part 407 411 . . . Gap=M5;ID=gi%7C238695064%7Cref%7CYP_002922258.1%7C;Parent=biopygen143 -Merlin_5 blast match_part 417 442 . . . Gap=M26;ID=gi%7C238695064%7Cref%7CYP_002922258.1%7C;Parent=biopygen143 -Merlin_5 blast match_part 446 451 . . . Gap=M6;ID=gi%7C238695064%7Cref%7CYP_002922258.1%7C;Parent=biopygen143 -Merlin_5 blast match_part 456 496 . . . Gap=M22 I2 M17;ID=gi%7C238695064%7Cref%7CYP_002922258.1%7C;Parent=biopygen143 -Merlin_5 blast match_part 501 501 . . . Gap=M1;ID=gi%7C238695064%7Cref%7CYP_002922258.1%7C;Parent=biopygen143 -Merlin_5 blast match_part 505 524 . . . Gap=M20;ID=gi%7C238695064%7Cref%7CYP_002922258.1%7C;Parent=biopygen143 -Merlin_5 blast match_part 529 532 . . . Gap=M4;ID=gi%7C238695064%7Cref%7CYP_002922258.1%7C;Parent=biopygen143 -Merlin_5 blast match_part 536 536 . . . Gap=M1;ID=gi%7C238695064%7Cref%7CYP_002922258.1%7C;Parent=biopygen143 -Merlin_5 blast match_part 540 557 . . . Gap=M7 I2 M9;ID=gi%7C238695064%7Cref%7CYP_002922258.1%7C;Parent=biopygen143 -Merlin_5 blast match_part 562 562 . . . Gap=M1;ID=gi%7C238695064%7Cref%7CYP_002922258.1%7C;Parent=biopygen143 -Merlin_5 blast match_part 566 568 . . . Gap=M5;ID=gi%7C238695064%7Cref%7CYP_002922258.1%7C;Parent=biopygen143 -Merlin_5 blast protein_match 11 571 5.33273e-53 . . ID=biopygen144;accession=YP_001469526;description=gp29 baseplate hub subunit tail length determinator %5BEnterobacteria phage Phi1%5D;hit_id=gi%7C157311483%7Cref%7CYP_001469526.1%7C;hit_titles=gi%7C157311483%7Cref%7CYP_001469526.1%7C gp29 baseplate hub subunit tail length determinator %5BEnterobacteria phage Phi1%5D,gi%7C149380687%7Cgb%7CABR24692.1%7C gp29 baseplate hub subunit tail length determinator %5BEnterobacteria phage Phi1%5D;length=577 -Merlin_5 blast match_part 42 69 . . . Gap=M28;ID=gi%7C157311483%7Cref%7CYP_001469526.1%7C;Parent=biopygen144 -Merlin_5 blast match_part 75 91 . . . Gap=M17;ID=gi%7C157311483%7Cref%7CYP_001469526.1%7C;Parent=biopygen144 -Merlin_5 blast match_part 95 102 . . . Gap=M8;ID=gi%7C157311483%7Cref%7CYP_001469526.1%7C;Parent=biopygen144 -Merlin_5 blast match_part 108 112 . . . Gap=M5;ID=gi%7C157311483%7Cref%7CYP_001469526.1%7C;Parent=biopygen144 -Merlin_5 blast match_part 116 116 . . . Gap=M1;ID=gi%7C157311483%7Cref%7CYP_001469526.1%7C;Parent=biopygen144 -Merlin_5 blast match_part 125 146 . . . Gap=M22;ID=gi%7C157311483%7Cref%7CYP_001469526.1%7C;Parent=biopygen144 -Merlin_5 blast match_part 150 159 . . . Gap=M10;ID=gi%7C157311483%7Cref%7CYP_001469526.1%7C;Parent=biopygen144 -Merlin_5 blast match_part 164 183 . . . Gap=M20;ID=gi%7C157311483%7Cref%7CYP_001469526.1%7C;Parent=biopygen144 -Merlin_5 blast match_part 187 279 . . . Gap=M93;ID=gi%7C157311483%7Cref%7CYP_001469526.1%7C;Parent=biopygen144 -Merlin_5 blast match_part 283 324 . . . Gap=M42;ID=gi%7C157311483%7Cref%7CYP_001469526.1%7C;Parent=biopygen144 -Merlin_5 blast match_part 328 328 . . . Gap=M1;ID=gi%7C157311483%7Cref%7CYP_001469526.1%7C;Parent=biopygen144 -Merlin_5 blast match_part 333 341 . . . Gap=M9;ID=gi%7C157311483%7Cref%7CYP_001469526.1%7C;Parent=biopygen144 -Merlin_5 blast match_part 345 347 . . . Gap=M3;ID=gi%7C157311483%7Cref%7CYP_001469526.1%7C;Parent=biopygen144 -Merlin_5 blast match_part 352 374 . . . Gap=M1 I1 M21;ID=gi%7C157311483%7Cref%7CYP_001469526.1%7C;Parent=biopygen144 -Merlin_5 blast match_part 381 389 . . . Gap=M9;ID=gi%7C157311483%7Cref%7CYP_001469526.1%7C;Parent=biopygen144 -Merlin_5 blast match_part 395 402 . . . Gap=M8;ID=gi%7C157311483%7Cref%7CYP_001469526.1%7C;Parent=biopygen144 -Merlin_5 blast match_part 407 411 . . . Gap=M5;ID=gi%7C157311483%7Cref%7CYP_001469526.1%7C;Parent=biopygen144 -Merlin_5 blast match_part 417 442 . . . Gap=M26;ID=gi%7C157311483%7Cref%7CYP_001469526.1%7C;Parent=biopygen144 -Merlin_5 blast match_part 446 451 . . . Gap=M6;ID=gi%7C157311483%7Cref%7CYP_001469526.1%7C;Parent=biopygen144 -Merlin_5 blast match_part 456 496 . . . Gap=M22 I2 M17;ID=gi%7C157311483%7Cref%7CYP_001469526.1%7C;Parent=biopygen144 -Merlin_5 blast match_part 505 505 . . . Gap=M1;ID=gi%7C157311483%7Cref%7CYP_001469526.1%7C;Parent=biopygen144 -Merlin_5 blast match_part 510 524 . . . Gap=M15;ID=gi%7C157311483%7Cref%7CYP_001469526.1%7C;Parent=biopygen144 -Merlin_5 blast match_part 529 532 . . . Gap=M4;ID=gi%7C157311483%7Cref%7CYP_001469526.1%7C;Parent=biopygen144 -Merlin_5 blast match_part 536 536 . . . Gap=M1;ID=gi%7C157311483%7Cref%7CYP_001469526.1%7C;Parent=biopygen144 -Merlin_5 blast match_part 540 557 . . . Gap=M7 I2 M9;ID=gi%7C157311483%7Cref%7CYP_001469526.1%7C;Parent=biopygen144 -Merlin_5 blast match_part 562 562 . . . Gap=M1;ID=gi%7C157311483%7Cref%7CYP_001469526.1%7C;Parent=biopygen144 -Merlin_5 blast match_part 566 568 . . . Gap=M5;ID=gi%7C157311483%7Cref%7CYP_001469526.1%7C;Parent=biopygen144 -Merlin_5 blast protein_match 11 571 5.38583e-53 . . ID=biopygen145;accession=NP_891750;description=tail length regulator %5BEnterobacteria phage RB49%5D;hit_id=gi%7C33620639%7Cref%7CNP_891750.1%7C;hit_titles=gi%7C33620639%7Cref%7CNP_891750.1%7C tail length regulator %5BEnterobacteria phage RB49%5D,gi%7C33438535%7Cgb%7CAAL15120.2%7C tail length regulator %5BEnterobacteria phage RB49%5D;length=577 -Merlin_5 blast match_part 42 91 . . . Gap=M50;ID=gi%7C33620639%7Cref%7CNP_891750.1%7C;Parent=biopygen145 -Merlin_5 blast match_part 95 102 . . . Gap=M8;ID=gi%7C33620639%7Cref%7CNP_891750.1%7C;Parent=biopygen145 -Merlin_5 blast match_part 108 112 . . . Gap=M5;ID=gi%7C33620639%7Cref%7CNP_891750.1%7C;Parent=biopygen145 -Merlin_5 blast match_part 116 116 . . . Gap=M1;ID=gi%7C33620639%7Cref%7CNP_891750.1%7C;Parent=biopygen145 -Merlin_5 blast match_part 125 146 . . . Gap=M22;ID=gi%7C33620639%7Cref%7CNP_891750.1%7C;Parent=biopygen145 -Merlin_5 blast match_part 150 159 . . . Gap=M10;ID=gi%7C33620639%7Cref%7CNP_891750.1%7C;Parent=biopygen145 -Merlin_5 blast match_part 164 183 . . . Gap=M20;ID=gi%7C33620639%7Cref%7CNP_891750.1%7C;Parent=biopygen145 -Merlin_5 blast match_part 187 279 . . . Gap=M93;ID=gi%7C33620639%7Cref%7CNP_891750.1%7C;Parent=biopygen145 -Merlin_5 blast match_part 283 324 . . . Gap=M42;ID=gi%7C33620639%7Cref%7CNP_891750.1%7C;Parent=biopygen145 -Merlin_5 blast match_part 328 328 . . . Gap=M1;ID=gi%7C33620639%7Cref%7CNP_891750.1%7C;Parent=biopygen145 -Merlin_5 blast match_part 333 341 . . . Gap=M9;ID=gi%7C33620639%7Cref%7CNP_891750.1%7C;Parent=biopygen145 -Merlin_5 blast match_part 345 347 . . . Gap=M3;ID=gi%7C33620639%7Cref%7CNP_891750.1%7C;Parent=biopygen145 -Merlin_5 blast match_part 352 354 . . . Gap=M1 I1 M1;ID=gi%7C33620639%7Cref%7CNP_891750.1%7C;Parent=biopygen145 -Merlin_5 blast match_part 358 374 . . . Gap=M17;ID=gi%7C33620639%7Cref%7CNP_891750.1%7C;Parent=biopygen145 -Merlin_5 blast match_part 381 389 . . . Gap=M9;ID=gi%7C33620639%7Cref%7CNP_891750.1%7C;Parent=biopygen145 -Merlin_5 blast match_part 395 402 . . . Gap=M8;ID=gi%7C33620639%7Cref%7CNP_891750.1%7C;Parent=biopygen145 -Merlin_5 blast match_part 407 411 . . . Gap=M5;ID=gi%7C33620639%7Cref%7CNP_891750.1%7C;Parent=biopygen145 -Merlin_5 blast match_part 417 442 . . . Gap=M26;ID=gi%7C33620639%7Cref%7CNP_891750.1%7C;Parent=biopygen145 -Merlin_5 blast match_part 446 451 . . . Gap=M6;ID=gi%7C33620639%7Cref%7CNP_891750.1%7C;Parent=biopygen145 -Merlin_5 blast match_part 456 496 . . . Gap=M22 I2 M17;ID=gi%7C33620639%7Cref%7CNP_891750.1%7C;Parent=biopygen145 -Merlin_5 blast match_part 505 505 . . . Gap=M1;ID=gi%7C33620639%7Cref%7CNP_891750.1%7C;Parent=biopygen145 -Merlin_5 blast match_part 510 524 . . . Gap=M15;ID=gi%7C33620639%7Cref%7CNP_891750.1%7C;Parent=biopygen145 -Merlin_5 blast match_part 529 532 . . . Gap=M4;ID=gi%7C33620639%7Cref%7CNP_891750.1%7C;Parent=biopygen145 -Merlin_5 blast match_part 536 536 . . . Gap=M1;ID=gi%7C33620639%7Cref%7CNP_891750.1%7C;Parent=biopygen145 -Merlin_5 blast match_part 540 557 . . . Gap=M7 I2 M9;ID=gi%7C33620639%7Cref%7CNP_891750.1%7C;Parent=biopygen145 -Merlin_5 blast match_part 562 562 . . . Gap=M1;ID=gi%7C33620639%7Cref%7CNP_891750.1%7C;Parent=biopygen145 -Merlin_5 blast match_part 566 568 . . . Gap=M5;ID=gi%7C33620639%7Cref%7CNP_891750.1%7C;Parent=biopygen145 -Merlin_5 blast protein_match 8 577 4.41683e-51 . . ID=biopygen146;accession=YP_006489094;description=baseplate hub subunit %5BAcinetobacter phage ZZ1%5D;hit_id=gi%7C392973136%7Cref%7CYP_006489094.1%7C;hit_titles=gi%7C392973136%7Cref%7CYP_006489094.1%7C baseplate hub subunit %5BAcinetobacter phage ZZ1%5D,gi%7C390058277%7Cgb%7CAFL47731.1%7C baseplate hub subunit%2C tail length determinator %5BAcinetobacter phage ZZ1%5D;length=585 -Merlin_5 blast match_part 112 122 . . . Gap=M11;ID=gi%7C392973136%7Cref%7CYP_006489094.1%7C;Parent=biopygen146 -Merlin_5 blast match_part 126 128 . . . Gap=M3;ID=gi%7C392973136%7Cref%7CYP_006489094.1%7C;Parent=biopygen146 -Merlin_5 blast match_part 134 141 . . . Gap=M8;ID=gi%7C392973136%7Cref%7CYP_006489094.1%7C;Parent=biopygen146 -Merlin_5 blast match_part 145 155 . . . Gap=M2 I2 M7;ID=gi%7C392973136%7Cref%7CYP_006489094.1%7C;Parent=biopygen146 -Merlin_5 blast match_part 159 164 . . . Gap=M6;ID=gi%7C392973136%7Cref%7CYP_006489094.1%7C;Parent=biopygen146 -Merlin_5 blast match_part 171 183 . . . Gap=M13;ID=gi%7C392973136%7Cref%7CYP_006489094.1%7C;Parent=biopygen146 -Merlin_5 blast match_part 190 194 . . . Gap=M5;ID=gi%7C392973136%7Cref%7CYP_006489094.1%7C;Parent=biopygen146 -Merlin_5 blast match_part 198 225 . . . Gap=M28;ID=gi%7C392973136%7Cref%7CYP_006489094.1%7C;Parent=biopygen146 -Merlin_5 blast match_part 230 266 . . . Gap=M37;ID=gi%7C392973136%7Cref%7CYP_006489094.1%7C;Parent=biopygen146 -Merlin_5 blast match_part 271 302 . . . Gap=M32;ID=gi%7C392973136%7Cref%7CYP_006489094.1%7C;Parent=biopygen146 -Merlin_5 blast match_part 308 317 . . . Gap=M10;ID=gi%7C392973136%7Cref%7CYP_006489094.1%7C;Parent=biopygen146 -Merlin_5 blast match_part 321 341 . . . Gap=M21;ID=gi%7C392973136%7Cref%7CYP_006489094.1%7C;Parent=biopygen146 -Merlin_5 blast match_part 346 379 . . . Gap=M27 I1 M6;ID=gi%7C392973136%7Cref%7CYP_006489094.1%7C;Parent=biopygen146 -Merlin_5 blast match_part 386 386 . . . Gap=M1;ID=gi%7C392973136%7Cref%7CYP_006489094.1%7C;Parent=biopygen146 -Merlin_5 blast match_part 390 391 . . . Gap=M2;ID=gi%7C392973136%7Cref%7CYP_006489094.1%7C;Parent=biopygen146 -Merlin_5 blast match_part 395 396 . . . Gap=M2;ID=gi%7C392973136%7Cref%7CYP_006489094.1%7C;Parent=biopygen146 -Merlin_5 blast match_part 400 405 . . . Gap=M6;ID=gi%7C392973136%7Cref%7CYP_006489094.1%7C;Parent=biopygen146 -Merlin_5 blast match_part 411 428 . . . Gap=M18;ID=gi%7C392973136%7Cref%7CYP_006489094.1%7C;Parent=biopygen146 -Merlin_5 blast match_part 432 442 . . . Gap=M11;ID=gi%7C392973136%7Cref%7CYP_006489094.1%7C;Parent=biopygen146 -Merlin_5 blast match_part 447 452 . . . Gap=M6;ID=gi%7C392973136%7Cref%7CYP_006489094.1%7C;Parent=biopygen146 -Merlin_5 blast match_part 456 461 . . . Gap=M6;ID=gi%7C392973136%7Cref%7CYP_006489094.1%7C;Parent=biopygen146 -Merlin_5 blast match_part 466 507 . . . Gap=M30 I1 M4 I2 M5;ID=gi%7C392973136%7Cref%7CYP_006489094.1%7C;Parent=biopygen146 -Merlin_5 blast match_part 513 526 . . . Gap=M14;ID=gi%7C392973136%7Cref%7CYP_006489094.1%7C;Parent=biopygen146 -Merlin_5 blast match_part 530 535 . . . Gap=M6;ID=gi%7C392973136%7Cref%7CYP_006489094.1%7C;Parent=biopygen146 -Merlin_5 blast match_part 540 540 . . . Gap=M1;ID=gi%7C392973136%7Cref%7CYP_006489094.1%7C;Parent=biopygen146 -Merlin_5 blast match_part 547 552 . . . Gap=M6;ID=gi%7C392973136%7Cref%7CYP_006489094.1%7C;Parent=biopygen146 -Merlin_5 blast match_part 556 576 . . . Gap=M21;ID=gi%7C392973136%7Cref%7CYP_006489094.1%7C;Parent=biopygen146 -Merlin_5 blast protein_match -8 577 1.85312e-46 . . ID=biopygen147;accession=YP_004300776;description=gp29 baseplate hub %5BAcinetobacter phage 133%5D;hit_id=gi%7C326536335%7Cref%7CYP_004300776.1%7C;hit_titles=gi%7C326536335%7Cref%7CYP_004300776.1%7C gp29 baseplate hub %5BAcinetobacter phage 133%5D,gi%7C299483416%7Cgb%7CADJ19510.1%7C gp29 baseplate hub %5BAcinetobacter phage 133%5D;length=582 -Merlin_5 blast match_part 75 85 . . . Gap=M11;ID=gi%7C326536335%7Cref%7CYP_004300776.1%7C;Parent=biopygen147 -Merlin_5 blast match_part 91 122 . . . Gap=M32;ID=gi%7C326536335%7Cref%7CYP_004300776.1%7C;Parent=biopygen147 -Merlin_5 blast match_part 133 137 . . . Gap=M5;ID=gi%7C326536335%7Cref%7CYP_004300776.1%7C;Parent=biopygen147 -Merlin_5 blast match_part 143 143 . . . Gap=M1;ID=gi%7C326536335%7Cref%7CYP_004300776.1%7C;Parent=biopygen147 -Merlin_5 blast match_part 147 149 . . . Gap=M3;ID=gi%7C326536335%7Cref%7CYP_004300776.1%7C;Parent=biopygen147 -Merlin_5 blast match_part 153 155 . . . Gap=M3;ID=gi%7C326536335%7Cref%7CYP_004300776.1%7C;Parent=biopygen147 -Merlin_5 blast match_part 162 163 . . . Gap=M2;ID=gi%7C326536335%7Cref%7CYP_004300776.1%7C;Parent=biopygen147 -Merlin_5 blast match_part 173 175 . . . Gap=M3;ID=gi%7C326536335%7Cref%7CYP_004300776.1%7C;Parent=biopygen147 -Merlin_5 blast match_part 181 191 . . . Gap=M11;ID=gi%7C326536335%7Cref%7CYP_004300776.1%7C;Parent=biopygen147 -Merlin_5 blast match_part 197 197 . . . Gap=M1;ID=gi%7C326536335%7Cref%7CYP_004300776.1%7C;Parent=biopygen147 -Merlin_5 blast match_part 202 265 . . . Gap=M64;ID=gi%7C326536335%7Cref%7CYP_004300776.1%7C;Parent=biopygen147 -Merlin_5 blast match_part 270 272 . . . Gap=M3;ID=gi%7C326536335%7Cref%7CYP_004300776.1%7C;Parent=biopygen147 -Merlin_5 blast match_part 276 302 . . . Gap=M27;ID=gi%7C326536335%7Cref%7CYP_004300776.1%7C;Parent=biopygen147 -Merlin_5 blast match_part 306 308 . . . Gap=M3;ID=gi%7C326536335%7Cref%7CYP_004300776.1%7C;Parent=biopygen147 -Merlin_5 blast match_part 312 329 . . . Gap=M18;ID=gi%7C326536335%7Cref%7CYP_004300776.1%7C;Parent=biopygen147 -Merlin_5 blast match_part 333 341 . . . Gap=M9;ID=gi%7C326536335%7Cref%7CYP_004300776.1%7C;Parent=biopygen147 -Merlin_5 blast match_part 346 353 . . . Gap=M8;ID=gi%7C326536335%7Cref%7CYP_004300776.1%7C;Parent=biopygen147 -Merlin_5 blast match_part 357 379 . . . Gap=M23;ID=gi%7C326536335%7Cref%7CYP_004300776.1%7C;Parent=biopygen147 -Merlin_5 blast match_part 386 386 . . . Gap=M1;ID=gi%7C326536335%7Cref%7CYP_004300776.1%7C;Parent=biopygen147 -Merlin_5 blast match_part 391 391 . . . Gap=M1;ID=gi%7C326536335%7Cref%7CYP_004300776.1%7C;Parent=biopygen147 -Merlin_5 blast match_part 395 410 . . . Gap=M16;ID=gi%7C326536335%7Cref%7CYP_004300776.1%7C;Parent=biopygen147 -Merlin_5 blast match_part 416 428 . . . Gap=M13;ID=gi%7C326536335%7Cref%7CYP_004300776.1%7C;Parent=biopygen147 -Merlin_5 blast match_part 432 453 . . . Gap=M22;ID=gi%7C326536335%7Cref%7CYP_004300776.1%7C;Parent=biopygen147 -Merlin_5 blast match_part 459 498 . . . Gap=M40;ID=gi%7C326536335%7Cref%7CYP_004300776.1%7C;Parent=biopygen147 -Merlin_5 blast match_part 505 505 . . . Gap=M1;ID=gi%7C326536335%7Cref%7CYP_004300776.1%7C;Parent=biopygen147 -Merlin_5 blast match_part 509 516 . . . Gap=M8;ID=gi%7C326536335%7Cref%7CYP_004300776.1%7C;Parent=biopygen147 -Merlin_5 blast match_part 523 524 . . . Gap=M2;ID=gi%7C326536335%7Cref%7CYP_004300776.1%7C;Parent=biopygen147 -Merlin_5 blast match_part 529 529 . . . Gap=M1;ID=gi%7C326536335%7Cref%7CYP_004300776.1%7C;Parent=biopygen147 -Merlin_5 blast match_part 534 544 . . . Gap=M11;ID=gi%7C326536335%7Cref%7CYP_004300776.1%7C;Parent=biopygen147 -Merlin_5 blast match_part 549 556 . . . Gap=M8;ID=gi%7C326536335%7Cref%7CYP_004300776.1%7C;Parent=biopygen147 -Merlin_5 blast match_part 561 576 . . . Gap=M16;ID=gi%7C326536335%7Cref%7CYP_004300776.1%7C;Parent=biopygen147 -Merlin_5 blast protein_match 15 577 5.19477e-43 . . ID=biopygen148;accession=YP_004010338;description=gp29 baseplate hub subunit %5BAcinetobacter phage Acj9%5D;hit_id=gi%7C311993473%7Cref%7CYP_004010338.1%7C;hit_titles=gi%7C311993473%7Cref%7CYP_004010338.1%7C gp29 baseplate hub subunit %5BAcinetobacter phage Acj9%5D,gi%7C295917430%7Cgb%7CADG60101.1%7C gp29 baseplate hub subunit %5BAcinetobacter phage Acj9%5D;length=572 -Merlin_5 blast match_part 86 115 . . . Gap=M30;ID=gi%7C311993473%7Cref%7CYP_004010338.1%7C;Parent=biopygen148 -Merlin_5 blast match_part 128 129 . . . Gap=M2;ID=gi%7C311993473%7Cref%7CYP_004010338.1%7C;Parent=biopygen148 -Merlin_5 blast match_part 133 140 . . . Gap=M6 I1 M1;ID=gi%7C311993473%7Cref%7CYP_004010338.1%7C;Parent=biopygen148 -Merlin_5 blast match_part 145 147 . . . Gap=M3;ID=gi%7C311993473%7Cref%7CYP_004010338.1%7C;Parent=biopygen148 -Merlin_5 blast match_part 153 157 . . . Gap=M5;ID=gi%7C311993473%7Cref%7CYP_004010338.1%7C;Parent=biopygen148 -Merlin_5 blast match_part 171 192 . . . Gap=M22;ID=gi%7C311993473%7Cref%7CYP_004010338.1%7C;Parent=biopygen148 -Merlin_5 blast match_part 197 198 . . . Gap=M2;ID=gi%7C311993473%7Cref%7CYP_004010338.1%7C;Parent=biopygen148 -Merlin_5 blast match_part 202 266 . . . Gap=M65;ID=gi%7C311993473%7Cref%7CYP_004010338.1%7C;Parent=biopygen148 -Merlin_5 blast match_part 270 302 . . . Gap=M33;ID=gi%7C311993473%7Cref%7CYP_004010338.1%7C;Parent=biopygen148 -Merlin_5 blast match_part 306 317 . . . Gap=M12;ID=gi%7C311993473%7Cref%7CYP_004010338.1%7C;Parent=biopygen148 -Merlin_5 blast match_part 322 333 . . . Gap=M12;ID=gi%7C311993473%7Cref%7CYP_004010338.1%7C;Parent=biopygen148 -Merlin_5 blast match_part 337 341 . . . Gap=M5;ID=gi%7C311993473%7Cref%7CYP_004010338.1%7C;Parent=biopygen148 -Merlin_5 blast match_part 346 379 . . . Gap=M27 I1 M6;ID=gi%7C311993473%7Cref%7CYP_004010338.1%7C;Parent=biopygen148 -Merlin_5 blast match_part 388 388 . . . Gap=M1;ID=gi%7C311993473%7Cref%7CYP_004010338.1%7C;Parent=biopygen148 -Merlin_5 blast match_part 392 416 . . . Gap=M4 I1 M20;ID=gi%7C311993473%7Cref%7CYP_004010338.1%7C;Parent=biopygen148 -Merlin_5 blast match_part 420 426 . . . Gap=M7;ID=gi%7C311993473%7Cref%7CYP_004010338.1%7C;Parent=biopygen148 -Merlin_5 blast match_part 432 442 . . . Gap=M11;ID=gi%7C311993473%7Cref%7CYP_004010338.1%7C;Parent=biopygen148 -Merlin_5 blast match_part 447 450 . . . Gap=M4;ID=gi%7C311993473%7Cref%7CYP_004010338.1%7C;Parent=biopygen148 -Merlin_5 blast match_part 460 461 . . . Gap=M2;ID=gi%7C311993473%7Cref%7CYP_004010338.1%7C;Parent=biopygen148 -Merlin_5 blast match_part 466 471 . . . Gap=M6;ID=gi%7C311993473%7Cref%7CYP_004010338.1%7C;Parent=biopygen148 -Merlin_5 blast match_part 475 488 . . . Gap=M14;ID=gi%7C311993473%7Cref%7CYP_004010338.1%7C;Parent=biopygen148 -Merlin_5 blast match_part 492 500 . . . Gap=M1 I1 M7;ID=gi%7C311993473%7Cref%7CYP_004010338.1%7C;Parent=biopygen148 -Merlin_5 blast match_part 505 536 . . . Gap=M4 I2 M26;ID=gi%7C311993473%7Cref%7CYP_004010338.1%7C;Parent=biopygen148 -Merlin_5 blast match_part 540 540 . . . Gap=M1;ID=gi%7C311993473%7Cref%7CYP_004010338.1%7C;Parent=biopygen148 -Merlin_5 blast match_part 545 547 . . . Gap=M3;ID=gi%7C311993473%7Cref%7CYP_004010338.1%7C;Parent=biopygen148 -Merlin_5 blast match_part 552 556 . . . Gap=M5;ID=gi%7C311993473%7Cref%7CYP_004010338.1%7C;Parent=biopygen148 -Merlin_5 blast match_part 561 576 . . . Gap=M16;ID=gi%7C311993473%7Cref%7CYP_004010338.1%7C;Parent=biopygen148 -Merlin_5 blast protein_match 9 570 5.93083e-36 . . ID=biopygen149;accession=YP_003969101;description=unnamed protein product %5BAeromonas phage phiAS4%5D;hit_id=gi%7C310722277%7Cref%7CYP_003969101.1%7C;hit_titles=gi%7C310722277%7Cref%7CYP_003969101.1%7C unnamed protein product %5BAeromonas phage phiAS4%5D,gi%7C306021120%7Cgb%7CADM79655.1%7C baseplate hub %5BAeromonas phage phiAS4%5D;length=565 -Merlin_5 blast match_part 44 62 . . . Gap=M15 I1 M3;ID=gi%7C310722277%7Cref%7CYP_003969101.1%7C;Parent=biopygen149 -Merlin_5 blast match_part 68 95 . . . Gap=M28;ID=gi%7C310722277%7Cref%7CYP_003969101.1%7C;Parent=biopygen149 -Merlin_5 blast match_part 101 111 . . . Gap=M11;ID=gi%7C310722277%7Cref%7CYP_003969101.1%7C;Parent=biopygen149 -Merlin_5 blast match_part 115 129 . . . Gap=M15;ID=gi%7C310722277%7Cref%7CYP_003969101.1%7C;Parent=biopygen149 -Merlin_5 blast match_part 133 137 . . . Gap=M5;ID=gi%7C310722277%7Cref%7CYP_003969101.1%7C;Parent=biopygen149 -Merlin_5 blast match_part 141 141 . . . Gap=M1;ID=gi%7C310722277%7Cref%7CYP_003969101.1%7C;Parent=biopygen149 -Merlin_5 blast match_part 148 153 . . . Gap=M6;ID=gi%7C310722277%7Cref%7CYP_003969101.1%7C;Parent=biopygen149 -Merlin_5 blast match_part 165 168 . . . Gap=M4;ID=gi%7C310722277%7Cref%7CYP_003969101.1%7C;Parent=biopygen149 -Merlin_5 blast match_part 175 200 . . . Gap=M26;ID=gi%7C310722277%7Cref%7CYP_003969101.1%7C;Parent=biopygen149 -Merlin_5 blast match_part 204 227 . . . Gap=M24;ID=gi%7C310722277%7Cref%7CYP_003969101.1%7C;Parent=biopygen149 -Merlin_5 blast match_part 231 270 . . . Gap=M40;ID=gi%7C310722277%7Cref%7CYP_003969101.1%7C;Parent=biopygen149 -Merlin_5 blast match_part 277 346 . . . Gap=M70;ID=gi%7C310722277%7Cref%7CYP_003969101.1%7C;Parent=biopygen149 -Merlin_5 blast match_part 354 375 . . . Gap=M22;ID=gi%7C310722277%7Cref%7CYP_003969101.1%7C;Parent=biopygen149 -Merlin_5 blast match_part 388 393 . . . Gap=M3 I1 M2;ID=gi%7C310722277%7Cref%7CYP_003969101.1%7C;Parent=biopygen149 -Merlin_5 blast match_part 397 402 . . . Gap=M6;ID=gi%7C310722277%7Cref%7CYP_003969101.1%7C;Parent=biopygen149 -Merlin_5 blast match_part 410 417 . . . Gap=M8;ID=gi%7C310722277%7Cref%7CYP_003969101.1%7C;Parent=biopygen149 -Merlin_5 blast match_part 422 432 . . . Gap=M11;ID=gi%7C310722277%7Cref%7CYP_003969101.1%7C;Parent=biopygen149 -Merlin_5 blast match_part 440 446 . . . Gap=M7;ID=gi%7C310722277%7Cref%7CYP_003969101.1%7C;Parent=biopygen149 -Merlin_5 blast match_part 451 478 . . . Gap=M28;ID=gi%7C310722277%7Cref%7CYP_003969101.1%7C;Parent=biopygen149 -Merlin_5 blast match_part 482 487 . . . Gap=M6;ID=gi%7C310722277%7Cref%7CYP_003969101.1%7C;Parent=biopygen149 -Merlin_5 blast match_part 493 496 . . . Gap=M4;ID=gi%7C310722277%7Cref%7CYP_003969101.1%7C;Parent=biopygen149 -Merlin_5 blast match_part 501 501 . . . Gap=M1;ID=gi%7C310722277%7Cref%7CYP_003969101.1%7C;Parent=biopygen149 -Merlin_5 blast match_part 507 511 . . . Gap=M5;ID=gi%7C310722277%7Cref%7CYP_003969101.1%7C;Parent=biopygen149 -Merlin_5 blast match_part 515 515 . . . Gap=M1;ID=gi%7C310722277%7Cref%7CYP_003969101.1%7C;Parent=biopygen149 -Merlin_5 blast match_part 519 526 . . . Gap=M8;ID=gi%7C310722277%7Cref%7CYP_003969101.1%7C;Parent=biopygen149 -Merlin_5 blast match_part 530 534 . . . Gap=M5;ID=gi%7C310722277%7Cref%7CYP_003969101.1%7C;Parent=biopygen149 -Merlin_5 blast match_part 540 557 . . . Gap=M18;ID=gi%7C310722277%7Cref%7CYP_003969101.1%7C;Parent=biopygen149 -Merlin_5 blast match_part 562 569 . . . Gap=M8;ID=gi%7C310722277%7Cref%7CYP_003969101.1%7C;Parent=biopygen149 -Merlin_5 blast protein_match 9 570 8.25687e-36 . . ID=biopygen150;accession=YP_007677896;description=baseplate hub subunit tail length determinator %5BAeromonas phage Aes012%5D;hit_id=gi%7C472438116%7Cref%7CYP_007677896.1%7C;hit_titles=gi%7C472438116%7Cref%7CYP_007677896.1%7C baseplate hub subunit tail length determinator %5BAeromonas phage Aes012%5D,gi%7C395653254%7Cgb%7CAFN69809.1%7C baseplate hub subunit tail length determinator %5BAeromonas phage Aes012%5D;length=565 -Merlin_5 blast match_part 44 62 . . . Gap=M15 I1 M3;ID=gi%7C472438116%7Cref%7CYP_007677896.1%7C;Parent=biopygen150 -Merlin_5 blast match_part 68 95 . . . Gap=M28;ID=gi%7C472438116%7Cref%7CYP_007677896.1%7C;Parent=biopygen150 -Merlin_5 blast match_part 101 111 . . . Gap=M11;ID=gi%7C472438116%7Cref%7CYP_007677896.1%7C;Parent=biopygen150 -Merlin_5 blast match_part 115 129 . . . Gap=M15;ID=gi%7C472438116%7Cref%7CYP_007677896.1%7C;Parent=biopygen150 -Merlin_5 blast match_part 133 137 . . . Gap=M5;ID=gi%7C472438116%7Cref%7CYP_007677896.1%7C;Parent=biopygen150 -Merlin_5 blast match_part 141 143 . . . Gap=M3;ID=gi%7C472438116%7Cref%7CYP_007677896.1%7C;Parent=biopygen150 -Merlin_5 blast match_part 148 153 . . . Gap=M6;ID=gi%7C472438116%7Cref%7CYP_007677896.1%7C;Parent=biopygen150 -Merlin_5 blast match_part 165 168 . . . Gap=M4;ID=gi%7C472438116%7Cref%7CYP_007677896.1%7C;Parent=biopygen150 -Merlin_5 blast match_part 175 200 . . . Gap=M26;ID=gi%7C472438116%7Cref%7CYP_007677896.1%7C;Parent=biopygen150 -Merlin_5 blast match_part 204 227 . . . Gap=M24;ID=gi%7C472438116%7Cref%7CYP_007677896.1%7C;Parent=biopygen150 -Merlin_5 blast match_part 231 270 . . . Gap=M40;ID=gi%7C472438116%7Cref%7CYP_007677896.1%7C;Parent=biopygen150 -Merlin_5 blast match_part 277 346 . . . Gap=M70;ID=gi%7C472438116%7Cref%7CYP_007677896.1%7C;Parent=biopygen150 -Merlin_5 blast match_part 354 375 . . . Gap=M22;ID=gi%7C472438116%7Cref%7CYP_007677896.1%7C;Parent=biopygen150 -Merlin_5 blast match_part 388 393 . . . Gap=M3 I1 M2;ID=gi%7C472438116%7Cref%7CYP_007677896.1%7C;Parent=biopygen150 -Merlin_5 blast match_part 397 402 . . . Gap=M6;ID=gi%7C472438116%7Cref%7CYP_007677896.1%7C;Parent=biopygen150 -Merlin_5 blast match_part 410 417 . . . Gap=M8;ID=gi%7C472438116%7Cref%7CYP_007677896.1%7C;Parent=biopygen150 -Merlin_5 blast match_part 422 432 . . . Gap=M11;ID=gi%7C472438116%7Cref%7CYP_007677896.1%7C;Parent=biopygen150 -Merlin_5 blast match_part 440 446 . . . Gap=M7;ID=gi%7C472438116%7Cref%7CYP_007677896.1%7C;Parent=biopygen150 -Merlin_5 blast match_part 451 478 . . . Gap=M28;ID=gi%7C472438116%7Cref%7CYP_007677896.1%7C;Parent=biopygen150 -Merlin_5 blast match_part 482 487 . . . Gap=M6;ID=gi%7C472438116%7Cref%7CYP_007677896.1%7C;Parent=biopygen150 -Merlin_5 blast match_part 493 496 . . . Gap=M4;ID=gi%7C472438116%7Cref%7CYP_007677896.1%7C;Parent=biopygen150 -Merlin_5 blast match_part 501 501 . . . Gap=M1;ID=gi%7C472438116%7Cref%7CYP_007677896.1%7C;Parent=biopygen150 -Merlin_5 blast match_part 507 511 . . . Gap=M5;ID=gi%7C472438116%7Cref%7CYP_007677896.1%7C;Parent=biopygen150 -Merlin_5 blast match_part 515 515 . . . Gap=M1;ID=gi%7C472438116%7Cref%7CYP_007677896.1%7C;Parent=biopygen150 -Merlin_5 blast match_part 519 526 . . . Gap=M8;ID=gi%7C472438116%7Cref%7CYP_007677896.1%7C;Parent=biopygen150 -Merlin_5 blast match_part 530 534 . . . Gap=M5;ID=gi%7C472438116%7Cref%7CYP_007677896.1%7C;Parent=biopygen150 -Merlin_5 blast match_part 543 557 . . . Gap=M15;ID=gi%7C472438116%7Cref%7CYP_007677896.1%7C;Parent=biopygen150 -Merlin_5 blast match_part 562 569 . . . Gap=M8;ID=gi%7C472438116%7Cref%7CYP_007677896.1%7C;Parent=biopygen150 -Merlin_5 blast protein_match -1 577 2.04985e-35 . . ID=biopygen151;accession=YP_004009814;description=gp29 baseplate hub subunit %5BAcinetobacter phage Acj61%5D;hit_id=gi%7C311992947%7Cref%7CYP_004009814.1%7C;hit_titles=gi%7C311992947%7Cref%7CYP_004009814.1%7C gp29 baseplate hub subunit %5BAcinetobacter phage Acj61%5D,gi%7C295815236%7Cgb%7CADG36162.1%7C gp29 baseplate hub subunit %5BAcinetobacter phage Acj61%5D;length=597 -Merlin_5 blast match_part 44 68 . . . Gap=M25;ID=gi%7C311992947%7Cref%7CYP_004009814.1%7C;Parent=biopygen151 -Merlin_5 blast match_part 72 82 . . . Gap=M11;ID=gi%7C311992947%7Cref%7CYP_004009814.1%7C;Parent=biopygen151 -Merlin_5 blast match_part 87 93 . . . Gap=M7;ID=gi%7C311992947%7Cref%7CYP_004009814.1%7C;Parent=biopygen151 -Merlin_5 blast match_part 98 105 . . . Gap=M8;ID=gi%7C311992947%7Cref%7CYP_004009814.1%7C;Parent=biopygen151 -Merlin_5 blast match_part 109 117 . . . Gap=M9;ID=gi%7C311992947%7Cref%7CYP_004009814.1%7C;Parent=biopygen151 -Merlin_5 blast match_part 121 129 . . . Gap=M9;ID=gi%7C311992947%7Cref%7CYP_004009814.1%7C;Parent=biopygen151 -Merlin_5 blast match_part 133 138 . . . Gap=M6;ID=gi%7C311992947%7Cref%7CYP_004009814.1%7C;Parent=biopygen151 -Merlin_5 blast match_part 145 158 . . . Gap=M14;ID=gi%7C311992947%7Cref%7CYP_004009814.1%7C;Parent=biopygen151 -Merlin_5 blast match_part 170 170 . . . Gap=M1;ID=gi%7C311992947%7Cref%7CYP_004009814.1%7C;Parent=biopygen151 -Merlin_5 blast match_part 177 185 . . . Gap=M9;ID=gi%7C311992947%7Cref%7CYP_004009814.1%7C;Parent=biopygen151 -Merlin_5 blast match_part 189 200 . . . Gap=M12;ID=gi%7C311992947%7Cref%7CYP_004009814.1%7C;Parent=biopygen151 -Merlin_5 blast match_part 204 225 . . . Gap=M22;ID=gi%7C311992947%7Cref%7CYP_004009814.1%7C;Parent=biopygen151 -Merlin_5 blast match_part 230 260 . . . Gap=M31;ID=gi%7C311992947%7Cref%7CYP_004009814.1%7C;Parent=biopygen151 -Merlin_5 blast match_part 264 266 . . . Gap=M3;ID=gi%7C311992947%7Cref%7CYP_004009814.1%7C;Parent=biopygen151 -Merlin_5 blast match_part 271 273 . . . Gap=M3;ID=gi%7C311992947%7Cref%7CYP_004009814.1%7C;Parent=biopygen151 -Merlin_5 blast match_part 277 302 . . . Gap=M26;ID=gi%7C311992947%7Cref%7CYP_004009814.1%7C;Parent=biopygen151 -Merlin_5 blast match_part 306 309 . . . Gap=M4;ID=gi%7C311992947%7Cref%7CYP_004009814.1%7C;Parent=biopygen151 -Merlin_5 blast match_part 313 317 . . . Gap=M5;ID=gi%7C311992947%7Cref%7CYP_004009814.1%7C;Parent=biopygen151 -Merlin_5 blast match_part 321 324 . . . Gap=M4;ID=gi%7C311992947%7Cref%7CYP_004009814.1%7C;Parent=biopygen151 -Merlin_5 blast match_part 328 334 . . . Gap=M7;ID=gi%7C311992947%7Cref%7CYP_004009814.1%7C;Parent=biopygen151 -Merlin_5 blast match_part 338 376 . . . Gap=M39;ID=gi%7C311992947%7Cref%7CYP_004009814.1%7C;Parent=biopygen151 -Merlin_5 blast match_part 381 386 . . . Gap=M6;ID=gi%7C311992947%7Cref%7CYP_004009814.1%7C;Parent=biopygen151 -Merlin_5 blast match_part 391 391 . . . Gap=M1;ID=gi%7C311992947%7Cref%7CYP_004009814.1%7C;Parent=biopygen151 -Merlin_5 blast match_part 395 401 . . . Gap=M7;ID=gi%7C311992947%7Cref%7CYP_004009814.1%7C;Parent=biopygen151 -Merlin_5 blast match_part 406 415 . . . Gap=M10;ID=gi%7C311992947%7Cref%7CYP_004009814.1%7C;Parent=biopygen151 -Merlin_5 blast match_part 419 428 . . . Gap=M10;ID=gi%7C311992947%7Cref%7CYP_004009814.1%7C;Parent=biopygen151 -Merlin_5 blast match_part 432 444 . . . Gap=M13;ID=gi%7C311992947%7Cref%7CYP_004009814.1%7C;Parent=biopygen151 -Merlin_5 blast match_part 449 461 . . . Gap=M13;ID=gi%7C311992947%7Cref%7CYP_004009814.1%7C;Parent=biopygen151 -Merlin_5 blast match_part 466 475 . . . Gap=M10;ID=gi%7C311992947%7Cref%7CYP_004009814.1%7C;Parent=biopygen151 -Merlin_5 blast match_part 479 498 . . . Gap=M20;ID=gi%7C311992947%7Cref%7CYP_004009814.1%7C;Parent=biopygen151 -Merlin_5 blast match_part 506 507 . . . Gap=M2;ID=gi%7C311992947%7Cref%7CYP_004009814.1%7C;Parent=biopygen151 -Merlin_5 blast match_part 511 536 . . . Gap=M19 I2 M5;ID=gi%7C311992947%7Cref%7CYP_004009814.1%7C;Parent=biopygen151 -Merlin_5 blast match_part 540 556 . . . Gap=M17;ID=gi%7C311992947%7Cref%7CYP_004009814.1%7C;Parent=biopygen151 -Merlin_5 blast match_part 562 576 . . . Gap=M15;ID=gi%7C311992947%7Cref%7CYP_004009814.1%7C;Parent=biopygen151 -Merlin_5 blast protein_match 9 570 5.89358e-35 . . ID=biopygen152;accession=AFQ22670;description=baseplate hub %5BStenotrophomonas phage IME13%5D;hit_id=gi%7C401824980%7Cgb%7CAFQ22670.1%7C;hit_titles=gi%7C401824980%7Cgb%7CAFQ22670.1%7C baseplate hub %5BStenotrophomonas phage IME13%5D;length=565 -Merlin_5 blast match_part 44 62 . . . Gap=M15 I1 M3;ID=gi%7C401824980%7Cgb%7CAFQ22670.1%7C;Parent=biopygen152 -Merlin_5 blast match_part 68 95 . . . Gap=M28;ID=gi%7C401824980%7Cgb%7CAFQ22670.1%7C;Parent=biopygen152 -Merlin_5 blast match_part 101 111 . . . Gap=M11;ID=gi%7C401824980%7Cgb%7CAFQ22670.1%7C;Parent=biopygen152 -Merlin_5 blast match_part 115 129 . . . Gap=M15;ID=gi%7C401824980%7Cgb%7CAFQ22670.1%7C;Parent=biopygen152 -Merlin_5 blast match_part 133 137 . . . Gap=M5;ID=gi%7C401824980%7Cgb%7CAFQ22670.1%7C;Parent=biopygen152 -Merlin_5 blast match_part 141 141 . . . Gap=M1;ID=gi%7C401824980%7Cgb%7CAFQ22670.1%7C;Parent=biopygen152 -Merlin_5 blast match_part 148 153 . . . Gap=M6;ID=gi%7C401824980%7Cgb%7CAFQ22670.1%7C;Parent=biopygen152 -Merlin_5 blast match_part 165 168 . . . Gap=M4;ID=gi%7C401824980%7Cgb%7CAFQ22670.1%7C;Parent=biopygen152 -Merlin_5 blast match_part 175 200 . . . Gap=M26;ID=gi%7C401824980%7Cgb%7CAFQ22670.1%7C;Parent=biopygen152 -Merlin_5 blast match_part 204 227 . . . Gap=M24;ID=gi%7C401824980%7Cgb%7CAFQ22670.1%7C;Parent=biopygen152 -Merlin_5 blast match_part 231 270 . . . Gap=M40;ID=gi%7C401824980%7Cgb%7CAFQ22670.1%7C;Parent=biopygen152 -Merlin_5 blast match_part 277 346 . . . Gap=M70;ID=gi%7C401824980%7Cgb%7CAFQ22670.1%7C;Parent=biopygen152 -Merlin_5 blast match_part 354 375 . . . Gap=M22;ID=gi%7C401824980%7Cgb%7CAFQ22670.1%7C;Parent=biopygen152 -Merlin_5 blast match_part 388 393 . . . Gap=M3 I1 M2;ID=gi%7C401824980%7Cgb%7CAFQ22670.1%7C;Parent=biopygen152 -Merlin_5 blast match_part 397 402 . . . Gap=M6;ID=gi%7C401824980%7Cgb%7CAFQ22670.1%7C;Parent=biopygen152 -Merlin_5 blast match_part 410 417 . . . Gap=M8;ID=gi%7C401824980%7Cgb%7CAFQ22670.1%7C;Parent=biopygen152 -Merlin_5 blast match_part 422 432 . . . Gap=M11;ID=gi%7C401824980%7Cgb%7CAFQ22670.1%7C;Parent=biopygen152 -Merlin_5 blast match_part 440 446 . . . Gap=M7;ID=gi%7C401824980%7Cgb%7CAFQ22670.1%7C;Parent=biopygen152 -Merlin_5 blast match_part 451 478 . . . Gap=M28;ID=gi%7C401824980%7Cgb%7CAFQ22670.1%7C;Parent=biopygen152 -Merlin_5 blast match_part 482 487 . . . Gap=M6;ID=gi%7C401824980%7Cgb%7CAFQ22670.1%7C;Parent=biopygen152 -Merlin_5 blast match_part 493 496 . . . Gap=M4;ID=gi%7C401824980%7Cgb%7CAFQ22670.1%7C;Parent=biopygen152 -Merlin_5 blast match_part 501 501 . . . Gap=M1;ID=gi%7C401824980%7Cgb%7CAFQ22670.1%7C;Parent=biopygen152 -Merlin_5 blast match_part 507 511 . . . Gap=M5;ID=gi%7C401824980%7Cgb%7CAFQ22670.1%7C;Parent=biopygen152 -Merlin_5 blast match_part 515 515 . . . Gap=M1;ID=gi%7C401824980%7Cgb%7CAFQ22670.1%7C;Parent=biopygen152 -Merlin_5 blast match_part 519 526 . . . Gap=M8;ID=gi%7C401824980%7Cgb%7CAFQ22670.1%7C;Parent=biopygen152 -Merlin_5 blast match_part 530 534 . . . Gap=M5;ID=gi%7C401824980%7Cgb%7CAFQ22670.1%7C;Parent=biopygen152 -Merlin_5 blast match_part 543 557 . . . Gap=M15;ID=gi%7C401824980%7Cgb%7CAFQ22670.1%7C;Parent=biopygen152 -Merlin_5 blast match_part 562 569 . . . Gap=M8;ID=gi%7C401824980%7Cgb%7CAFQ22670.1%7C;Parent=biopygen152 -Merlin_5 blast protein_match 9 570 2.35249e-34 . . ID=biopygen153;accession=YP_656409;description=gp29 base plate hub %5BAeromonas phage 25%5D;hit_id=gi%7C109290160%7Cref%7CYP_656409.1%7C;hit_titles=gi%7C109290160%7Cref%7CYP_656409.1%7C gp29 base plate hub %5BAeromonas phage 25%5D,gi%7C104345833%7Cgb%7CABF72733.1%7C gp29 base plate hub %5BAeromonas phage 25%5D;length=565 -Merlin_5 blast match_part 44 62 . . . Gap=M15 I1 M3;ID=gi%7C109290160%7Cref%7CYP_656409.1%7C;Parent=biopygen153 -Merlin_5 blast match_part 68 95 . . . Gap=M28;ID=gi%7C109290160%7Cref%7CYP_656409.1%7C;Parent=biopygen153 -Merlin_5 blast match_part 101 111 . . . Gap=M11;ID=gi%7C109290160%7Cref%7CYP_656409.1%7C;Parent=biopygen153 -Merlin_5 blast match_part 115 129 . . . Gap=M15;ID=gi%7C109290160%7Cref%7CYP_656409.1%7C;Parent=biopygen153 -Merlin_5 blast match_part 133 137 . . . Gap=M5;ID=gi%7C109290160%7Cref%7CYP_656409.1%7C;Parent=biopygen153 -Merlin_5 blast match_part 141 141 . . . Gap=M1;ID=gi%7C109290160%7Cref%7CYP_656409.1%7C;Parent=biopygen153 -Merlin_5 blast match_part 148 153 . . . Gap=M6;ID=gi%7C109290160%7Cref%7CYP_656409.1%7C;Parent=biopygen153 -Merlin_5 blast match_part 165 168 . . . Gap=M4;ID=gi%7C109290160%7Cref%7CYP_656409.1%7C;Parent=biopygen153 -Merlin_5 blast match_part 175 188 . . . Gap=M14;ID=gi%7C109290160%7Cref%7CYP_656409.1%7C;Parent=biopygen153 -Merlin_5 blast match_part 192 200 . . . Gap=M9;ID=gi%7C109290160%7Cref%7CYP_656409.1%7C;Parent=biopygen153 -Merlin_5 blast match_part 204 227 . . . Gap=M24;ID=gi%7C109290160%7Cref%7CYP_656409.1%7C;Parent=biopygen153 -Merlin_5 blast match_part 231 270 . . . Gap=M40;ID=gi%7C109290160%7Cref%7CYP_656409.1%7C;Parent=biopygen153 -Merlin_5 blast match_part 277 346 . . . Gap=M70;ID=gi%7C109290160%7Cref%7CYP_656409.1%7C;Parent=biopygen153 -Merlin_5 blast match_part 354 375 . . . Gap=M22;ID=gi%7C109290160%7Cref%7CYP_656409.1%7C;Parent=biopygen153 -Merlin_5 blast match_part 388 393 . . . Gap=M3 I1 M2;ID=gi%7C109290160%7Cref%7CYP_656409.1%7C;Parent=biopygen153 -Merlin_5 blast match_part 397 402 . . . Gap=M6;ID=gi%7C109290160%7Cref%7CYP_656409.1%7C;Parent=biopygen153 -Merlin_5 blast match_part 410 417 . . . Gap=M8;ID=gi%7C109290160%7Cref%7CYP_656409.1%7C;Parent=biopygen153 -Merlin_5 blast match_part 422 432 . . . Gap=M11;ID=gi%7C109290160%7Cref%7CYP_656409.1%7C;Parent=biopygen153 -Merlin_5 blast match_part 440 446 . . . Gap=M7;ID=gi%7C109290160%7Cref%7CYP_656409.1%7C;Parent=biopygen153 -Merlin_5 blast match_part 451 478 . . . Gap=M28;ID=gi%7C109290160%7Cref%7CYP_656409.1%7C;Parent=biopygen153 -Merlin_5 blast match_part 482 487 . . . Gap=M6;ID=gi%7C109290160%7Cref%7CYP_656409.1%7C;Parent=biopygen153 -Merlin_5 blast match_part 493 496 . . . Gap=M4;ID=gi%7C109290160%7Cref%7CYP_656409.1%7C;Parent=biopygen153 -Merlin_5 blast match_part 501 501 . . . Gap=M1;ID=gi%7C109290160%7Cref%7CYP_656409.1%7C;Parent=biopygen153 -Merlin_5 blast match_part 507 511 . . . Gap=M5;ID=gi%7C109290160%7Cref%7CYP_656409.1%7C;Parent=biopygen153 -Merlin_5 blast match_part 515 515 . . . Gap=M1;ID=gi%7C109290160%7Cref%7CYP_656409.1%7C;Parent=biopygen153 -Merlin_5 blast match_part 519 526 . . . Gap=M8;ID=gi%7C109290160%7Cref%7CYP_656409.1%7C;Parent=biopygen153 -Merlin_5 blast match_part 530 534 . . . Gap=M5;ID=gi%7C109290160%7Cref%7CYP_656409.1%7C;Parent=biopygen153 -Merlin_5 blast match_part 543 557 . . . Gap=M15;ID=gi%7C109290160%7Cref%7CYP_656409.1%7C;Parent=biopygen153 -Merlin_5 blast match_part 562 569 . . . Gap=M8;ID=gi%7C109290160%7Cref%7CYP_656409.1%7C;Parent=biopygen153 -Merlin_5 blast protein_match 9 570 3.57946e-34 . . ID=biopygen154;accession=YP_007010857;description=baseplate hub subunit tail length determinator %5BAeromonas phage Aes508%5D;hit_id=gi%7C423262258%7Cref%7CYP_007010857.1%7C;hit_titles=gi%7C423262258%7Cref%7CYP_007010857.1%7C baseplate hub subunit tail length determinator %5BAeromonas phage Aes508%5D,gi%7C402762136%7Cgb%7CAFQ97250.1%7C baseplate hub subunit tail length determinator %5BAeromonas phage Aes508%5D;length=565 -Merlin_5 blast match_part 44 62 . . . Gap=M15 I1 M3;ID=gi%7C423262258%7Cref%7CYP_007010857.1%7C;Parent=biopygen154 -Merlin_5 blast match_part 68 95 . . . Gap=M28;ID=gi%7C423262258%7Cref%7CYP_007010857.1%7C;Parent=biopygen154 -Merlin_5 blast match_part 101 111 . . . Gap=M11;ID=gi%7C423262258%7Cref%7CYP_007010857.1%7C;Parent=biopygen154 -Merlin_5 blast match_part 115 129 . . . Gap=M15;ID=gi%7C423262258%7Cref%7CYP_007010857.1%7C;Parent=biopygen154 -Merlin_5 blast match_part 133 137 . . . Gap=M5;ID=gi%7C423262258%7Cref%7CYP_007010857.1%7C;Parent=biopygen154 -Merlin_5 blast match_part 141 141 . . . Gap=M1;ID=gi%7C423262258%7Cref%7CYP_007010857.1%7C;Parent=biopygen154 -Merlin_5 blast match_part 148 153 . . . Gap=M6;ID=gi%7C423262258%7Cref%7CYP_007010857.1%7C;Parent=biopygen154 -Merlin_5 blast match_part 165 168 . . . Gap=M4;ID=gi%7C423262258%7Cref%7CYP_007010857.1%7C;Parent=biopygen154 -Merlin_5 blast match_part 175 200 . . . Gap=M26;ID=gi%7C423262258%7Cref%7CYP_007010857.1%7C;Parent=biopygen154 -Merlin_5 blast match_part 204 227 . . . Gap=M24;ID=gi%7C423262258%7Cref%7CYP_007010857.1%7C;Parent=biopygen154 -Merlin_5 blast match_part 231 270 . . . Gap=M40;ID=gi%7C423262258%7Cref%7CYP_007010857.1%7C;Parent=biopygen154 -Merlin_5 blast match_part 277 346 . . . Gap=M70;ID=gi%7C423262258%7Cref%7CYP_007010857.1%7C;Parent=biopygen154 -Merlin_5 blast match_part 354 375 . . . Gap=M22;ID=gi%7C423262258%7Cref%7CYP_007010857.1%7C;Parent=biopygen154 -Merlin_5 blast match_part 388 393 . . . Gap=M3 I1 M2;ID=gi%7C423262258%7Cref%7CYP_007010857.1%7C;Parent=biopygen154 -Merlin_5 blast match_part 397 402 . . . Gap=M6;ID=gi%7C423262258%7Cref%7CYP_007010857.1%7C;Parent=biopygen154 -Merlin_5 blast match_part 410 417 . . . Gap=M8;ID=gi%7C423262258%7Cref%7CYP_007010857.1%7C;Parent=biopygen154 -Merlin_5 blast match_part 422 432 . . . Gap=M11;ID=gi%7C423262258%7Cref%7CYP_007010857.1%7C;Parent=biopygen154 -Merlin_5 blast match_part 440 446 . . . Gap=M7;ID=gi%7C423262258%7Cref%7CYP_007010857.1%7C;Parent=biopygen154 -Merlin_5 blast match_part 451 478 . . . Gap=M28;ID=gi%7C423262258%7Cref%7CYP_007010857.1%7C;Parent=biopygen154 -Merlin_5 blast match_part 482 487 . . . Gap=M6;ID=gi%7C423262258%7Cref%7CYP_007010857.1%7C;Parent=biopygen154 -Merlin_5 blast match_part 493 496 . . . Gap=M4;ID=gi%7C423262258%7Cref%7CYP_007010857.1%7C;Parent=biopygen154 -Merlin_5 blast match_part 501 501 . . . Gap=M1;ID=gi%7C423262258%7Cref%7CYP_007010857.1%7C;Parent=biopygen154 -Merlin_5 blast match_part 507 511 . . . Gap=M5;ID=gi%7C423262258%7Cref%7CYP_007010857.1%7C;Parent=biopygen154 -Merlin_5 blast match_part 515 515 . . . Gap=M1;ID=gi%7C423262258%7Cref%7CYP_007010857.1%7C;Parent=biopygen154 -Merlin_5 blast match_part 519 526 . . . Gap=M8;ID=gi%7C423262258%7Cref%7CYP_007010857.1%7C;Parent=biopygen154 -Merlin_5 blast match_part 530 534 . . . Gap=M5;ID=gi%7C423262258%7Cref%7CYP_007010857.1%7C;Parent=biopygen154 -Merlin_5 blast match_part 543 557 . . . Gap=M15;ID=gi%7C423262258%7Cref%7CYP_007010857.1%7C;Parent=biopygen154 -Merlin_5 blast match_part 562 569 . . . Gap=M8;ID=gi%7C423262258%7Cref%7CYP_007010857.1%7C;Parent=biopygen154 -Merlin_5 blast protein_match 9 570 1.01075e-33 . . ID=biopygen155;accession=YP_238910;description=baseplate hub subunit %5BAeromonas phage 31%5D;hit_id=gi%7C66391985%7Cref%7CYP_238910.1%7C;hit_titles=gi%7C66391985%7Cref%7CYP_238910.1%7C baseplate hub subunit %5BAeromonas phage 31%5D,gi%7C62114822%7Cgb%7CAAX63670.1%7C gp29 %5BAeromonas phage 31%5D;length=566 -Merlin_5 blast match_part 44 84 . . . Gap=M41;ID=gi%7C66391985%7Cref%7CYP_238910.1%7C;Parent=biopygen155 -Merlin_5 blast match_part 88 92 . . . Gap=M5;ID=gi%7C66391985%7Cref%7CYP_238910.1%7C;Parent=biopygen155 -Merlin_5 blast match_part 101 110 . . . Gap=M10;ID=gi%7C66391985%7Cref%7CYP_238910.1%7C;Parent=biopygen155 -Merlin_5 blast match_part 115 118 . . . Gap=M4;ID=gi%7C66391985%7Cref%7CYP_238910.1%7C;Parent=biopygen155 -Merlin_5 blast match_part 123 127 . . . Gap=M5;ID=gi%7C66391985%7Cref%7CYP_238910.1%7C;Parent=biopygen155 -Merlin_5 blast match_part 131 144 . . . Gap=M14;ID=gi%7C66391985%7Cref%7CYP_238910.1%7C;Parent=biopygen155 -Merlin_5 blast match_part 154 160 . . . Gap=M7;ID=gi%7C66391985%7Cref%7CYP_238910.1%7C;Parent=biopygen155 -Merlin_5 blast match_part 166 167 . . . Gap=M2;ID=gi%7C66391985%7Cref%7CYP_238910.1%7C;Parent=biopygen155 -Merlin_5 blast match_part 171 171 . . . Gap=M1;ID=gi%7C66391985%7Cref%7CYP_238910.1%7C;Parent=biopygen155 -Merlin_5 blast match_part 175 178 . . . Gap=M4;ID=gi%7C66391985%7Cref%7CYP_238910.1%7C;Parent=biopygen155 -Merlin_5 blast match_part 182 188 . . . Gap=M7;ID=gi%7C66391985%7Cref%7CYP_238910.1%7C;Parent=biopygen155 -Merlin_5 blast match_part 192 200 . . . Gap=M9;ID=gi%7C66391985%7Cref%7CYP_238910.1%7C;Parent=biopygen155 -Merlin_5 blast match_part 204 226 . . . Gap=M23;ID=gi%7C66391985%7Cref%7CYP_238910.1%7C;Parent=biopygen155 -Merlin_5 blast match_part 231 258 . . . Gap=M28;ID=gi%7C66391985%7Cref%7CYP_238910.1%7C;Parent=biopygen155 -Merlin_5 blast match_part 262 265 . . . Gap=M4;ID=gi%7C66391985%7Cref%7CYP_238910.1%7C;Parent=biopygen155 -Merlin_5 blast match_part 270 273 . . . Gap=M4;ID=gi%7C66391985%7Cref%7CYP_238910.1%7C;Parent=biopygen155 -Merlin_5 blast match_part 277 346 . . . Gap=M70;ID=gi%7C66391985%7Cref%7CYP_238910.1%7C;Parent=biopygen155 -Merlin_5 blast match_part 351 375 . . . Gap=M25;ID=gi%7C66391985%7Cref%7CYP_238910.1%7C;Parent=biopygen155 -Merlin_5 blast match_part 385 387 . . . Gap=M3;ID=gi%7C66391985%7Cref%7CYP_238910.1%7C;Parent=biopygen155 -Merlin_5 blast match_part 393 393 . . . Gap=M1;ID=gi%7C66391985%7Cref%7CYP_238910.1%7C;Parent=biopygen155 -Merlin_5 blast match_part 397 402 . . . Gap=M6;ID=gi%7C66391985%7Cref%7CYP_238910.1%7C;Parent=biopygen155 -Merlin_5 blast match_part 409 413 . . . Gap=M5;ID=gi%7C66391985%7Cref%7CYP_238910.1%7C;Parent=biopygen155 -Merlin_5 blast match_part 417 419 . . . Gap=M3;ID=gi%7C66391985%7Cref%7CYP_238910.1%7C;Parent=biopygen155 -Merlin_5 blast match_part 423 431 . . . Gap=M9;ID=gi%7C66391985%7Cref%7CYP_238910.1%7C;Parent=biopygen155 -Merlin_5 blast match_part 437 446 . . . Gap=M10;ID=gi%7C66391985%7Cref%7CYP_238910.1%7C;Parent=biopygen155 -Merlin_5 blast match_part 451 461 . . . Gap=M11;ID=gi%7C66391985%7Cref%7CYP_238910.1%7C;Parent=biopygen155 -Merlin_5 blast match_part 467 472 . . . Gap=M6;ID=gi%7C66391985%7Cref%7CYP_238910.1%7C;Parent=biopygen155 -Merlin_5 blast match_part 476 478 . . . Gap=M3;ID=gi%7C66391985%7Cref%7CYP_238910.1%7C;Parent=biopygen155 -Merlin_5 blast match_part 482 499 . . . Gap=M18;ID=gi%7C66391985%7Cref%7CYP_238910.1%7C;Parent=biopygen155 -Merlin_5 blast match_part 506 511 . . . Gap=M6;ID=gi%7C66391985%7Cref%7CYP_238910.1%7C;Parent=biopygen155 -Merlin_5 blast match_part 515 515 . . . Gap=M1;ID=gi%7C66391985%7Cref%7CYP_238910.1%7C;Parent=biopygen155 -Merlin_5 blast match_part 519 526 . . . Gap=M8;ID=gi%7C66391985%7Cref%7CYP_238910.1%7C;Parent=biopygen155 -Merlin_5 blast match_part 530 534 . . . Gap=M5;ID=gi%7C66391985%7Cref%7CYP_238910.1%7C;Parent=biopygen155 -Merlin_5 blast match_part 540 557 . . . Gap=M2 I1 M15;ID=gi%7C66391985%7Cref%7CYP_238910.1%7C;Parent=biopygen155 -Merlin_5 blast match_part 562 569 . . . Gap=M8;ID=gi%7C66391985%7Cref%7CYP_238910.1%7C;Parent=biopygen155 -Merlin_5 blast protein_match 9 570 1.1527e-33 . . ID=biopygen156;accession=NP_932538;description=baseplate hub subunit %5BAeromonas phage 44RR2.8t%5D;hit_id=gi%7C37651664%7Cref%7CNP_932538.1%7C;hit_titles=gi%7C37651664%7Cref%7CNP_932538.1%7C baseplate hub subunit %5BAeromonas phage 44RR2.8t%5D,gi%7C34732964%7Cgb%7CAAQ81501.1%7C baseplate hub subunit %5BAeromonas phage 44RR2.8t%5D;length=566 -Merlin_5 blast match_part 44 84 . . . Gap=M41;ID=gi%7C37651664%7Cref%7CNP_932538.1%7C;Parent=biopygen156 -Merlin_5 blast match_part 88 92 . . . Gap=M5;ID=gi%7C37651664%7Cref%7CNP_932538.1%7C;Parent=biopygen156 -Merlin_5 blast match_part 101 110 . . . Gap=M10;ID=gi%7C37651664%7Cref%7CNP_932538.1%7C;Parent=biopygen156 -Merlin_5 blast match_part 115 118 . . . Gap=M4;ID=gi%7C37651664%7Cref%7CNP_932538.1%7C;Parent=biopygen156 -Merlin_5 blast match_part 123 127 . . . Gap=M5;ID=gi%7C37651664%7Cref%7CNP_932538.1%7C;Parent=biopygen156 -Merlin_5 blast match_part 131 144 . . . Gap=M14;ID=gi%7C37651664%7Cref%7CNP_932538.1%7C;Parent=biopygen156 -Merlin_5 blast match_part 154 160 . . . Gap=M7;ID=gi%7C37651664%7Cref%7CNP_932538.1%7C;Parent=biopygen156 -Merlin_5 blast match_part 166 167 . . . Gap=M2;ID=gi%7C37651664%7Cref%7CNP_932538.1%7C;Parent=biopygen156 -Merlin_5 blast match_part 171 171 . . . Gap=M1;ID=gi%7C37651664%7Cref%7CNP_932538.1%7C;Parent=biopygen156 -Merlin_5 blast match_part 175 178 . . . Gap=M4;ID=gi%7C37651664%7Cref%7CNP_932538.1%7C;Parent=biopygen156 -Merlin_5 blast match_part 182 188 . . . Gap=M7;ID=gi%7C37651664%7Cref%7CNP_932538.1%7C;Parent=biopygen156 -Merlin_5 blast match_part 192 200 . . . Gap=M9;ID=gi%7C37651664%7Cref%7CNP_932538.1%7C;Parent=biopygen156 -Merlin_5 blast match_part 204 226 . . . Gap=M23;ID=gi%7C37651664%7Cref%7CNP_932538.1%7C;Parent=biopygen156 -Merlin_5 blast match_part 231 258 . . . Gap=M28;ID=gi%7C37651664%7Cref%7CNP_932538.1%7C;Parent=biopygen156 -Merlin_5 blast match_part 262 265 . . . Gap=M4;ID=gi%7C37651664%7Cref%7CNP_932538.1%7C;Parent=biopygen156 -Merlin_5 blast match_part 270 273 . . . Gap=M4;ID=gi%7C37651664%7Cref%7CNP_932538.1%7C;Parent=biopygen156 -Merlin_5 blast match_part 277 346 . . . Gap=M70;ID=gi%7C37651664%7Cref%7CNP_932538.1%7C;Parent=biopygen156 -Merlin_5 blast match_part 351 375 . . . Gap=M25;ID=gi%7C37651664%7Cref%7CNP_932538.1%7C;Parent=biopygen156 -Merlin_5 blast match_part 385 387 . . . Gap=M3;ID=gi%7C37651664%7Cref%7CNP_932538.1%7C;Parent=biopygen156 -Merlin_5 blast match_part 393 393 . . . Gap=M1;ID=gi%7C37651664%7Cref%7CNP_932538.1%7C;Parent=biopygen156 -Merlin_5 blast match_part 397 402 . . . Gap=M6;ID=gi%7C37651664%7Cref%7CNP_932538.1%7C;Parent=biopygen156 -Merlin_5 blast match_part 409 413 . . . Gap=M5;ID=gi%7C37651664%7Cref%7CNP_932538.1%7C;Parent=biopygen156 -Merlin_5 blast match_part 417 419 . . . Gap=M3;ID=gi%7C37651664%7Cref%7CNP_932538.1%7C;Parent=biopygen156 -Merlin_5 blast match_part 423 431 . . . Gap=M9;ID=gi%7C37651664%7Cref%7CNP_932538.1%7C;Parent=biopygen156 -Merlin_5 blast match_part 437 446 . . . Gap=M10;ID=gi%7C37651664%7Cref%7CNP_932538.1%7C;Parent=biopygen156 -Merlin_5 blast match_part 451 461 . . . Gap=M11;ID=gi%7C37651664%7Cref%7CNP_932538.1%7C;Parent=biopygen156 -Merlin_5 blast match_part 467 472 . . . Gap=M6;ID=gi%7C37651664%7Cref%7CNP_932538.1%7C;Parent=biopygen156 -Merlin_5 blast match_part 476 478 . . . Gap=M3;ID=gi%7C37651664%7Cref%7CNP_932538.1%7C;Parent=biopygen156 -Merlin_5 blast match_part 482 499 . . . Gap=M18;ID=gi%7C37651664%7Cref%7CNP_932538.1%7C;Parent=biopygen156 -Merlin_5 blast match_part 506 511 . . . Gap=M6;ID=gi%7C37651664%7Cref%7CNP_932538.1%7C;Parent=biopygen156 -Merlin_5 blast match_part 515 515 . . . Gap=M1;ID=gi%7C37651664%7Cref%7CNP_932538.1%7C;Parent=biopygen156 -Merlin_5 blast match_part 519 526 . . . Gap=M8;ID=gi%7C37651664%7Cref%7CNP_932538.1%7C;Parent=biopygen156 -Merlin_5 blast match_part 530 534 . . . Gap=M5;ID=gi%7C37651664%7Cref%7CNP_932538.1%7C;Parent=biopygen156 -Merlin_5 blast match_part 540 557 . . . Gap=M2 I1 M15;ID=gi%7C37651664%7Cref%7CNP_932538.1%7C;Parent=biopygen156 -Merlin_5 blast match_part 562 569 . . . Gap=M8;ID=gi%7C37651664%7Cref%7CNP_932538.1%7C;Parent=biopygen156 -Merlin_5 blast protein_match 0 190 1.49556e-13 . . ID=biopygen157;accession=CCI89086;description=phage baseplate hub %5BYersinia phage phiD1%5D;hit_id=gi%7C398313739%7Cemb%7CCCI89086.1%7C;hit_titles=gi%7C398313739%7Cemb%7CCCI89086.1%7C phage baseplate hub %5BYersinia phage phiD1%5D;length=191 -Merlin_5 blast match_part 2 82 . . . Gap=M10 I1 M70;ID=gi%7C398313739%7Cemb%7CCCI89086.1%7C;Parent=biopygen157 -Merlin_5 blast match_part 89 89 . . . Gap=M1;ID=gi%7C398313739%7Cemb%7CCCI89086.1%7C;Parent=biopygen157 -Merlin_5 blast match_part 94 114 . . . Gap=M21;ID=gi%7C398313739%7Cemb%7CCCI89086.1%7C;Parent=biopygen157 -Merlin_5 blast match_part 120 124 . . . Gap=M5;ID=gi%7C398313739%7Cemb%7CCCI89086.1%7C;Parent=biopygen157 -Merlin_5 blast match_part 128 142 . . . Gap=M15;ID=gi%7C398313739%7Cemb%7CCCI89086.1%7C;Parent=biopygen157 -Merlin_5 blast match_part 149 157 . . . Gap=M9;ID=gi%7C398313739%7Cemb%7CCCI89086.1%7C;Parent=biopygen157 -Merlin_5 blast match_part 163 163 . . . Gap=M1;ID=gi%7C398313739%7Cemb%7CCCI89086.1%7C;Parent=biopygen157 -Merlin_5 blast match_part 168 189 . . . Gap=M10 I1 M11;ID=gi%7C398313739%7Cemb%7CCCI89086.1%7C;Parent=biopygen157 +Merlin_5 blast protein_match 1 580 0.0 . . ID=b2g.4.0.0;accession=YP_007501227;blast_align_length=578;blast_bits=675.626;blast_frame=0;blast_gaps=3;blast_identities=345;blast_positives=442;blast_query_end=576;blast_query_start=1;blast_sbjct_end=577;blast_sbjct_start=1;blast_score=1742.0;blast_strand=None;description=baseplate hub %5BSalmonella phage S16%5D;hit_id=gi%7C456351275%7Cref%7CYP_007501227.1%7C;hit_titles=gi%7C456351275%7Cref%7CYP_007501227.1%7C baseplate hub %5BSalmonella phage S16%5D,gi%7C347466340%7Cgb%7CAEO97126.1%7C baseplate hub %5BSalmonella phage S16%5D,gi%7C408387124%7Cgb%7CAFU64133.1%7C baseplate hub %5BSalmonella phage STML-198%5D;length=577 +Merlin_5 blast match_part 1 69 . . . Gap=M69;ID=b2g.4.0.0.0;Parent=b2g.4.0.0 +Merlin_5 blast match_part 73 123 . . . Gap=M51;ID=b2g.4.0.0.1;Parent=b2g.4.0.0 +Merlin_5 blast match_part 131 143 . . . Gap=M13;ID=b2g.4.0.0.2;Parent=b2g.4.0.0 +Merlin_5 blast match_part 147 153 . . . Gap=M7;ID=b2g.4.0.0.3;Parent=b2g.4.0.0 +Merlin_5 blast match_part 158 185 . . . Gap=M5 I1 M22;ID=b2g.4.0.0.4;Parent=b2g.4.0.0 +Merlin_5 blast match_part 192 377 . . . Gap=M186;ID=b2g.4.0.0.5;Parent=b2g.4.0.0 +Merlin_5 blast match_part 381 404 . . . Gap=M24;ID=b2g.4.0.0.6;Parent=b2g.4.0.0 +Merlin_5 blast match_part 408 426 . . . Gap=M19;ID=b2g.4.0.0.7;Parent=b2g.4.0.0 +Merlin_5 blast match_part 430 530 . . . Gap=M101;ID=b2g.4.0.0.8;Parent=b2g.4.0.0 +Merlin_5 blast match_part 536 536 . . . Gap=M1;ID=b2g.4.0.0.9;Parent=b2g.4.0.0 +Merlin_5 blast match_part 540 576 . . . Gap=M37;ID=b2g.4.0.0.10;Parent=b2g.4.0.0 +Merlin_5 blast protein_match 1 602 0.0 . . ID=b2g.4.1.0;accession=YP_009005474;blast_align_length=591;blast_bits=549.28;blast_frame=0;blast_gaps=20;blast_identities=297;blast_positives=414;blast_query_end=576;blast_query_start=1;blast_sbjct_end=586;blast_sbjct_start=1;blast_score=1414.0;blast_strand=None;description=baseplate hub subunit tail length determinator %5BEnterobacter phage PG7%5D;hit_id=gi%7C589889938%7Cref%7CYP_009005474.1%7C;hit_titles=gi%7C589889938%7Cref%7CYP_009005474.1%7C baseplate hub subunit tail length determinator %5BEnterobacter phage PG7%5D,gi%7C583927851%7Cgb%7CAHI61113.1%7C baseplate hub subunit tail length determinator %5BEnterobacter phage PG7%5D;length=586 +Merlin_5 blast match_part 1 116 . . . Gap=M11 I1 M104;ID=b2g.4.1.0.0;Parent=b2g.4.1.0 +Merlin_5 blast match_part 120 122 . . . Gap=M3;ID=b2g.4.1.0.1;Parent=b2g.4.1.0 +Merlin_5 blast match_part 129 139 . . . Gap=M11;ID=b2g.4.1.0.2;Parent=b2g.4.1.0 +Merlin_5 blast match_part 143 155 . . . Gap=M13;ID=b2g.4.1.0.3;Parent=b2g.4.1.0 +Merlin_5 blast match_part 159 181 . . . Gap=M23;ID=b2g.4.1.0.4;Parent=b2g.4.1.0 +Merlin_5 blast match_part 186 376 . . . Gap=M191;ID=b2g.4.1.0.5;Parent=b2g.4.1.0 +Merlin_5 blast match_part 381 388 . . . Gap=M8;ID=b2g.4.1.0.6;Parent=b2g.4.1.0 +Merlin_5 blast match_part 392 402 . . . Gap=M11;ID=b2g.4.1.0.7;Parent=b2g.4.1.0 +Merlin_5 blast match_part 408 488 . . . Gap=M81;ID=b2g.4.1.0.8;Parent=b2g.4.1.0 +Merlin_5 blast match_part 492 500 . . . Gap=M9;ID=b2g.4.1.0.9;Parent=b2g.4.1.0 +Merlin_5 blast match_part 505 536 . . . Gap=M32;ID=b2g.4.1.0.10;Parent=b2g.4.1.0 +Merlin_5 blast match_part 542 543 . . . Gap=M2;ID=b2g.4.1.0.11;Parent=b2g.4.1.0 +Merlin_5 blast match_part 547 576 . . . Gap=M30;ID=b2g.4.1.0.12;Parent=b2g.4.1.0 +Merlin_5 blast protein_match 1 603 0.0 . . ID=b2g.4.2.0;accession=YP_004010053;blast_align_length=592;blast_bits=546.584;blast_frame=0;blast_gaps=22;blast_identities=296;blast_positives=412;blast_query_end=576;blast_query_start=1;blast_sbjct_end=586;blast_sbjct_start=1;blast_score=1407.0;blast_strand=None;description=gp29 base plate hub subunit%2C tail length determinator %5BEnterobacteria phage CC31%5D;hit_id=gi%7C311993187%7Cref%7CYP_004010053.1%7C;hit_titles=gi%7C311993187%7Cref%7CYP_004010053.1%7C gp29 base plate hub subunit%2C tail length determinator %5BEnterobacteria phage CC31%5D,gi%7C284178025%7Cgb%7CADB81691.1%7C gp29 base plate hub subunit%2C tail length determinator %5BEnterobacteria phage CC31%5D;length=586 +Merlin_5 blast match_part 1 116 . . . Gap=M11 I1 M104;ID=b2g.4.2.0.0;Parent=b2g.4.2.0 +Merlin_5 blast match_part 120 122 . . . Gap=M3;ID=b2g.4.2.0.1;Parent=b2g.4.2.0 +Merlin_5 blast match_part 129 139 . . . Gap=M11;ID=b2g.4.2.0.2;Parent=b2g.4.2.0 +Merlin_5 blast match_part 143 155 . . . Gap=M13;ID=b2g.4.2.0.3;Parent=b2g.4.2.0 +Merlin_5 blast match_part 159 181 . . . Gap=M23;ID=b2g.4.2.0.4;Parent=b2g.4.2.0 +Merlin_5 blast match_part 186 376 . . . Gap=M191;ID=b2g.4.2.0.5;Parent=b2g.4.2.0 +Merlin_5 blast match_part 381 388 . . . Gap=M8;ID=b2g.4.2.0.6;Parent=b2g.4.2.0 +Merlin_5 blast match_part 392 402 . . . Gap=M11;ID=b2g.4.2.0.7;Parent=b2g.4.2.0 +Merlin_5 blast match_part 408 488 . . . Gap=M81;ID=b2g.4.2.0.8;Parent=b2g.4.2.0 +Merlin_5 blast match_part 492 500 . . . Gap=M9;ID=b2g.4.2.0.9;Parent=b2g.4.2.0 +Merlin_5 blast match_part 505 528 . . . Gap=M24;ID=b2g.4.2.0.10;Parent=b2g.4.2.0 +Merlin_5 blast match_part 532 532 . . . Gap=M1;ID=b2g.4.2.0.11;Parent=b2g.4.2.0 +Merlin_5 blast match_part 540 576 . . . Gap=M6 I1 M30;ID=b2g.4.2.0.12;Parent=b2g.4.2.0 +Merlin_5 blast protein_match 0 619 1.35305e-146 . . ID=b2g.4.3.0;accession=YP_007004568;blast_align_length=602;blast_bits=447.588;blast_frame=0;blast_gaps=41;blast_identities=267;blast_positives=374;blast_query_end=576;blast_query_start=2;blast_sbjct_end=590;blast_sbjct_start=3;blast_score=1150.0;blast_strand=None;description=phage baseplate hub %5BEnterobacteria phage ime09%5D;hit_id=gi%7C422934607%7Cref%7CYP_007004568.1%7C;hit_titles=gi%7C422934607%7Cref%7CYP_007004568.1%7C phage baseplate hub %5BEnterobacteria phage ime09%5D,gi%7C339791390%7Cgb%7CAEK12447.1%7C phage baseplate hub %5BEnterobacteria phage ime09%5D;length=590 +Merlin_5 blast match_part 2 70 . . . Gap=M10 I1 M58;ID=b2g.4.3.0.0;Parent=b2g.4.3.0 +Merlin_5 blast match_part 81 82 . . . Gap=M2;ID=b2g.4.3.0.1;Parent=b2g.4.3.0 +Merlin_5 blast match_part 86 89 . . . Gap=M4;ID=b2g.4.3.0.2;Parent=b2g.4.3.0 +Merlin_5 blast match_part 94 114 . . . Gap=M21;ID=b2g.4.3.0.3;Parent=b2g.4.3.0 +Merlin_5 blast match_part 120 148 . . . Gap=M29;ID=b2g.4.3.0.4;Parent=b2g.4.3.0 +Merlin_5 blast match_part 153 200 . . . Gap=M48;ID=b2g.4.3.0.5;Parent=b2g.4.3.0 +Merlin_5 blast match_part 204 382 . . . Gap=M179;ID=b2g.4.3.0.6;Parent=b2g.4.3.0 +Merlin_5 blast match_part 386 400 . . . Gap=M15;ID=b2g.4.3.0.7;Parent=b2g.4.3.0 +Merlin_5 blast match_part 404 404 . . . Gap=M1;ID=b2g.4.3.0.8;Parent=b2g.4.3.0 +Merlin_5 blast match_part 408 444 . . . Gap=M37;ID=b2g.4.3.0.9;Parent=b2g.4.3.0 +Merlin_5 blast match_part 449 449 . . . Gap=M1;ID=b2g.4.3.0.10;Parent=b2g.4.3.0 +Merlin_5 blast match_part 454 463 . . . Gap=M10;ID=b2g.4.3.0.11;Parent=b2g.4.3.0 +Merlin_5 blast match_part 467 507 . . . Gap=M35 I1 M5;ID=b2g.4.3.0.12;Parent=b2g.4.3.0 +Merlin_5 blast match_part 511 524 . . . Gap=M14;ID=b2g.4.3.0.13;Parent=b2g.4.3.0 +Merlin_5 blast match_part 532 533 . . . Gap=M2;ID=b2g.4.3.0.14;Parent=b2g.4.3.0 +Merlin_5 blast match_part 539 576 . . . Gap=M38;ID=b2g.4.3.0.15;Parent=b2g.4.3.0 +Merlin_5 blast protein_match 0 623 9.14277e-145 . . ID=b2g.4.4.0;accession=YP_002854147;blast_align_length=606;blast_bits=442.965;blast_frame=0;blast_gaps=49;blast_identities=264;blast_positives=378;blast_query_end=576;blast_query_start=2;blast_sbjct_end=590;blast_sbjct_start=3;blast_score=1138.0;blast_strand=None;description=gp29 base plate hub %5BEnterobacteria phage RB51%5D;hit_id=gi%7C228861124%7Cref%7CYP_002854147.1%7C;hit_titles=gi%7C228861124%7Cref%7CYP_002854147.1%7C gp29 base plate hub %5BEnterobacteria phage RB51%5D,gi%7C227438798%7Cgb%7CACP31110.1%7C gp29 base plate hub %5BEnterobacteria phage RB51%5D,gi%7C291290410%7Cdbj%7CBAI83205.1%7C baseplate hub subunit/tail length determinator %5BEnterobacteria phage AR1%5D;length=590 +Merlin_5 blast match_part 2 70 . . . Gap=M10 I1 M58;ID=b2g.4.4.0.0;Parent=b2g.4.4.0 +Merlin_5 blast match_part 81 82 . . . Gap=M2;ID=b2g.4.4.0.1;Parent=b2g.4.4.0 +Merlin_5 blast match_part 86 89 . . . Gap=M4;ID=b2g.4.4.0.2;Parent=b2g.4.4.0 +Merlin_5 blast match_part 94 114 . . . Gap=M21;ID=b2g.4.4.0.3;Parent=b2g.4.4.0 +Merlin_5 blast match_part 120 124 . . . Gap=M5;ID=b2g.4.4.0.4;Parent=b2g.4.4.0 +Merlin_5 blast match_part 129 148 . . . Gap=M20;ID=b2g.4.4.0.5;Parent=b2g.4.4.0 +Merlin_5 blast match_part 153 200 . . . Gap=M48;ID=b2g.4.4.0.6;Parent=b2g.4.4.0 +Merlin_5 blast match_part 204 382 . . . Gap=M179;ID=b2g.4.4.0.7;Parent=b2g.4.4.0 +Merlin_5 blast match_part 386 400 . . . Gap=M15;ID=b2g.4.4.0.8;Parent=b2g.4.4.0 +Merlin_5 blast match_part 404 404 . . . Gap=M1;ID=b2g.4.4.0.9;Parent=b2g.4.4.0 +Merlin_5 blast match_part 408 444 . . . Gap=M37;ID=b2g.4.4.0.10;Parent=b2g.4.4.0 +Merlin_5 blast match_part 449 449 . . . Gap=M1;ID=b2g.4.4.0.11;Parent=b2g.4.4.0 +Merlin_5 blast match_part 454 463 . . . Gap=M10;ID=b2g.4.4.0.12;Parent=b2g.4.4.0 +Merlin_5 blast match_part 467 507 . . . Gap=M35 I1 M5;ID=b2g.4.4.0.13;Parent=b2g.4.4.0 +Merlin_5 blast match_part 511 524 . . . Gap=M14;ID=b2g.4.4.0.14;Parent=b2g.4.4.0 +Merlin_5 blast match_part 532 533 . . . Gap=M2;ID=b2g.4.4.0.15;Parent=b2g.4.4.0 +Merlin_5 blast match_part 539 576 . . . Gap=M38;ID=b2g.4.4.0.16;Parent=b2g.4.4.0 +Merlin_5 blast protein_match 0 623 1.58375e-144 . . ID=b2g.4.5.0;accession=YP_007004932;blast_align_length=606;blast_bits=442.58;blast_frame=0;blast_gaps=49;blast_identities=263;blast_positives=378;blast_query_end=576;blast_query_start=2;blast_sbjct_end=590;blast_sbjct_start=3;blast_score=1137.0;blast_strand=None;description=baseplate hub subunit tail length determinator %5BEscherichia phage wV7%5D;hit_id=gi%7C422934972%7Cref%7CYP_007004932.1%7C;hit_titles=gi%7C422934972%7Cref%7CYP_007004932.1%7C baseplate hub subunit tail length determinator %5BEscherichia phage wV7%5D,gi%7C343177526%7Cgb%7CAEM00852.1%7C baseplate hub subunit tail length determinator %5BEscherichia phage wV7%5D;length=590 +Merlin_5 blast match_part 2 70 . . . Gap=M10 I1 M58;ID=b2g.4.5.0.0;Parent=b2g.4.5.0 +Merlin_5 blast match_part 81 82 . . . Gap=M2;ID=b2g.4.5.0.1;Parent=b2g.4.5.0 +Merlin_5 blast match_part 86 89 . . . Gap=M4;ID=b2g.4.5.0.2;Parent=b2g.4.5.0 +Merlin_5 blast match_part 94 114 . . . Gap=M21;ID=b2g.4.5.0.3;Parent=b2g.4.5.0 +Merlin_5 blast match_part 120 124 . . . Gap=M5;ID=b2g.4.5.0.4;Parent=b2g.4.5.0 +Merlin_5 blast match_part 129 148 . . . Gap=M20;ID=b2g.4.5.0.5;Parent=b2g.4.5.0 +Merlin_5 blast match_part 153 200 . . . Gap=M48;ID=b2g.4.5.0.6;Parent=b2g.4.5.0 +Merlin_5 blast match_part 204 382 . . . Gap=M179;ID=b2g.4.5.0.7;Parent=b2g.4.5.0 +Merlin_5 blast match_part 386 400 . . . Gap=M15;ID=b2g.4.5.0.8;Parent=b2g.4.5.0 +Merlin_5 blast match_part 404 404 . . . Gap=M1;ID=b2g.4.5.0.9;Parent=b2g.4.5.0 +Merlin_5 blast match_part 408 444 . . . Gap=M37;ID=b2g.4.5.0.10;Parent=b2g.4.5.0 +Merlin_5 blast match_part 449 449 . . . Gap=M1;ID=b2g.4.5.0.11;Parent=b2g.4.5.0 +Merlin_5 blast match_part 454 463 . . . Gap=M10;ID=b2g.4.5.0.12;Parent=b2g.4.5.0 +Merlin_5 blast match_part 467 507 . . . Gap=M35 I1 M5;ID=b2g.4.5.0.13;Parent=b2g.4.5.0 +Merlin_5 blast match_part 511 524 . . . Gap=M14;ID=b2g.4.5.0.14;Parent=b2g.4.5.0 +Merlin_5 blast match_part 532 533 . . . Gap=M2;ID=b2g.4.5.0.15;Parent=b2g.4.5.0 +Merlin_5 blast match_part 539 576 . . . Gap=M38;ID=b2g.4.5.0.16;Parent=b2g.4.5.0 +Merlin_5 blast protein_match 1 613 3.83095e-144 . . ID=b2g.4.6.0;accession=AHV82895;blast_align_length=598;blast_bits=441.425;blast_frame=0;blast_gaps=30;blast_identities=269;blast_positives=375;blast_query_end=576;blast_query_start=1;blast_sbjct_end=590;blast_sbjct_start=1;blast_score=1134.0;blast_strand=None;description=baseplate hub subunit%2C tail length determinator %5BEscherichia phage vB_EcoM_PhAPEC2%5D;hit_id=gi%7C604671901%7Cgb%7CAHV82895.1%7C;hit_titles=gi%7C604671901%7Cgb%7CAHV82895.1%7C baseplate hub subunit%2C tail length determinator %5BEscherichia phage vB_EcoM_PhAPEC2%5D;length=590 +Merlin_5 blast match_part 1 114 . . . Gap=M114;ID=b2g.4.6.0.0;Parent=b2g.4.6.0 +Merlin_5 blast match_part 120 124 . . . Gap=M5;ID=b2g.4.6.0.1;Parent=b2g.4.6.0 +Merlin_5 blast match_part 129 139 . . . Gap=M11;ID=b2g.4.6.0.2;Parent=b2g.4.6.0 +Merlin_5 blast match_part 143 146 . . . Gap=M4;ID=b2g.4.6.0.3;Parent=b2g.4.6.0 +Merlin_5 blast match_part 152 170 . . . Gap=M19;ID=b2g.4.6.0.4;Parent=b2g.4.6.0 +Merlin_5 blast match_part 174 184 . . . Gap=M11;ID=b2g.4.6.0.5;Parent=b2g.4.6.0 +Merlin_5 blast match_part 189 306 . . . Gap=M118;ID=b2g.4.6.0.6;Parent=b2g.4.6.0 +Merlin_5 blast match_part 310 374 . . . Gap=M65;ID=b2g.4.6.0.7;Parent=b2g.4.6.0 +Merlin_5 blast match_part 378 388 . . . Gap=M11;ID=b2g.4.6.0.8;Parent=b2g.4.6.0 +Merlin_5 blast match_part 392 463 . . . Gap=M72;ID=b2g.4.6.0.9;Parent=b2g.4.6.0 +Merlin_5 blast match_part 468 524 . . . Gap=M57;ID=b2g.4.6.0.10;Parent=b2g.4.6.0 +Merlin_5 blast match_part 528 534 . . . Gap=M1 I2 M4;ID=b2g.4.6.0.11;Parent=b2g.4.6.0 +Merlin_5 blast match_part 541 549 . . . Gap=M4 I2 M3;ID=b2g.4.6.0.12;Parent=b2g.4.6.0 +Merlin_5 blast match_part 554 576 . . . Gap=M23;ID=b2g.4.6.0.13;Parent=b2g.4.6.0 +Merlin_5 blast protein_match 1 615 4.26665e-144 . . ID=b2g.4.7.0;accession=NP_861896;blast_align_length=600;blast_bits=441.425;blast_frame=0;blast_gaps=34;blast_identities=270;blast_positives=376;blast_query_end=576;blast_query_start=1;blast_sbjct_end=590;blast_sbjct_start=1;blast_score=1134.0;blast_strand=None;description=gp29 baseplate hub subunit%2C tail length determinator %5BEnterobacteria phage RB69%5D;hit_id=gi%7C32453687%7Cref%7CNP_861896.1%7C;hit_titles=gi%7C32453687%7Cref%7CNP_861896.1%7C gp29 baseplate hub subunit%2C tail length determinator %5BEnterobacteria phage RB69%5D,gi%7C32350506%7Cgb%7CAAP76105.1%7C gp29 baseplate hub subunit%2C tail length determinator %5BEnterobacteria phage RB69%5D;length=590 +Merlin_5 blast match_part 1 114 . . . Gap=M114;ID=b2g.4.7.0.0;Parent=b2g.4.7.0 +Merlin_5 blast match_part 120 124 . . . Gap=M5;ID=b2g.4.7.0.1;Parent=b2g.4.7.0 +Merlin_5 blast match_part 129 139 . . . Gap=M11;ID=b2g.4.7.0.2;Parent=b2g.4.7.0 +Merlin_5 blast match_part 143 146 . . . Gap=M4;ID=b2g.4.7.0.3;Parent=b2g.4.7.0 +Merlin_5 blast match_part 152 170 . . . Gap=M19;ID=b2g.4.7.0.4;Parent=b2g.4.7.0 +Merlin_5 blast match_part 174 184 . . . Gap=M11;ID=b2g.4.7.0.5;Parent=b2g.4.7.0 +Merlin_5 blast match_part 189 306 . . . Gap=M118;ID=b2g.4.7.0.6;Parent=b2g.4.7.0 +Merlin_5 blast match_part 310 374 . . . Gap=M65;ID=b2g.4.7.0.7;Parent=b2g.4.7.0 +Merlin_5 blast match_part 378 388 . . . Gap=M11;ID=b2g.4.7.0.8;Parent=b2g.4.7.0 +Merlin_5 blast match_part 392 463 . . . Gap=M72;ID=b2g.4.7.0.9;Parent=b2g.4.7.0 +Merlin_5 blast match_part 468 531 . . . Gap=M64;ID=b2g.4.7.0.10;Parent=b2g.4.7.0 +Merlin_5 blast match_part 535 536 . . . Gap=M2;ID=b2g.4.7.0.11;Parent=b2g.4.7.0 +Merlin_5 blast match_part 541 549 . . . Gap=M4 I2 M3;ID=b2g.4.7.0.12;Parent=b2g.4.7.0 +Merlin_5 blast match_part 554 576 . . . Gap=M23;ID=b2g.4.7.0.13;Parent=b2g.4.7.0 +Merlin_5 blast protein_match 1 613 6.28771e-144 . . ID=b2g.4.8.0;accession=YP_009037575;blast_align_length=598;blast_bits=441.039;blast_frame=0;blast_gaps=30;blast_identities=267;blast_positives=375;blast_query_end=576;blast_query_start=1;blast_sbjct_end=590;blast_sbjct_start=1;blast_score=1133.0;blast_strand=None;description=baseplate hub subunit%2C tail length determinator %5BEscherichia phage vB_EcoM_JS09%5D;hit_id=gi%7C642905806%7Cref%7CYP_009037575.1%7C;hit_titles=gi%7C642905806%7Cref%7CYP_009037575.1%7C baseplate hub subunit%2C tail length determinator %5BEscherichia phage vB_EcoM_JS09%5D,gi%7C642903960%7Cgb%7CAIA79980.1%7C baseplate hub subunit%2C tail length determinator %5BEscherichia phage vB_EcoM_JS09%5D;length=590 +Merlin_5 blast match_part 1 114 . . . Gap=M114;ID=b2g.4.8.0.0;Parent=b2g.4.8.0 +Merlin_5 blast match_part 120 124 . . . Gap=M5;ID=b2g.4.8.0.1;Parent=b2g.4.8.0 +Merlin_5 blast match_part 129 139 . . . Gap=M11;ID=b2g.4.8.0.2;Parent=b2g.4.8.0 +Merlin_5 blast match_part 143 146 . . . Gap=M4;ID=b2g.4.8.0.3;Parent=b2g.4.8.0 +Merlin_5 blast match_part 152 170 . . . Gap=M19;ID=b2g.4.8.0.4;Parent=b2g.4.8.0 +Merlin_5 blast match_part 174 184 . . . Gap=M11;ID=b2g.4.8.0.5;Parent=b2g.4.8.0 +Merlin_5 blast match_part 189 306 . . . Gap=M118;ID=b2g.4.8.0.6;Parent=b2g.4.8.0 +Merlin_5 blast match_part 310 374 . . . Gap=M65;ID=b2g.4.8.0.7;Parent=b2g.4.8.0 +Merlin_5 blast match_part 378 388 . . . Gap=M11;ID=b2g.4.8.0.8;Parent=b2g.4.8.0 +Merlin_5 blast match_part 392 463 . . . Gap=M72;ID=b2g.4.8.0.9;Parent=b2g.4.8.0 +Merlin_5 blast match_part 468 524 . . . Gap=M57;ID=b2g.4.8.0.10;Parent=b2g.4.8.0 +Merlin_5 blast match_part 528 534 . . . Gap=M1 I2 M4;ID=b2g.4.8.0.11;Parent=b2g.4.8.0 +Merlin_5 blast match_part 541 549 . . . Gap=M4 I2 M3;ID=b2g.4.8.0.12;Parent=b2g.4.8.0 +Merlin_5 blast match_part 554 576 . . . Gap=M23;ID=b2g.4.8.0.13;Parent=b2g.4.8.0 +Merlin_5 blast protein_match 0 619 7.24825e-143 . . ID=b2g.4.9.0;accession=YP_002854526;blast_align_length=602;blast_bits=438.343;blast_frame=0;blast_gaps=41;blast_identities=263;blast_positives=371;blast_query_end=576;blast_query_start=2;blast_sbjct_end=590;blast_sbjct_start=3;blast_score=1126.0;blast_strand=None;description=gp29 base plate hub %5BEnterobacteria phage RB14%5D;hit_id=gi%7C228861505%7Cref%7CYP_002854526.1%7C;hit_titles=gi%7C228861505%7Cref%7CYP_002854526.1%7C gp29 base plate hub %5BEnterobacteria phage RB14%5D,gi%7C227438521%7Cgb%7CACP30834.1%7C gp29 base plate hub %5BEnterobacteria phage RB14%5D;length=590 +Merlin_5 blast match_part 2 70 . . . Gap=M10 I1 M58;ID=b2g.4.9.0.0;Parent=b2g.4.9.0 +Merlin_5 blast match_part 81 82 . . . Gap=M2;ID=b2g.4.9.0.1;Parent=b2g.4.9.0 +Merlin_5 blast match_part 86 89 . . . Gap=M4;ID=b2g.4.9.0.2;Parent=b2g.4.9.0 +Merlin_5 blast match_part 94 114 . . . Gap=M21;ID=b2g.4.9.0.3;Parent=b2g.4.9.0 +Merlin_5 blast match_part 120 148 . . . Gap=M29;ID=b2g.4.9.0.4;Parent=b2g.4.9.0 +Merlin_5 blast match_part 153 200 . . . Gap=M48;ID=b2g.4.9.0.5;Parent=b2g.4.9.0 +Merlin_5 blast match_part 204 373 . . . Gap=M170;ID=b2g.4.9.0.6;Parent=b2g.4.9.0 +Merlin_5 blast match_part 378 382 . . . Gap=M5;ID=b2g.4.9.0.7;Parent=b2g.4.9.0 +Merlin_5 blast match_part 386 400 . . . Gap=M15;ID=b2g.4.9.0.8;Parent=b2g.4.9.0 +Merlin_5 blast match_part 404 404 . . . Gap=M1;ID=b2g.4.9.0.9;Parent=b2g.4.9.0 +Merlin_5 blast match_part 408 444 . . . Gap=M37;ID=b2g.4.9.0.10;Parent=b2g.4.9.0 +Merlin_5 blast match_part 449 449 . . . Gap=M1;ID=b2g.4.9.0.11;Parent=b2g.4.9.0 +Merlin_5 blast match_part 454 463 . . . Gap=M10;ID=b2g.4.9.0.12;Parent=b2g.4.9.0 +Merlin_5 blast match_part 467 507 . . . Gap=M35 I1 M5;ID=b2g.4.9.0.13;Parent=b2g.4.9.0 +Merlin_5 blast match_part 511 524 . . . Gap=M14;ID=b2g.4.9.0.14;Parent=b2g.4.9.0 +Merlin_5 blast match_part 532 533 . . . Gap=M2;ID=b2g.4.9.0.15;Parent=b2g.4.9.0 +Merlin_5 blast match_part 539 576 . . . Gap=M38;ID=b2g.4.9.0.16;Parent=b2g.4.9.0 +Merlin_5 blast protein_match 0 619 8.89384e-143 . . ID=b2g.4.10.0;accession=YP_006986747;blast_align_length=602;blast_bits=437.958;blast_frame=0;blast_gaps=41;blast_identities=263;blast_positives=372;blast_query_end=576;blast_query_start=2;blast_sbjct_end=590;blast_sbjct_start=3;blast_score=1125.0;blast_strand=None;description=baseplate hub subunit tail length determinator %5BEnterobacteria phage vB_EcoM_ACG-C40%5D;hit_id=gi%7C414086558%7Cref%7CYP_006986747.1%7C;hit_titles=gi%7C414086558%7Cref%7CYP_006986747.1%7C baseplate hub subunit tail length determinator %5BEnterobacteria phage vB_EcoM_ACG-C40%5D,gi%7C383396339%7Cgb%7CAFH20155.1%7C baseplate hub subunit tail length determinator %5BEnterobacteria phage vB_EcoM_ACG-C40%5D;length=590 +Merlin_5 blast match_part 2 70 . . . Gap=M10 I1 M58;ID=b2g.4.10.0.0;Parent=b2g.4.10.0 +Merlin_5 blast match_part 81 82 . . . Gap=M2;ID=b2g.4.10.0.1;Parent=b2g.4.10.0 +Merlin_5 blast match_part 86 89 . . . Gap=M4;ID=b2g.4.10.0.2;Parent=b2g.4.10.0 +Merlin_5 blast match_part 94 114 . . . Gap=M21;ID=b2g.4.10.0.3;Parent=b2g.4.10.0 +Merlin_5 blast match_part 120 128 . . . Gap=M9;ID=b2g.4.10.0.4;Parent=b2g.4.10.0 +Merlin_5 blast match_part 132 148 . . . Gap=M17;ID=b2g.4.10.0.5;Parent=b2g.4.10.0 +Merlin_5 blast match_part 153 200 . . . Gap=M48;ID=b2g.4.10.0.6;Parent=b2g.4.10.0 +Merlin_5 blast match_part 204 373 . . . Gap=M170;ID=b2g.4.10.0.7;Parent=b2g.4.10.0 +Merlin_5 blast match_part 378 382 . . . Gap=M5;ID=b2g.4.10.0.8;Parent=b2g.4.10.0 +Merlin_5 blast match_part 386 400 . . . Gap=M15;ID=b2g.4.10.0.9;Parent=b2g.4.10.0 +Merlin_5 blast match_part 404 404 . . . Gap=M1;ID=b2g.4.10.0.10;Parent=b2g.4.10.0 +Merlin_5 blast match_part 408 444 . . . Gap=M37;ID=b2g.4.10.0.11;Parent=b2g.4.10.0 +Merlin_5 blast match_part 449 449 . . . Gap=M1;ID=b2g.4.10.0.12;Parent=b2g.4.10.0 +Merlin_5 blast match_part 454 463 . . . Gap=M10;ID=b2g.4.10.0.13;Parent=b2g.4.10.0 +Merlin_5 blast match_part 467 507 . . . Gap=M35 I1 M5;ID=b2g.4.10.0.14;Parent=b2g.4.10.0 +Merlin_5 blast match_part 511 524 . . . Gap=M14;ID=b2g.4.10.0.15;Parent=b2g.4.10.0 +Merlin_5 blast match_part 532 533 . . . Gap=M2;ID=b2g.4.10.0.16;Parent=b2g.4.10.0 +Merlin_5 blast match_part 539 576 . . . Gap=M38;ID=b2g.4.10.0.17;Parent=b2g.4.10.0 +Merlin_5 blast protein_match 0 619 1.07961e-142 . . ID=b2g.4.11.0;accession=NP_049805;blast_align_length=602;blast_bits=437.573;blast_frame=0;blast_gaps=41;blast_identities=264;blast_positives=372;blast_query_end=576;blast_query_start=2;blast_sbjct_end=590;blast_sbjct_start=3;blast_score=1124.0;blast_strand=None;description=gp29 baseplate hub subunit%2C tail length determinator %5BEnterobacteria phage T4%5D;hit_id=gi%7C9632606%7Cref%7CNP_049805.1%7C;hit_titles=gi%7C9632606%7Cref%7CNP_049805.1%7C gp29 baseplate hub subunit%2C tail length determinator %5BEnterobacteria phage T4%5D,gi%7C137988%7Csp%7CP13337.1%7CVG29_BPT4 RecName: Full%3DTail-tube assembly protein Gp29%3B AltName: Full%3DFolylpolyglutamate synthase%3B AltName: Full%3DTail length regulator%3B AltName: Full%3DTetrahydrofolylpolyglutamate synthase %5BEnterobacteria phage T4%5D,gi%7C5354230%7Cgb%7CAAD42437.1%7CAF158101_24 gp29 baseplate hub subunit%2C tail length determinator %5BEnterobacteria phage T4%5D,gi%7C215946%7Cgb%7CAAA32538.1%7C tail-tube assembly protein %5BEnterobacteria phage T4%5D;length=590 +Merlin_5 blast match_part 2 70 . . . Gap=M10 I1 M58;ID=b2g.4.11.0.0;Parent=b2g.4.11.0 +Merlin_5 blast match_part 78 82 . . . Gap=M5;ID=b2g.4.11.0.1;Parent=b2g.4.11.0 +Merlin_5 blast match_part 86 89 . . . Gap=M4;ID=b2g.4.11.0.2;Parent=b2g.4.11.0 +Merlin_5 blast match_part 94 114 . . . Gap=M21;ID=b2g.4.11.0.3;Parent=b2g.4.11.0 +Merlin_5 blast match_part 120 148 . . . Gap=M29;ID=b2g.4.11.0.4;Parent=b2g.4.11.0 +Merlin_5 blast match_part 153 200 . . . Gap=M48;ID=b2g.4.11.0.5;Parent=b2g.4.11.0 +Merlin_5 blast match_part 204 373 . . . Gap=M170;ID=b2g.4.11.0.6;Parent=b2g.4.11.0 +Merlin_5 blast match_part 378 382 . . . Gap=M5;ID=b2g.4.11.0.7;Parent=b2g.4.11.0 +Merlin_5 blast match_part 386 400 . . . Gap=M15;ID=b2g.4.11.0.8;Parent=b2g.4.11.0 +Merlin_5 blast match_part 404 404 . . . Gap=M1;ID=b2g.4.11.0.9;Parent=b2g.4.11.0 +Merlin_5 blast match_part 408 444 . . . Gap=M37;ID=b2g.4.11.0.10;Parent=b2g.4.11.0 +Merlin_5 blast match_part 449 449 . . . Gap=M1;ID=b2g.4.11.0.11;Parent=b2g.4.11.0 +Merlin_5 blast match_part 454 463 . . . Gap=M10;ID=b2g.4.11.0.12;Parent=b2g.4.11.0 +Merlin_5 blast match_part 467 507 . . . Gap=M35 I1 M5;ID=b2g.4.11.0.13;Parent=b2g.4.11.0 +Merlin_5 blast match_part 511 524 . . . Gap=M14;ID=b2g.4.11.0.14;Parent=b2g.4.11.0 +Merlin_5 blast match_part 532 533 . . . Gap=M2;ID=b2g.4.11.0.15;Parent=b2g.4.11.0 +Merlin_5 blast match_part 539 576 . . . Gap=M38;ID=b2g.4.11.0.16;Parent=b2g.4.11.0 +Merlin_5 blast protein_match 0 622 1.95194e-142 . . ID=b2g.4.12.0;accession=AGR46140;blast_align_length=605;blast_bits=437.187;blast_frame=0;blast_gaps=47;blast_identities=267;blast_positives=373;blast_query_end=576;blast_query_start=2;blast_sbjct_end=590;blast_sbjct_start=3;blast_score=1123.0;blast_strand=None;description=baseplate hub subunit %5BYersinia phage PST%5D;hit_id=gi%7C525334458%7Cgb%7CAGR46140.1%7C;hit_titles=gi%7C525334458%7Cgb%7CAGR46140.1%7C baseplate hub subunit %5BYersinia phage PST%5D;length=590 +Merlin_5 blast match_part 2 82 . . . Gap=M10 I1 M70;ID=b2g.4.12.0.0;Parent=b2g.4.12.0 +Merlin_5 blast match_part 89 89 . . . Gap=M1;ID=b2g.4.12.0.1;Parent=b2g.4.12.0 +Merlin_5 blast match_part 94 114 . . . Gap=M21;ID=b2g.4.12.0.2;Parent=b2g.4.12.0 +Merlin_5 blast match_part 120 148 . . . Gap=M29;ID=b2g.4.12.0.3;Parent=b2g.4.12.0 +Merlin_5 blast match_part 153 200 . . . Gap=M48;ID=b2g.4.12.0.4;Parent=b2g.4.12.0 +Merlin_5 blast match_part 204 373 . . . Gap=M170;ID=b2g.4.12.0.5;Parent=b2g.4.12.0 +Merlin_5 blast match_part 378 382 . . . Gap=M5;ID=b2g.4.12.0.6;Parent=b2g.4.12.0 +Merlin_5 blast match_part 386 400 . . . Gap=M15;ID=b2g.4.12.0.7;Parent=b2g.4.12.0 +Merlin_5 blast match_part 404 404 . . . Gap=M1;ID=b2g.4.12.0.8;Parent=b2g.4.12.0 +Merlin_5 blast match_part 408 444 . . . Gap=M37;ID=b2g.4.12.0.9;Parent=b2g.4.12.0 +Merlin_5 blast match_part 449 449 . . . Gap=M1;ID=b2g.4.12.0.10;Parent=b2g.4.12.0 +Merlin_5 blast match_part 454 463 . . . Gap=M10;ID=b2g.4.12.0.11;Parent=b2g.4.12.0 +Merlin_5 blast match_part 467 507 . . . Gap=M35 I1 M5;ID=b2g.4.12.0.12;Parent=b2g.4.12.0 +Merlin_5 blast match_part 511 524 . . . Gap=M14;ID=b2g.4.12.0.13;Parent=b2g.4.12.0 +Merlin_5 blast match_part 532 533 . . . Gap=M2;ID=b2g.4.12.0.14;Parent=b2g.4.12.0 +Merlin_5 blast match_part 539 576 . . . Gap=M38;ID=b2g.4.12.0.15;Parent=b2g.4.12.0 +Merlin_5 blast protein_match 0 619 2.03785e-142 . . ID=b2g.4.13.0;accession=ADJ39915;blast_align_length=602;blast_bits=437.187;blast_frame=0;blast_gaps=41;blast_identities=264;blast_positives=371;blast_query_end=576;blast_query_start=2;blast_sbjct_end=590;blast_sbjct_start=3;blast_score=1123.0;blast_strand=None;description=baseplate hub subunit tail length determinator %5BEnterobacteria phage T4T%5D;hit_id=gi%7C299780553%7Cgb%7CADJ39915.1%7C;hit_titles=gi%7C299780553%7Cgb%7CADJ39915.1%7C baseplate hub subunit tail length determinator %5BEnterobacteria phage T4T%5D;length=590 +Merlin_5 blast match_part 2 70 . . . Gap=M10 I1 M58;ID=b2g.4.13.0.0;Parent=b2g.4.13.0 +Merlin_5 blast match_part 81 82 . . . Gap=M2;ID=b2g.4.13.0.1;Parent=b2g.4.13.0 +Merlin_5 blast match_part 86 89 . . . Gap=M4;ID=b2g.4.13.0.2;Parent=b2g.4.13.0 +Merlin_5 blast match_part 94 114 . . . Gap=M21;ID=b2g.4.13.0.3;Parent=b2g.4.13.0 +Merlin_5 blast match_part 120 148 . . . Gap=M29;ID=b2g.4.13.0.4;Parent=b2g.4.13.0 +Merlin_5 blast match_part 153 200 . . . Gap=M48;ID=b2g.4.13.0.5;Parent=b2g.4.13.0 +Merlin_5 blast match_part 204 373 . . . Gap=M170;ID=b2g.4.13.0.6;Parent=b2g.4.13.0 +Merlin_5 blast match_part 378 382 . . . Gap=M5;ID=b2g.4.13.0.7;Parent=b2g.4.13.0 +Merlin_5 blast match_part 386 400 . . . Gap=M15;ID=b2g.4.13.0.8;Parent=b2g.4.13.0 +Merlin_5 blast match_part 404 404 . . . Gap=M1;ID=b2g.4.13.0.9;Parent=b2g.4.13.0 +Merlin_5 blast match_part 408 444 . . . Gap=M37;ID=b2g.4.13.0.10;Parent=b2g.4.13.0 +Merlin_5 blast match_part 449 449 . . . Gap=M1;ID=b2g.4.13.0.11;Parent=b2g.4.13.0 +Merlin_5 blast match_part 454 463 . . . Gap=M10;ID=b2g.4.13.0.12;Parent=b2g.4.13.0 +Merlin_5 blast match_part 467 507 . . . Gap=M35 I1 M5;ID=b2g.4.13.0.13;Parent=b2g.4.13.0 +Merlin_5 blast match_part 511 524 . . . Gap=M14;ID=b2g.4.13.0.14;Parent=b2g.4.13.0 +Merlin_5 blast match_part 532 533 . . . Gap=M2;ID=b2g.4.13.0.15;Parent=b2g.4.13.0 +Merlin_5 blast match_part 539 576 . . . Gap=M38;ID=b2g.4.13.0.16;Parent=b2g.4.13.0 +Merlin_5 blast protein_match 0 615 1.93327e-137 . . ID=b2g.4.14.0;accession=YP_004415085;blast_align_length=598;blast_bits=424.091;blast_frame=0;blast_gaps=33;blast_identities=261;blast_positives=368;blast_query_end=576;blast_query_start=2;blast_sbjct_end=590;blast_sbjct_start=3;blast_score=1089.0;blast_strand=None;description=putative baseplate hub subunit and tail length determinator %5BShigella phage Shfl2%5D;hit_id=gi%7C330858710%7Cref%7CYP_004415085.1%7C;hit_titles=gi%7C330858710%7Cref%7CYP_004415085.1%7C putative baseplate hub subunit and tail length determinator %5BShigella phage Shfl2%5D,gi%7C327397644%7Cgb%7CAEA73146.1%7C putative baseplate hub subunit and tail length determinator %5BShigella phage Shfl2%5D;length=590 +Merlin_5 blast match_part 2 70 . . . Gap=M10 I1 M58;ID=b2g.4.14.0.0;Parent=b2g.4.14.0 +Merlin_5 blast match_part 81 82 . . . Gap=M2;ID=b2g.4.14.0.1;Parent=b2g.4.14.0 +Merlin_5 blast match_part 86 89 . . . Gap=M4;ID=b2g.4.14.0.2;Parent=b2g.4.14.0 +Merlin_5 blast match_part 94 114 . . . Gap=M21;ID=b2g.4.14.0.3;Parent=b2g.4.14.0 +Merlin_5 blast match_part 120 148 . . . Gap=M29;ID=b2g.4.14.0.4;Parent=b2g.4.14.0 +Merlin_5 blast match_part 153 200 . . . Gap=M48;ID=b2g.4.14.0.5;Parent=b2g.4.14.0 +Merlin_5 blast match_part 204 373 . . . Gap=M170;ID=b2g.4.14.0.6;Parent=b2g.4.14.0 +Merlin_5 blast match_part 378 382 . . . Gap=M5;ID=b2g.4.14.0.7;Parent=b2g.4.14.0 +Merlin_5 blast match_part 386 400 . . . Gap=M15;ID=b2g.4.14.0.8;Parent=b2g.4.14.0 +Merlin_5 blast match_part 404 404 . . . Gap=M1;ID=b2g.4.14.0.9;Parent=b2g.4.14.0 +Merlin_5 blast match_part 408 444 . . . Gap=M37;ID=b2g.4.14.0.10;Parent=b2g.4.14.0 +Merlin_5 blast match_part 449 449 . . . Gap=M1;ID=b2g.4.14.0.11;Parent=b2g.4.14.0 +Merlin_5 blast match_part 454 463 . . . Gap=M10;ID=b2g.4.14.0.12;Parent=b2g.4.14.0 +Merlin_5 blast match_part 467 507 . . . Gap=M35 I1 M5;ID=b2g.4.14.0.13;Parent=b2g.4.14.0 +Merlin_5 blast match_part 511 532 . . . Gap=M14 I2 M6;ID=b2g.4.14.0.14;Parent=b2g.4.14.0 +Merlin_5 blast match_part 540 544 . . . Gap=M5;ID=b2g.4.14.0.15;Parent=b2g.4.14.0 +Merlin_5 blast match_part 551 552 . . . Gap=M2;ID=b2g.4.14.0.16;Parent=b2g.4.14.0 +Merlin_5 blast match_part 556 576 . . . Gap=M21;ID=b2g.4.14.0.17;Parent=b2g.4.14.0 +Merlin_5 blast protein_match 0 619 3.75934e-136 . . ID=b2g.4.15.0;accession=AFO10716;blast_align_length=602;blast_bits=421.009;blast_frame=0;blast_gaps=41;blast_identities=263;blast_positives=373;blast_query_end=576;blast_query_start=2;blast_sbjct_end=590;blast_sbjct_start=3;blast_score=1081.0;blast_strand=None;description=baseplate hub protein %5BEscherichia phage ECML-134%5D;hit_id=gi%7C397134209%7Cgb%7CAFO10716.1%7C;hit_titles=gi%7C397134209%7Cgb%7CAFO10716.1%7C baseplate hub protein %5BEscherichia phage ECML-134%5D;length=590 +Merlin_5 blast match_part 2 70 . . . Gap=M10 I1 M58;ID=b2g.4.15.0.0;Parent=b2g.4.15.0 +Merlin_5 blast match_part 81 82 . . . Gap=M2;ID=b2g.4.15.0.1;Parent=b2g.4.15.0 +Merlin_5 blast match_part 86 89 . . . Gap=M4;ID=b2g.4.15.0.2;Parent=b2g.4.15.0 +Merlin_5 blast match_part 94 114 . . . Gap=M21;ID=b2g.4.15.0.3;Parent=b2g.4.15.0 +Merlin_5 blast match_part 120 148 . . . Gap=M29;ID=b2g.4.15.0.4;Parent=b2g.4.15.0 +Merlin_5 blast match_part 153 200 . . . Gap=M48;ID=b2g.4.15.0.5;Parent=b2g.4.15.0 +Merlin_5 blast match_part 204 373 . . . Gap=M170;ID=b2g.4.15.0.6;Parent=b2g.4.15.0 +Merlin_5 blast match_part 378 382 . . . Gap=M5;ID=b2g.4.15.0.7;Parent=b2g.4.15.0 +Merlin_5 blast match_part 386 400 . . . Gap=M15;ID=b2g.4.15.0.8;Parent=b2g.4.15.0 +Merlin_5 blast match_part 404 404 . . . Gap=M1;ID=b2g.4.15.0.9;Parent=b2g.4.15.0 +Merlin_5 blast match_part 408 444 . . . Gap=M37;ID=b2g.4.15.0.10;Parent=b2g.4.15.0 +Merlin_5 blast match_part 449 449 . . . Gap=M1;ID=b2g.4.15.0.11;Parent=b2g.4.15.0 +Merlin_5 blast match_part 454 463 . . . Gap=M10;ID=b2g.4.15.0.12;Parent=b2g.4.15.0 +Merlin_5 blast match_part 467 507 . . . Gap=M35 I1 M5;ID=b2g.4.15.0.13;Parent=b2g.4.15.0 +Merlin_5 blast match_part 511 524 . . . Gap=M14;ID=b2g.4.15.0.14;Parent=b2g.4.15.0 +Merlin_5 blast match_part 532 533 . . . Gap=M2;ID=b2g.4.15.0.15;Parent=b2g.4.15.0 +Merlin_5 blast match_part 539 576 . . . Gap=M38;ID=b2g.4.15.0.16;Parent=b2g.4.15.0 +Merlin_5 blast protein_match 0 619 5.49342e-131 . . ID=b2g.4.16.0;accession=YP_803132;blast_align_length=602;blast_bits=407.527;blast_frame=0;blast_gaps=41;blast_identities=261;blast_positives=372;blast_query_end=576;blast_query_start=2;blast_sbjct_end=590;blast_sbjct_start=3;blast_score=1046.0;blast_strand=None;description=base plate hub %5BEnterobacteria phage RB32%5D;hit_id=gi%7C116326412%7Cref%7CYP_803132.1%7C;hit_titles=gi%7C116326412%7Cref%7CYP_803132.1%7C base plate hub %5BEnterobacteria phage RB32%5D,gi%7C115344005%7Cgb%7CABI95014.1%7C base plate hub %5BEnterobacteria phage RB32%5D;length=590 +Merlin_5 blast match_part 2 70 . . . Gap=M10 I1 M58;ID=b2g.4.16.0.0;Parent=b2g.4.16.0 +Merlin_5 blast match_part 81 82 . . . Gap=M2;ID=b2g.4.16.0.1;Parent=b2g.4.16.0 +Merlin_5 blast match_part 86 89 . . . Gap=M4;ID=b2g.4.16.0.2;Parent=b2g.4.16.0 +Merlin_5 blast match_part 94 114 . . . Gap=M21;ID=b2g.4.16.0.3;Parent=b2g.4.16.0 +Merlin_5 blast match_part 120 148 . . . Gap=M29;ID=b2g.4.16.0.4;Parent=b2g.4.16.0 +Merlin_5 blast match_part 153 200 . . . Gap=M48;ID=b2g.4.16.0.5;Parent=b2g.4.16.0 +Merlin_5 blast match_part 204 373 . . . Gap=M170;ID=b2g.4.16.0.6;Parent=b2g.4.16.0 +Merlin_5 blast match_part 378 382 . . . Gap=M5;ID=b2g.4.16.0.7;Parent=b2g.4.16.0 +Merlin_5 blast match_part 386 400 . . . Gap=M15;ID=b2g.4.16.0.8;Parent=b2g.4.16.0 +Merlin_5 blast match_part 404 404 . . . Gap=M1;ID=b2g.4.16.0.9;Parent=b2g.4.16.0 +Merlin_5 blast match_part 408 444 . . . Gap=M37;ID=b2g.4.16.0.10;Parent=b2g.4.16.0 +Merlin_5 blast match_part 449 449 . . . Gap=M1;ID=b2g.4.16.0.11;Parent=b2g.4.16.0 +Merlin_5 blast match_part 454 463 . . . Gap=M10;ID=b2g.4.16.0.12;Parent=b2g.4.16.0 +Merlin_5 blast match_part 467 507 . . . Gap=M35 I1 M5;ID=b2g.4.16.0.13;Parent=b2g.4.16.0 +Merlin_5 blast match_part 511 524 . . . Gap=M14;ID=b2g.4.16.0.14;Parent=b2g.4.16.0 +Merlin_5 blast match_part 532 533 . . . Gap=M2;ID=b2g.4.16.0.15;Parent=b2g.4.16.0 +Merlin_5 blast match_part 539 576 . . . Gap=M38;ID=b2g.4.16.0.16;Parent=b2g.4.16.0 +Merlin_5 blast protein_match 0 619 4.84152e-128 . . ID=b2g.4.17.0;accession=YP_009030799;blast_align_length=602;blast_bits=399.823;blast_frame=0;blast_gaps=41;blast_identities=255;blast_positives=369;blast_query_end=576;blast_query_start=2;blast_sbjct_end=590;blast_sbjct_start=3;blast_score=1026.0;blast_strand=None;description=baseplate hub subunit tail length determinator %5BEscherichia phage e11/2%5D;hit_id=gi%7C639438842%7Cref%7CYP_009030799.1%7C;hit_titles=gi%7C639438842%7Cref%7CYP_009030799.1%7C baseplate hub subunit tail length determinator %5BEscherichia phage e11/2%5D,gi%7C628971670%7Cgb%7CAHY83392.1%7C baseplate hub subunit tail length determinator %5BEscherichia phage e11/2%5D;length=590 +Merlin_5 blast match_part 2 70 . . . Gap=M10 I1 M58;ID=b2g.4.17.0.0;Parent=b2g.4.17.0 +Merlin_5 blast match_part 81 82 . . . Gap=M2;ID=b2g.4.17.0.1;Parent=b2g.4.17.0 +Merlin_5 blast match_part 86 89 . . . Gap=M4;ID=b2g.4.17.0.2;Parent=b2g.4.17.0 +Merlin_5 blast match_part 94 114 . . . Gap=M21;ID=b2g.4.17.0.3;Parent=b2g.4.17.0 +Merlin_5 blast match_part 120 148 . . . Gap=M29;ID=b2g.4.17.0.4;Parent=b2g.4.17.0 +Merlin_5 blast match_part 153 200 . . . Gap=M48;ID=b2g.4.17.0.5;Parent=b2g.4.17.0 +Merlin_5 blast match_part 204 373 . . . Gap=M170;ID=b2g.4.17.0.6;Parent=b2g.4.17.0 +Merlin_5 blast match_part 378 382 . . . Gap=M5;ID=b2g.4.17.0.7;Parent=b2g.4.17.0 +Merlin_5 blast match_part 386 400 . . . Gap=M15;ID=b2g.4.17.0.8;Parent=b2g.4.17.0 +Merlin_5 blast match_part 404 404 . . . Gap=M1;ID=b2g.4.17.0.9;Parent=b2g.4.17.0 +Merlin_5 blast match_part 408 444 . . . Gap=M37;ID=b2g.4.17.0.10;Parent=b2g.4.17.0 +Merlin_5 blast match_part 449 449 . . . Gap=M1;ID=b2g.4.17.0.11;Parent=b2g.4.17.0 +Merlin_5 blast match_part 454 463 . . . Gap=M10;ID=b2g.4.17.0.12;Parent=b2g.4.17.0 +Merlin_5 blast match_part 467 507 . . . Gap=M35 I1 M5;ID=b2g.4.17.0.13;Parent=b2g.4.17.0 +Merlin_5 blast match_part 511 524 . . . Gap=M14;ID=b2g.4.17.0.14;Parent=b2g.4.17.0 +Merlin_5 blast match_part 532 533 . . . Gap=M2;ID=b2g.4.17.0.15;Parent=b2g.4.17.0 +Merlin_5 blast match_part 539 576 . . . Gap=M38;ID=b2g.4.17.0.16;Parent=b2g.4.17.0 +Merlin_5 blast protein_match 218 605 1.22596e-95 . . ID=b2g.4.18.0;accession=CCI89087;blast_align_length=377;blast_bits=308.531;blast_frame=0;blast_gaps=26;blast_identities=169;blast_positives=239;blast_query_end=576;blast_query_start=218;blast_sbjct_end=369;blast_sbjct_start=1;blast_score=789.0;blast_strand=None;description=phage baseplate hub %5BYersinia phage phiD1%5D;hit_id=gi%7C398313740%7Cemb%7CCCI89087.1%7C;hit_titles=gi%7C398313740%7Cemb%7CCCI89087.1%7C phage baseplate hub %5BYersinia phage phiD1%5D;length=369 +Merlin_5 blast match_part 218 373 . . . Gap=M156;ID=b2g.4.18.0.0;Parent=b2g.4.18.0 +Merlin_5 blast match_part 378 382 . . . Gap=M5;ID=b2g.4.18.0.1;Parent=b2g.4.18.0 +Merlin_5 blast match_part 386 400 . . . Gap=M15;ID=b2g.4.18.0.2;Parent=b2g.4.18.0 +Merlin_5 blast match_part 404 404 . . . Gap=M1;ID=b2g.4.18.0.3;Parent=b2g.4.18.0 +Merlin_5 blast match_part 408 444 . . . Gap=M37;ID=b2g.4.18.0.4;Parent=b2g.4.18.0 +Merlin_5 blast match_part 449 449 . . . Gap=M1;ID=b2g.4.18.0.5;Parent=b2g.4.18.0 +Merlin_5 blast match_part 454 463 . . . Gap=M10;ID=b2g.4.18.0.6;Parent=b2g.4.18.0 +Merlin_5 blast match_part 467 507 . . . Gap=M35 I1 M5;ID=b2g.4.18.0.7;Parent=b2g.4.18.0 +Merlin_5 blast match_part 511 524 . . . Gap=M14;ID=b2g.4.18.0.8;Parent=b2g.4.18.0 +Merlin_5 blast match_part 532 533 . . . Gap=M2;ID=b2g.4.18.0.9;Parent=b2g.4.18.0 +Merlin_5 blast match_part 539 576 . . . Gap=M38;ID=b2g.4.18.0.10;Parent=b2g.4.18.0 +Merlin_5 blast protein_match 1 609 2.81533e-89 . . ID=b2g.4.19.0;accession=YP_007236029;blast_align_length=602;blast_bits=298.516;blast_frame=0;blast_gaps=46;blast_identities=217;blast_positives=334;blast_query_end=576;blast_query_start=1;blast_sbjct_end=582;blast_sbjct_start=1;blast_score=763.0;blast_strand=None;description=phage baseplate hub %5BYersinia phage phiR1-RT%5D;hit_id=gi%7C431809132%7Cref%7CYP_007236029.1%7C;hit_titles=gi%7C431809132%7Cref%7CYP_007236029.1%7C phage baseplate hub %5BYersinia phage phiR1-RT%5D,gi%7C398313421%7Cemb%7CCCI88770.1%7C phage baseplate hub %5BYersinia phage phiR1-RT%5D;length=582 +Merlin_5 blast match_part 1 5 . . . Gap=M5;ID=b2g.4.19.0.0;Parent=b2g.4.19.0 +Merlin_5 blast match_part 11 70 . . . Gap=M60;ID=b2g.4.19.0.1;Parent=b2g.4.19.0 +Merlin_5 blast match_part 74 80 . . . Gap=M7;ID=b2g.4.19.0.2;Parent=b2g.4.19.0 +Merlin_5 blast match_part 84 84 . . . Gap=M1;ID=b2g.4.19.0.3;Parent=b2g.4.19.0 +Merlin_5 blast match_part 88 112 . . . Gap=M25;ID=b2g.4.19.0.4;Parent=b2g.4.19.0 +Merlin_5 blast match_part 117 118 . . . Gap=M2;ID=b2g.4.19.0.5;Parent=b2g.4.19.0 +Merlin_5 blast match_part 123 130 . . . Gap=M8;ID=b2g.4.19.0.6;Parent=b2g.4.19.0 +Merlin_5 blast match_part 138 150 . . . Gap=M13;ID=b2g.4.19.0.7;Parent=b2g.4.19.0 +Merlin_5 blast match_part 154 166 . . . Gap=M13;ID=b2g.4.19.0.8;Parent=b2g.4.19.0 +Merlin_5 blast match_part 175 181 . . . Gap=M7;ID=b2g.4.19.0.9;Parent=b2g.4.19.0 +Merlin_5 blast match_part 185 286 . . . Gap=M102;ID=b2g.4.19.0.10;Parent=b2g.4.19.0 +Merlin_5 blast match_part 290 309 . . . Gap=M20;ID=b2g.4.19.0.11;Parent=b2g.4.19.0 +Merlin_5 blast match_part 313 374 . . . Gap=M62;ID=b2g.4.19.0.12;Parent=b2g.4.19.0 +Merlin_5 blast match_part 381 382 . . . Gap=M2;ID=b2g.4.19.0.13;Parent=b2g.4.19.0 +Merlin_5 blast match_part 389 392 . . . Gap=M4;ID=b2g.4.19.0.14;Parent=b2g.4.19.0 +Merlin_5 blast match_part 396 424 . . . Gap=M5 I1 M23;ID=b2g.4.19.0.15;Parent=b2g.4.19.0 +Merlin_5 blast match_part 428 444 . . . Gap=M17;ID=b2g.4.19.0.16;Parent=b2g.4.19.0 +Merlin_5 blast match_part 448 452 . . . Gap=M5;ID=b2g.4.19.0.17;Parent=b2g.4.19.0 +Merlin_5 blast match_part 456 462 . . . Gap=M7;ID=b2g.4.19.0.18;Parent=b2g.4.19.0 +Merlin_5 blast match_part 467 500 . . . Gap=M34;ID=b2g.4.19.0.19;Parent=b2g.4.19.0 +Merlin_5 blast match_part 510 511 . . . Gap=M2;ID=b2g.4.19.0.20;Parent=b2g.4.19.0 +Merlin_5 blast match_part 515 530 . . . Gap=M16;ID=b2g.4.19.0.21;Parent=b2g.4.19.0 +Merlin_5 blast match_part 534 535 . . . Gap=M2;ID=b2g.4.19.0.22;Parent=b2g.4.19.0 +Merlin_5 blast match_part 543 558 . . . Gap=M16;ID=b2g.4.19.0.23;Parent=b2g.4.19.0 +Merlin_5 blast match_part 562 576 . . . Gap=M15;ID=b2g.4.19.0.24;Parent=b2g.4.19.0 +Merlin_5 blast protein_match 1 607 3.573e-78 . . ID=b2g.4.20.0;accession=YP_007004252;blast_align_length=604;blast_bits=269.24;blast_frame=0;blast_gaps=54;blast_identities=204;blast_positives=331;blast_query_end=576;blast_query_start=1;blast_sbjct_end=578;blast_sbjct_start=1;blast_score=687.0;blast_strand=None;description=baseplate hub subunit %5BEnterobacteria phage Bp7%5D;hit_id=gi%7C422934216%7Cref%7CYP_007004252.1%7C;hit_titles=gi%7C422934216%7Cref%7CYP_007004252.1%7C baseplate hub subunit %5BEnterobacteria phage Bp7%5D,gi%7C345450725%7Cgb%7CAEN93928.1%7C baseplate hub subunit %5BEnterobacteria phage Bp7%5D;length=578 +Merlin_5 blast match_part 1 17 . . . Gap=M17;ID=b2g.4.20.0.0;Parent=b2g.4.20.0 +Merlin_5 blast match_part 21 38 . . . Gap=M18;ID=b2g.4.20.0.1;Parent=b2g.4.20.0 +Merlin_5 blast match_part 42 80 . . . Gap=M39;ID=b2g.4.20.0.2;Parent=b2g.4.20.0 +Merlin_5 blast match_part 85 92 . . . Gap=M8;ID=b2g.4.20.0.3;Parent=b2g.4.20.0 +Merlin_5 blast match_part 98 112 . . . Gap=M15;ID=b2g.4.20.0.4;Parent=b2g.4.20.0 +Merlin_5 blast match_part 116 116 . . . Gap=M1;ID=b2g.4.20.0.5;Parent=b2g.4.20.0 +Merlin_5 blast match_part 120 120 . . . Gap=M1;ID=b2g.4.20.0.6;Parent=b2g.4.20.0 +Merlin_5 blast match_part 124 126 . . . Gap=M3;ID=b2g.4.20.0.7;Parent=b2g.4.20.0 +Merlin_5 blast match_part 131 158 . . . Gap=M28;ID=b2g.4.20.0.8;Parent=b2g.4.20.0 +Merlin_5 blast match_part 162 170 . . . Gap=M9;ID=b2g.4.20.0.9;Parent=b2g.4.20.0 +Merlin_5 blast match_part 175 279 . . . Gap=M105;ID=b2g.4.20.0.10;Parent=b2g.4.20.0 +Merlin_5 blast match_part 285 333 . . . Gap=M49;ID=b2g.4.20.0.11;Parent=b2g.4.20.0 +Merlin_5 blast match_part 338 386 . . . Gap=M49;ID=b2g.4.20.0.12;Parent=b2g.4.20.0 +Merlin_5 blast match_part 395 406 . . . Gap=M4 I1 M7;ID=b2g.4.20.0.13;Parent=b2g.4.20.0 +Merlin_5 blast match_part 410 410 . . . Gap=M1;ID=b2g.4.20.0.14;Parent=b2g.4.20.0 +Merlin_5 blast match_part 414 416 . . . Gap=M3;ID=b2g.4.20.0.15;Parent=b2g.4.20.0 +Merlin_5 blast match_part 422 426 . . . Gap=M5;ID=b2g.4.20.0.16;Parent=b2g.4.20.0 +Merlin_5 blast match_part 430 443 . . . Gap=M14;ID=b2g.4.20.0.17;Parent=b2g.4.20.0 +Merlin_5 blast match_part 447 448 . . . Gap=M2;ID=b2g.4.20.0.18;Parent=b2g.4.20.0 +Merlin_5 blast match_part 452 460 . . . Gap=M9;ID=b2g.4.20.0.19;Parent=b2g.4.20.0 +Merlin_5 blast match_part 467 476 . . . Gap=M10;ID=b2g.4.20.0.20;Parent=b2g.4.20.0 +Merlin_5 blast match_part 480 487 . . . Gap=M8;ID=b2g.4.20.0.21;Parent=b2g.4.20.0 +Merlin_5 blast match_part 491 492 . . . Gap=M2;ID=b2g.4.20.0.22;Parent=b2g.4.20.0 +Merlin_5 blast match_part 497 501 . . . Gap=M5;ID=b2g.4.20.0.23;Parent=b2g.4.20.0 +Merlin_5 blast match_part 505 524 . . . Gap=M20;ID=b2g.4.20.0.24;Parent=b2g.4.20.0 +Merlin_5 blast match_part 528 535 . . . Gap=M8;ID=b2g.4.20.0.25;Parent=b2g.4.20.0 +Merlin_5 blast match_part 543 547 . . . Gap=M5;ID=b2g.4.20.0.26;Parent=b2g.4.20.0 +Merlin_5 blast match_part 552 558 . . . Gap=M7;ID=b2g.4.20.0.27;Parent=b2g.4.20.0 +Merlin_5 blast match_part 562 576 . . . Gap=M15;ID=b2g.4.20.0.28;Parent=b2g.4.20.0 +Merlin_5 blast protein_match 0 614 3.63307e-78 . . ID=b2g.4.21.0;accession=YP_004063890;blast_align_length=606;blast_bits=269.24;blast_frame=0;blast_gaps=58;blast_identities=186;blast_positives=328;blast_query_end=576;blast_query_start=2;blast_sbjct_end=581;blast_sbjct_start=3;blast_score=687.0;blast_strand=None;description=gp29 baseplate hub subunit tail length determinator %5BEnterobacteria phage vB_EcoM-VR7%5D;hit_id=gi%7C314121771%7Cref%7CYP_004063890.1%7C;hit_titles=gi%7C314121771%7Cref%7CYP_004063890.1%7C gp29 baseplate hub subunit tail length determinator %5BEnterobacteria phage vB_EcoM-VR7%5D,gi%7C313151528%7Cgb%7CADR32584.1%7C gp29 baseplate hub subunit tail length determinator %5BEnterobacteria phage vB_EcoM-VR7%5D;length=581 +Merlin_5 blast match_part 2 3 . . . Gap=M2;ID=b2g.4.21.0.0;Parent=b2g.4.21.0 +Merlin_5 blast match_part 7 17 . . . Gap=M11;ID=b2g.4.21.0.1;Parent=b2g.4.21.0 +Merlin_5 blast match_part 21 38 . . . Gap=M18;ID=b2g.4.21.0.2;Parent=b2g.4.21.0 +Merlin_5 blast match_part 42 94 . . . Gap=M53;ID=b2g.4.21.0.3;Parent=b2g.4.21.0 +Merlin_5 blast match_part 98 113 . . . Gap=M16;ID=b2g.4.21.0.4;Parent=b2g.4.21.0 +Merlin_5 blast match_part 123 145 . . . Gap=M23;ID=b2g.4.21.0.5;Parent=b2g.4.21.0 +Merlin_5 blast match_part 153 158 . . . Gap=M6;ID=b2g.4.21.0.6;Parent=b2g.4.21.0 +Merlin_5 blast match_part 164 186 . . . Gap=M8 I1 M14;ID=b2g.4.21.0.7;Parent=b2g.4.21.0 +Merlin_5 blast match_part 192 233 . . . Gap=M42;ID=b2g.4.21.0.8;Parent=b2g.4.21.0 +Merlin_5 blast match_part 237 258 . . . Gap=M22;ID=b2g.4.21.0.9;Parent=b2g.4.21.0 +Merlin_5 blast match_part 262 279 . . . Gap=M18;ID=b2g.4.21.0.10;Parent=b2g.4.21.0 +Merlin_5 blast match_part 285 290 . . . Gap=M6;ID=b2g.4.21.0.11;Parent=b2g.4.21.0 +Merlin_5 blast match_part 294 386 . . . Gap=M93;ID=b2g.4.21.0.12;Parent=b2g.4.21.0 +Merlin_5 blast match_part 395 406 . . . Gap=M4 I1 M7;ID=b2g.4.21.0.13;Parent=b2g.4.21.0 +Merlin_5 blast match_part 410 410 . . . Gap=M1;ID=b2g.4.21.0.14;Parent=b2g.4.21.0 +Merlin_5 blast match_part 414 416 . . . Gap=M3;ID=b2g.4.21.0.15;Parent=b2g.4.21.0 +Merlin_5 blast match_part 422 426 . . . Gap=M5;ID=b2g.4.21.0.16;Parent=b2g.4.21.0 +Merlin_5 blast match_part 430 443 . . . Gap=M14;ID=b2g.4.21.0.17;Parent=b2g.4.21.0 +Merlin_5 blast match_part 447 448 . . . Gap=M2;ID=b2g.4.21.0.18;Parent=b2g.4.21.0 +Merlin_5 blast match_part 452 476 . . . Gap=M25;ID=b2g.4.21.0.19;Parent=b2g.4.21.0 +Merlin_5 blast match_part 480 485 . . . Gap=M6;ID=b2g.4.21.0.20;Parent=b2g.4.21.0 +Merlin_5 blast match_part 490 493 . . . Gap=M4;ID=b2g.4.21.0.21;Parent=b2g.4.21.0 +Merlin_5 blast match_part 497 502 . . . Gap=M6;ID=b2g.4.21.0.22;Parent=b2g.4.21.0 +Merlin_5 blast match_part 506 507 . . . Gap=M2;ID=b2g.4.21.0.23;Parent=b2g.4.21.0 +Merlin_5 blast match_part 513 518 . . . Gap=M6;ID=b2g.4.21.0.24;Parent=b2g.4.21.0 +Merlin_5 blast match_part 522 524 . . . Gap=M3;ID=b2g.4.21.0.25;Parent=b2g.4.21.0 +Merlin_5 blast match_part 528 530 . . . Gap=M3;ID=b2g.4.21.0.26;Parent=b2g.4.21.0 +Merlin_5 blast match_part 534 534 . . . Gap=M1;ID=b2g.4.21.0.27;Parent=b2g.4.21.0 +Merlin_5 blast match_part 542 558 . . . Gap=M17;ID=b2g.4.21.0.28;Parent=b2g.4.21.0 +Merlin_5 blast match_part 562 576 . . . Gap=M15;ID=b2g.4.21.0.29;Parent=b2g.4.21.0 +Merlin_5 blast protein_match 1 608 2.99001e-77 . . ID=b2g.4.22.0;accession=YP_003734334;blast_align_length=605;blast_bits=266.929;blast_frame=0;blast_gaps=56;blast_identities=203;blast_positives=335;blast_query_end=576;blast_query_start=1;blast_sbjct_end=578;blast_sbjct_start=1;blast_score=681.0;blast_strand=None;description=29 gene product %5BEnterobacteria phage IME08%5D;hit_id=gi%7C299779140%7Cref%7CYP_003734334.1%7C;hit_titles=gi%7C299779140%7Cref%7CYP_003734334.1%7C 29 gene product %5BEnterobacteria phage IME08%5D,gi%7C298105869%7Cgb%7CADI55513.1%7C gp29 baseplate hub subunit %5BEnterobacteria phage IME08%5D;length=578 +Merlin_5 blast match_part 1 17 . . . Gap=M17;ID=b2g.4.22.0.0;Parent=b2g.4.22.0 +Merlin_5 blast match_part 21 38 . . . Gap=M18;ID=b2g.4.22.0.1;Parent=b2g.4.22.0 +Merlin_5 blast match_part 42 80 . . . Gap=M39;ID=b2g.4.22.0.2;Parent=b2g.4.22.0 +Merlin_5 blast match_part 85 92 . . . Gap=M8;ID=b2g.4.22.0.3;Parent=b2g.4.22.0 +Merlin_5 blast match_part 98 112 . . . Gap=M15;ID=b2g.4.22.0.4;Parent=b2g.4.22.0 +Merlin_5 blast match_part 116 116 . . . Gap=M1;ID=b2g.4.22.0.5;Parent=b2g.4.22.0 +Merlin_5 blast match_part 120 120 . . . Gap=M1;ID=b2g.4.22.0.6;Parent=b2g.4.22.0 +Merlin_5 blast match_part 124 126 . . . Gap=M3;ID=b2g.4.22.0.7;Parent=b2g.4.22.0 +Merlin_5 blast match_part 131 158 . . . Gap=M28;ID=b2g.4.22.0.8;Parent=b2g.4.22.0 +Merlin_5 blast match_part 162 170 . . . Gap=M9;ID=b2g.4.22.0.9;Parent=b2g.4.22.0 +Merlin_5 blast match_part 175 279 . . . Gap=M105;ID=b2g.4.22.0.10;Parent=b2g.4.22.0 +Merlin_5 blast match_part 285 333 . . . Gap=M49;ID=b2g.4.22.0.11;Parent=b2g.4.22.0 +Merlin_5 blast match_part 338 386 . . . Gap=M49;ID=b2g.4.22.0.12;Parent=b2g.4.22.0 +Merlin_5 blast match_part 395 406 . . . Gap=M4 I1 M7;ID=b2g.4.22.0.13;Parent=b2g.4.22.0 +Merlin_5 blast match_part 410 410 . . . Gap=M1;ID=b2g.4.22.0.14;Parent=b2g.4.22.0 +Merlin_5 blast match_part 414 416 . . . Gap=M3;ID=b2g.4.22.0.15;Parent=b2g.4.22.0 +Merlin_5 blast match_part 422 426 . . . Gap=M5;ID=b2g.4.22.0.16;Parent=b2g.4.22.0 +Merlin_5 blast match_part 430 443 . . . Gap=M14;ID=b2g.4.22.0.17;Parent=b2g.4.22.0 +Merlin_5 blast match_part 447 448 . . . Gap=M2;ID=b2g.4.22.0.18;Parent=b2g.4.22.0 +Merlin_5 blast match_part 452 476 . . . Gap=M8 I1 M16;ID=b2g.4.22.0.19;Parent=b2g.4.22.0 +Merlin_5 blast match_part 480 487 . . . Gap=M8;ID=b2g.4.22.0.20;Parent=b2g.4.22.0 +Merlin_5 blast match_part 491 492 . . . Gap=M2;ID=b2g.4.22.0.21;Parent=b2g.4.22.0 +Merlin_5 blast match_part 497 501 . . . Gap=M5;ID=b2g.4.22.0.22;Parent=b2g.4.22.0 +Merlin_5 blast match_part 505 524 . . . Gap=M20;ID=b2g.4.22.0.23;Parent=b2g.4.22.0 +Merlin_5 blast match_part 528 535 . . . Gap=M8;ID=b2g.4.22.0.24;Parent=b2g.4.22.0 +Merlin_5 blast match_part 543 547 . . . Gap=M5;ID=b2g.4.22.0.25;Parent=b2g.4.22.0 +Merlin_5 blast match_part 552 558 . . . Gap=M7;ID=b2g.4.22.0.26;Parent=b2g.4.22.0 +Merlin_5 blast match_part 562 576 . . . Gap=M15;ID=b2g.4.22.0.27;Parent=b2g.4.22.0 +Merlin_5 blast protein_match 0 615 1.10381e-76 . . ID=b2g.4.23.0;accession=YP_003934830;blast_align_length=607;blast_bits=265.388;blast_frame=0;blast_gaps=60;blast_identities=188;blast_positives=331;blast_query_end=576;blast_query_start=2;blast_sbjct_end=581;blast_sbjct_start=3;blast_score=677.0;blast_strand=None;description=baseplate hub subunit tail length determinator %5BShigella phage SP18%5D;hit_id=gi%7C308814556%7Cref%7CYP_003934830.1%7C;hit_titles=gi%7C308814556%7Cref%7CYP_003934830.1%7C baseplate hub subunit tail length determinator %5BShigella phage SP18%5D,gi%7C308206148%7Cgb%7CADO19547.1%7C baseplate hub subunit tail length determinator %5BShigella phage SP18%5D;length=581 +Merlin_5 blast match_part 2 3 . . . Gap=M2;ID=b2g.4.23.0.0;Parent=b2g.4.23.0 +Merlin_5 blast match_part 7 17 . . . Gap=M11;ID=b2g.4.23.0.1;Parent=b2g.4.23.0 +Merlin_5 blast match_part 21 38 . . . Gap=M18;ID=b2g.4.23.0.2;Parent=b2g.4.23.0 +Merlin_5 blast match_part 42 94 . . . Gap=M53;ID=b2g.4.23.0.3;Parent=b2g.4.23.0 +Merlin_5 blast match_part 98 113 . . . Gap=M16;ID=b2g.4.23.0.4;Parent=b2g.4.23.0 +Merlin_5 blast match_part 123 145 . . . Gap=M23;ID=b2g.4.23.0.5;Parent=b2g.4.23.0 +Merlin_5 blast match_part 153 158 . . . Gap=M6;ID=b2g.4.23.0.6;Parent=b2g.4.23.0 +Merlin_5 blast match_part 164 186 . . . Gap=M8 I1 M14;ID=b2g.4.23.0.7;Parent=b2g.4.23.0 +Merlin_5 blast match_part 192 233 . . . Gap=M42;ID=b2g.4.23.0.8;Parent=b2g.4.23.0 +Merlin_5 blast match_part 237 258 . . . Gap=M22;ID=b2g.4.23.0.9;Parent=b2g.4.23.0 +Merlin_5 blast match_part 262 279 . . . Gap=M18;ID=b2g.4.23.0.10;Parent=b2g.4.23.0 +Merlin_5 blast match_part 285 290 . . . Gap=M6;ID=b2g.4.23.0.11;Parent=b2g.4.23.0 +Merlin_5 blast match_part 294 386 . . . Gap=M93;ID=b2g.4.23.0.12;Parent=b2g.4.23.0 +Merlin_5 blast match_part 395 406 . . . Gap=M4 I1 M7;ID=b2g.4.23.0.13;Parent=b2g.4.23.0 +Merlin_5 blast match_part 410 410 . . . Gap=M1;ID=b2g.4.23.0.14;Parent=b2g.4.23.0 +Merlin_5 blast match_part 414 416 . . . Gap=M3;ID=b2g.4.23.0.15;Parent=b2g.4.23.0 +Merlin_5 blast match_part 422 426 . . . Gap=M5;ID=b2g.4.23.0.16;Parent=b2g.4.23.0 +Merlin_5 blast match_part 430 443 . . . Gap=M14;ID=b2g.4.23.0.17;Parent=b2g.4.23.0 +Merlin_5 blast match_part 447 448 . . . Gap=M2;ID=b2g.4.23.0.18;Parent=b2g.4.23.0 +Merlin_5 blast match_part 452 461 . . . Gap=M10;ID=b2g.4.23.0.19;Parent=b2g.4.23.0 +Merlin_5 blast match_part 465 476 . . . Gap=M12;ID=b2g.4.23.0.20;Parent=b2g.4.23.0 +Merlin_5 blast match_part 480 493 . . . Gap=M2 I1 M11;ID=b2g.4.23.0.21;Parent=b2g.4.23.0 +Merlin_5 blast match_part 497 502 . . . Gap=M6;ID=b2g.4.23.0.22;Parent=b2g.4.23.0 +Merlin_5 blast match_part 506 507 . . . Gap=M2;ID=b2g.4.23.0.23;Parent=b2g.4.23.0 +Merlin_5 blast match_part 512 518 . . . Gap=M7;ID=b2g.4.23.0.24;Parent=b2g.4.23.0 +Merlin_5 blast match_part 522 524 . . . Gap=M3;ID=b2g.4.23.0.25;Parent=b2g.4.23.0 +Merlin_5 blast match_part 528 530 . . . Gap=M3;ID=b2g.4.23.0.26;Parent=b2g.4.23.0 +Merlin_5 blast match_part 534 534 . . . Gap=M1;ID=b2g.4.23.0.27;Parent=b2g.4.23.0 +Merlin_5 blast match_part 542 558 . . . Gap=M17;ID=b2g.4.23.0.28;Parent=b2g.4.23.0 +Merlin_5 blast match_part 562 576 . . . Gap=M15;ID=b2g.4.23.0.29;Parent=b2g.4.23.0 +Merlin_5 blast protein_match 1 606 1.03696e-75 . . ID=b2g.4.24.0;accession=YP_002922538;blast_align_length=603;blast_bits=262.692;blast_frame=0;blast_gaps=52;blast_identities=198;blast_positives=334;blast_query_end=576;blast_query_start=1;blast_sbjct_end=578;blast_sbjct_start=1;blast_score=670.0;blast_strand=None;description=gp29 baseplate hub subunit%2C tail length determinator %5BEnterobacteria phage JS10%5D;hit_id=gi%7C238695345%7Cref%7CYP_002922538.1%7C;hit_titles=gi%7C238695345%7Cref%7CYP_002922538.1%7C gp29 baseplate hub subunit%2C tail length determinator %5BEnterobacteria phage JS10%5D,gi%7C220029481%7Cgb%7CACL78415.1%7C gp29 baseplate hub subunit%2C tail length determinator %5BEnterobacteria phage JS10%5D;length=578 +Merlin_5 blast match_part 1 17 . . . Gap=M17;ID=b2g.4.24.0.0;Parent=b2g.4.24.0 +Merlin_5 blast match_part 21 38 . . . Gap=M18;ID=b2g.4.24.0.1;Parent=b2g.4.24.0 +Merlin_5 blast match_part 42 80 . . . Gap=M39;ID=b2g.4.24.0.2;Parent=b2g.4.24.0 +Merlin_5 blast match_part 85 92 . . . Gap=M8;ID=b2g.4.24.0.3;Parent=b2g.4.24.0 +Merlin_5 blast match_part 98 112 . . . Gap=M15;ID=b2g.4.24.0.4;Parent=b2g.4.24.0 +Merlin_5 blast match_part 116 116 . . . Gap=M1;ID=b2g.4.24.0.5;Parent=b2g.4.24.0 +Merlin_5 blast match_part 120 120 . . . Gap=M1;ID=b2g.4.24.0.6;Parent=b2g.4.24.0 +Merlin_5 blast match_part 124 126 . . . Gap=M3;ID=b2g.4.24.0.7;Parent=b2g.4.24.0 +Merlin_5 blast match_part 131 158 . . . Gap=M28;ID=b2g.4.24.0.8;Parent=b2g.4.24.0 +Merlin_5 blast match_part 162 168 . . . Gap=M7;ID=b2g.4.24.0.9;Parent=b2g.4.24.0 +Merlin_5 blast match_part 172 186 . . . Gap=M15;ID=b2g.4.24.0.10;Parent=b2g.4.24.0 +Merlin_5 blast match_part 191 258 . . . Gap=M68;ID=b2g.4.24.0.11;Parent=b2g.4.24.0 +Merlin_5 blast match_part 262 279 . . . Gap=M18;ID=b2g.4.24.0.12;Parent=b2g.4.24.0 +Merlin_5 blast match_part 285 290 . . . Gap=M6;ID=b2g.4.24.0.13;Parent=b2g.4.24.0 +Merlin_5 blast match_part 294 386 . . . Gap=M93;ID=b2g.4.24.0.14;Parent=b2g.4.24.0 +Merlin_5 blast match_part 395 406 . . . Gap=M4 I1 M7;ID=b2g.4.24.0.15;Parent=b2g.4.24.0 +Merlin_5 blast match_part 410 410 . . . Gap=M1;ID=b2g.4.24.0.16;Parent=b2g.4.24.0 +Merlin_5 blast match_part 414 416 . . . Gap=M3;ID=b2g.4.24.0.17;Parent=b2g.4.24.0 +Merlin_5 blast match_part 422 426 . . . Gap=M5;ID=b2g.4.24.0.18;Parent=b2g.4.24.0 +Merlin_5 blast match_part 430 443 . . . Gap=M14;ID=b2g.4.24.0.19;Parent=b2g.4.24.0 +Merlin_5 blast match_part 447 448 . . . Gap=M2;ID=b2g.4.24.0.20;Parent=b2g.4.24.0 +Merlin_5 blast match_part 452 460 . . . Gap=M9;ID=b2g.4.24.0.21;Parent=b2g.4.24.0 +Merlin_5 blast match_part 467 476 . . . Gap=M10;ID=b2g.4.24.0.22;Parent=b2g.4.24.0 +Merlin_5 blast match_part 480 487 . . . Gap=M8;ID=b2g.4.24.0.23;Parent=b2g.4.24.0 +Merlin_5 blast match_part 491 492 . . . Gap=M2;ID=b2g.4.24.0.24;Parent=b2g.4.24.0 +Merlin_5 blast match_part 497 501 . . . Gap=M5;ID=b2g.4.24.0.25;Parent=b2g.4.24.0 +Merlin_5 blast match_part 505 524 . . . Gap=M20;ID=b2g.4.24.0.26;Parent=b2g.4.24.0 +Merlin_5 blast match_part 528 535 . . . Gap=M8;ID=b2g.4.24.0.27;Parent=b2g.4.24.0 +Merlin_5 blast match_part 543 547 . . . Gap=M5;ID=b2g.4.24.0.28;Parent=b2g.4.24.0 +Merlin_5 blast match_part 552 558 . . . Gap=M7;ID=b2g.4.24.0.29;Parent=b2g.4.24.0 +Merlin_5 blast match_part 562 576 . . . Gap=M15;ID=b2g.4.24.0.30;Parent=b2g.4.24.0 +Merlin_5 blast protein_match 1 606 1.72858e-74 . . ID=b2g.4.25.0;accession=YP_001595318;blast_align_length=603;blast_bits=259.225;blast_frame=0;blast_gaps=52;blast_identities=196;blast_positives=334;blast_query_end=576;blast_query_start=1;blast_sbjct_end=578;blast_sbjct_start=1;blast_score=661.0;blast_strand=None;description=gp29 baseplate hub subunit tail length determinator %5BEnterobacteria phage JS98%5D;hit_id=gi%7C161622623%7Cref%7CYP_001595318.1%7C;hit_titles=gi%7C161622623%7Cref%7CYP_001595318.1%7C gp29 baseplate hub subunit tail length determinator %5BEnterobacteria phage JS98%5D,gi%7C52139948%7Cgb%7CAAU29318.1%7C gp29 baseplate hub subunit tail length determinator %5BEnterobacteria phage JS98%5D;length=578 +Merlin_5 blast match_part 1 17 . . . Gap=M17;ID=b2g.4.25.0.0;Parent=b2g.4.25.0 +Merlin_5 blast match_part 21 38 . . . Gap=M18;ID=b2g.4.25.0.1;Parent=b2g.4.25.0 +Merlin_5 blast match_part 42 80 . . . Gap=M39;ID=b2g.4.25.0.2;Parent=b2g.4.25.0 +Merlin_5 blast match_part 85 92 . . . Gap=M8;ID=b2g.4.25.0.3;Parent=b2g.4.25.0 +Merlin_5 blast match_part 98 112 . . . Gap=M15;ID=b2g.4.25.0.4;Parent=b2g.4.25.0 +Merlin_5 blast match_part 116 116 . . . Gap=M1;ID=b2g.4.25.0.5;Parent=b2g.4.25.0 +Merlin_5 blast match_part 120 120 . . . Gap=M1;ID=b2g.4.25.0.6;Parent=b2g.4.25.0 +Merlin_5 blast match_part 124 126 . . . Gap=M3;ID=b2g.4.25.0.7;Parent=b2g.4.25.0 +Merlin_5 blast match_part 131 158 . . . Gap=M28;ID=b2g.4.25.0.8;Parent=b2g.4.25.0 +Merlin_5 blast match_part 162 168 . . . Gap=M7;ID=b2g.4.25.0.9;Parent=b2g.4.25.0 +Merlin_5 blast match_part 172 186 . . . Gap=M15;ID=b2g.4.25.0.10;Parent=b2g.4.25.0 +Merlin_5 blast match_part 191 258 . . . Gap=M68;ID=b2g.4.25.0.11;Parent=b2g.4.25.0 +Merlin_5 blast match_part 262 279 . . . Gap=M18;ID=b2g.4.25.0.12;Parent=b2g.4.25.0 +Merlin_5 blast match_part 285 290 . . . Gap=M6;ID=b2g.4.25.0.13;Parent=b2g.4.25.0 +Merlin_5 blast match_part 294 386 . . . Gap=M93;ID=b2g.4.25.0.14;Parent=b2g.4.25.0 +Merlin_5 blast match_part 395 406 . . . Gap=M4 I1 M7;ID=b2g.4.25.0.15;Parent=b2g.4.25.0 +Merlin_5 blast match_part 410 410 . . . Gap=M1;ID=b2g.4.25.0.16;Parent=b2g.4.25.0 +Merlin_5 blast match_part 414 416 . . . Gap=M3;ID=b2g.4.25.0.17;Parent=b2g.4.25.0 +Merlin_5 blast match_part 422 426 . . . Gap=M5;ID=b2g.4.25.0.18;Parent=b2g.4.25.0 +Merlin_5 blast match_part 430 443 . . . Gap=M14;ID=b2g.4.25.0.19;Parent=b2g.4.25.0 +Merlin_5 blast match_part 447 448 . . . Gap=M2;ID=b2g.4.25.0.20;Parent=b2g.4.25.0 +Merlin_5 blast match_part 452 460 . . . Gap=M9;ID=b2g.4.25.0.21;Parent=b2g.4.25.0 +Merlin_5 blast match_part 467 476 . . . Gap=M10;ID=b2g.4.25.0.22;Parent=b2g.4.25.0 +Merlin_5 blast match_part 480 487 . . . Gap=M8;ID=b2g.4.25.0.23;Parent=b2g.4.25.0 +Merlin_5 blast match_part 491 492 . . . Gap=M2;ID=b2g.4.25.0.24;Parent=b2g.4.25.0 +Merlin_5 blast match_part 497 501 . . . Gap=M5;ID=b2g.4.25.0.25;Parent=b2g.4.25.0 +Merlin_5 blast match_part 505 524 . . . Gap=M20;ID=b2g.4.25.0.26;Parent=b2g.4.25.0 +Merlin_5 blast match_part 528 535 . . . Gap=M8;ID=b2g.4.25.0.27;Parent=b2g.4.25.0 +Merlin_5 blast match_part 543 547 . . . Gap=M5;ID=b2g.4.25.0.28;Parent=b2g.4.25.0 +Merlin_5 blast match_part 552 558 . . . Gap=M7;ID=b2g.4.25.0.29;Parent=b2g.4.25.0 +Merlin_5 blast match_part 562 576 . . . Gap=M15;ID=b2g.4.25.0.30;Parent=b2g.4.25.0 +Merlin_5 blast protein_match 1 612 7.65187e-63 . . ID=b2g.4.26.0;accession=YP_004009559;blast_align_length=618;blast_bits=227.639;blast_frame=0;blast_gaps=91;blast_identities=183;blast_positives=306;blast_query_end=576;blast_query_start=1;blast_sbjct_end=569;blast_sbjct_start=1;blast_score=579.0;blast_strand=None;description=gp29 baseplate hub subunit %5BAcinetobacter phage Ac42%5D;hit_id=gi%7C311992691%7Cref%7CYP_004009559.1%7C;hit_titles=gi%7C311992691%7Cref%7CYP_004009559.1%7C gp29 baseplate hub subunit %5BAcinetobacter phage Ac42%5D,gi%7C298684474%7Cgb%7CADI96435.1%7C gp29 baseplate hub subunit %5BAcinetobacter phage Ac42%5D;length=569 +Merlin_5 blast match_part 1 18 . . . Gap=M18;ID=b2g.4.26.0.0;Parent=b2g.4.26.0 +Merlin_5 blast match_part 22 24 . . . Gap=M3;ID=b2g.4.26.0.1;Parent=b2g.4.26.0 +Merlin_5 blast match_part 30 38 . . . Gap=M9;ID=b2g.4.26.0.2;Parent=b2g.4.26.0 +Merlin_5 blast match_part 42 45 . . . Gap=M4;ID=b2g.4.26.0.3;Parent=b2g.4.26.0 +Merlin_5 blast match_part 49 60 . . . Gap=M12;ID=b2g.4.26.0.4;Parent=b2g.4.26.0 +Merlin_5 blast match_part 64 76 . . . Gap=M13;ID=b2g.4.26.0.5;Parent=b2g.4.26.0 +Merlin_5 blast match_part 98 112 . . . Gap=M15;ID=b2g.4.26.0.6;Parent=b2g.4.26.0 +Merlin_5 blast match_part 117 122 . . . Gap=M6;ID=b2g.4.26.0.7;Parent=b2g.4.26.0 +Merlin_5 blast match_part 127 127 . . . Gap=M1;ID=b2g.4.26.0.8;Parent=b2g.4.26.0 +Merlin_5 blast match_part 131 145 . . . Gap=M15;ID=b2g.4.26.0.9;Parent=b2g.4.26.0 +Merlin_5 blast match_part 149 165 . . . Gap=M2 I1 M14;ID=b2g.4.26.0.10;Parent=b2g.4.26.0 +Merlin_5 blast match_part 174 178 . . . Gap=M5;ID=b2g.4.26.0.11;Parent=b2g.4.26.0 +Merlin_5 blast match_part 182 185 . . . Gap=M4;ID=b2g.4.26.0.12;Parent=b2g.4.26.0 +Merlin_5 blast match_part 189 226 . . . Gap=M38;ID=b2g.4.26.0.13;Parent=b2g.4.26.0 +Merlin_5 blast match_part 230 233 . . . Gap=M4;ID=b2g.4.26.0.14;Parent=b2g.4.26.0 +Merlin_5 blast match_part 237 266 . . . Gap=M30;ID=b2g.4.26.0.15;Parent=b2g.4.26.0 +Merlin_5 blast match_part 270 279 . . . Gap=M10;ID=b2g.4.26.0.16;Parent=b2g.4.26.0 +Merlin_5 blast match_part 283 295 . . . Gap=M13;ID=b2g.4.26.0.17;Parent=b2g.4.26.0 +Merlin_5 blast match_part 301 306 . . . Gap=M6;ID=b2g.4.26.0.18;Parent=b2g.4.26.0 +Merlin_5 blast match_part 310 310 . . . Gap=M1;ID=b2g.4.26.0.19;Parent=b2g.4.26.0 +Merlin_5 blast match_part 314 353 . . . Gap=M40;ID=b2g.4.26.0.20;Parent=b2g.4.26.0 +Merlin_5 blast match_part 357 379 . . . Gap=M23;ID=b2g.4.26.0.21;Parent=b2g.4.26.0 +Merlin_5 blast match_part 385 385 . . . Gap=M1;ID=b2g.4.26.0.22;Parent=b2g.4.26.0 +Merlin_5 blast match_part 389 397 . . . Gap=M9;ID=b2g.4.26.0.23;Parent=b2g.4.26.0 +Merlin_5 blast match_part 402 405 . . . Gap=M4;ID=b2g.4.26.0.24;Parent=b2g.4.26.0 +Merlin_5 blast match_part 410 412 . . . Gap=M3;ID=b2g.4.26.0.25;Parent=b2g.4.26.0 +Merlin_5 blast match_part 416 443 . . . Gap=M28;ID=b2g.4.26.0.26;Parent=b2g.4.26.0 +Merlin_5 blast match_part 448 455 . . . Gap=M8;ID=b2g.4.26.0.27;Parent=b2g.4.26.0 +Merlin_5 blast match_part 459 466 . . . Gap=M8;ID=b2g.4.26.0.28;Parent=b2g.4.26.0 +Merlin_5 blast match_part 470 494 . . . Gap=M25;ID=b2g.4.26.0.29;Parent=b2g.4.26.0 +Merlin_5 blast match_part 500 500 . . . Gap=M1;ID=b2g.4.26.0.30;Parent=b2g.4.26.0 +Merlin_5 blast match_part 505 513 . . . Gap=M9;ID=b2g.4.26.0.31;Parent=b2g.4.26.0 +Merlin_5 blast match_part 518 522 . . . Gap=M5;ID=b2g.4.26.0.32;Parent=b2g.4.26.0 +Merlin_5 blast match_part 526 528 . . . Gap=M3;ID=b2g.4.26.0.33;Parent=b2g.4.26.0 +Merlin_5 blast match_part 535 556 . . . Gap=M22;ID=b2g.4.26.0.34;Parent=b2g.4.26.0 +Merlin_5 blast match_part 561 576 . . . Gap=M16;ID=b2g.4.26.0.35;Parent=b2g.4.26.0 +Merlin_5 blast protein_match 8 632 6.69261e-57 . . ID=b2g.4.27.0;accession=YP_009030254;blast_align_length=547;blast_bits=211.46;blast_frame=0;blast_gaps=33;blast_identities=158;blast_positives=276;blast_query_end=570;blast_query_start=42;blast_sbjct_end=566;blast_sbjct_start=35;blast_score=537.0;blast_strand=None;description=baseplate hub subunit%2C tail length determinator %5BSerratia phage PS2%5D;hit_id=gi%7C639438514%7Cref%7CYP_009030254.1%7C;hit_titles=gi%7C639438514%7Cref%7CYP_009030254.1%7C baseplate hub subunit%2C tail length determinator %5BSerratia phage PS2%5D,gi%7C625370587%7Cgb%7CAHY25447.1%7C baseplate hub subunit%2C tail length determinator %5BSerratia phage PS2%5D;length=572 +Merlin_5 blast match_part 42 69 . . . Gap=M28;ID=b2g.4.27.0.0;Parent=b2g.4.27.0 +Merlin_5 blast match_part 74 82 . . . Gap=M9;ID=b2g.4.27.0.1;Parent=b2g.4.27.0 +Merlin_5 blast match_part 86 91 . . . Gap=M6;ID=b2g.4.27.0.2;Parent=b2g.4.27.0 +Merlin_5 blast match_part 95 118 . . . Gap=M24;ID=b2g.4.27.0.3;Parent=b2g.4.27.0 +Merlin_5 blast match_part 123 143 . . . Gap=M21;ID=b2g.4.27.0.4;Parent=b2g.4.27.0 +Merlin_5 blast match_part 151 167 . . . Gap=M17;ID=b2g.4.27.0.5;Parent=b2g.4.27.0 +Merlin_5 blast match_part 174 191 . . . Gap=M18;ID=b2g.4.27.0.6;Parent=b2g.4.27.0 +Merlin_5 blast match_part 197 198 . . . Gap=M2;ID=b2g.4.27.0.7;Parent=b2g.4.27.0 +Merlin_5 blast match_part 202 228 . . . Gap=M27;ID=b2g.4.27.0.8;Parent=b2g.4.27.0 +Merlin_5 blast match_part 232 254 . . . Gap=M23;ID=b2g.4.27.0.9;Parent=b2g.4.27.0 +Merlin_5 blast match_part 258 280 . . . Gap=M23;ID=b2g.4.27.0.10;Parent=b2g.4.27.0 +Merlin_5 blast match_part 285 306 . . . Gap=M22;ID=b2g.4.27.0.11;Parent=b2g.4.27.0 +Merlin_5 blast match_part 310 333 . . . Gap=M24;ID=b2g.4.27.0.12;Parent=b2g.4.27.0 +Merlin_5 blast match_part 338 354 . . . Gap=M17;ID=b2g.4.27.0.13;Parent=b2g.4.27.0 +Merlin_5 blast match_part 359 375 . . . Gap=M17;ID=b2g.4.27.0.14;Parent=b2g.4.27.0 +Merlin_5 blast match_part 379 386 . . . Gap=M8;ID=b2g.4.27.0.15;Parent=b2g.4.27.0 +Merlin_5 blast match_part 391 391 . . . Gap=M1;ID=b2g.4.27.0.16;Parent=b2g.4.27.0 +Merlin_5 blast match_part 396 396 . . . Gap=M1;ID=b2g.4.27.0.17;Parent=b2g.4.27.0 +Merlin_5 blast match_part 401 417 . . . Gap=M17;ID=b2g.4.27.0.18;Parent=b2g.4.27.0 +Merlin_5 blast match_part 422 432 . . . Gap=M11;ID=b2g.4.27.0.19;Parent=b2g.4.27.0 +Merlin_5 blast match_part 438 440 . . . Gap=M3;ID=b2g.4.27.0.20;Parent=b2g.4.27.0 +Merlin_5 blast match_part 452 454 . . . Gap=M3;ID=b2g.4.27.0.21;Parent=b2g.4.27.0 +Merlin_5 blast match_part 459 459 . . . Gap=M1;ID=b2g.4.27.0.22;Parent=b2g.4.27.0 +Merlin_5 blast match_part 464 464 . . . Gap=M1;ID=b2g.4.27.0.23;Parent=b2g.4.27.0 +Merlin_5 blast match_part 468 478 . . . Gap=M8 I2 M1;ID=b2g.4.27.0.24;Parent=b2g.4.27.0 +Merlin_5 blast match_part 482 500 . . . Gap=M19;ID=b2g.4.27.0.25;Parent=b2g.4.27.0 +Merlin_5 blast match_part 504 509 . . . Gap=M6;ID=b2g.4.27.0.26;Parent=b2g.4.27.0 +Merlin_5 blast match_part 513 523 . . . Gap=M11;ID=b2g.4.27.0.27;Parent=b2g.4.27.0 +Merlin_5 blast match_part 529 537 . . . Gap=M9;ID=b2g.4.27.0.28;Parent=b2g.4.27.0 +Merlin_5 blast match_part 546 569 . . . Gap=M25;ID=b2g.4.27.0.29;Parent=b2g.4.27.0 +Merlin_5 blast protein_match 10 646 2.33408e-54 . . ID=b2g.4.28.0;accession=YP_002922258;blast_align_length=596;blast_bits=204.527;blast_frame=0;blast_gaps=83;blast_identities=167;blast_positives=299;blast_query_end=570;blast_query_start=22;blast_sbjct_end=572;blast_sbjct_start=13;blast_score=519.0;blast_strand=None;description=tail length regulator %5BEnterobacteria phage JSE%5D;hit_id=gi%7C238695064%7Cref%7CYP_002922258.1%7C;hit_titles=gi%7C238695064%7Cref%7CYP_002922258.1%7C tail length regulator %5BEnterobacteria phage JSE%5D,gi%7C220029200%7Cgb%7CACL78135.1%7C tail length regulator %5BEnterobacteria phage JSE%5D;length=577 +Merlin_5 blast match_part 22 24 . . . Gap=M3;ID=b2g.4.28.0.0;Parent=b2g.4.28.0 +Merlin_5 blast match_part 30 38 . . . Gap=M9;ID=b2g.4.28.0.1;Parent=b2g.4.28.0 +Merlin_5 blast match_part 42 91 . . . Gap=M50;ID=b2g.4.28.0.2;Parent=b2g.4.28.0 +Merlin_5 blast match_part 95 102 . . . Gap=M8;ID=b2g.4.28.0.3;Parent=b2g.4.28.0 +Merlin_5 blast match_part 108 112 . . . Gap=M5;ID=b2g.4.28.0.4;Parent=b2g.4.28.0 +Merlin_5 blast match_part 116 116 . . . Gap=M1;ID=b2g.4.28.0.5;Parent=b2g.4.28.0 +Merlin_5 blast match_part 125 146 . . . Gap=M22;ID=b2g.4.28.0.6;Parent=b2g.4.28.0 +Merlin_5 blast match_part 150 159 . . . Gap=M10;ID=b2g.4.28.0.7;Parent=b2g.4.28.0 +Merlin_5 blast match_part 164 183 . . . Gap=M20;ID=b2g.4.28.0.8;Parent=b2g.4.28.0 +Merlin_5 blast match_part 187 279 . . . Gap=M93;ID=b2g.4.28.0.9;Parent=b2g.4.28.0 +Merlin_5 blast match_part 283 324 . . . Gap=M42;ID=b2g.4.28.0.10;Parent=b2g.4.28.0 +Merlin_5 blast match_part 328 328 . . . Gap=M1;ID=b2g.4.28.0.11;Parent=b2g.4.28.0 +Merlin_5 blast match_part 333 341 . . . Gap=M9;ID=b2g.4.28.0.12;Parent=b2g.4.28.0 +Merlin_5 blast match_part 345 347 . . . Gap=M3;ID=b2g.4.28.0.13;Parent=b2g.4.28.0 +Merlin_5 blast match_part 352 374 . . . Gap=M1 I1 M21;ID=b2g.4.28.0.14;Parent=b2g.4.28.0 +Merlin_5 blast match_part 381 389 . . . Gap=M9;ID=b2g.4.28.0.15;Parent=b2g.4.28.0 +Merlin_5 blast match_part 395 402 . . . Gap=M8;ID=b2g.4.28.0.16;Parent=b2g.4.28.0 +Merlin_5 blast match_part 407 411 . . . Gap=M5;ID=b2g.4.28.0.17;Parent=b2g.4.28.0 +Merlin_5 blast match_part 417 442 . . . Gap=M26;ID=b2g.4.28.0.18;Parent=b2g.4.28.0 +Merlin_5 blast match_part 446 451 . . . Gap=M6;ID=b2g.4.28.0.19;Parent=b2g.4.28.0 +Merlin_5 blast match_part 456 496 . . . Gap=M22 I2 M17;ID=b2g.4.28.0.20;Parent=b2g.4.28.0 +Merlin_5 blast match_part 501 501 . . . Gap=M1;ID=b2g.4.28.0.21;Parent=b2g.4.28.0 +Merlin_5 blast match_part 505 524 . . . Gap=M20;ID=b2g.4.28.0.22;Parent=b2g.4.28.0 +Merlin_5 blast match_part 529 532 . . . Gap=M4;ID=b2g.4.28.0.23;Parent=b2g.4.28.0 +Merlin_5 blast match_part 536 536 . . . Gap=M1;ID=b2g.4.28.0.24;Parent=b2g.4.28.0 +Merlin_5 blast match_part 540 557 . . . Gap=M7 I2 M9;ID=b2g.4.28.0.25;Parent=b2g.4.28.0 +Merlin_5 blast match_part 562 562 . . . Gap=M1;ID=b2g.4.28.0.26;Parent=b2g.4.28.0 +Merlin_5 blast match_part 566 568 . . . Gap=M5;ID=b2g.4.28.0.27;Parent=b2g.4.28.0 +Merlin_5 blast protein_match 11 666 5.33273e-53 . . ID=b2g.4.29.0;accession=YP_001469526;blast_align_length=576;blast_bits=200.675;blast_frame=0;blast_gaps=82;blast_identities=163;blast_positives=286;blast_query_end=570;blast_query_start=42;blast_sbjct_end=572;blast_sbjct_start=32;blast_score=509.0;blast_strand=None;description=gp29 baseplate hub subunit tail length determinator %5BEnterobacteria phage Phi1%5D;hit_id=gi%7C157311483%7Cref%7CYP_001469526.1%7C;hit_titles=gi%7C157311483%7Cref%7CYP_001469526.1%7C gp29 baseplate hub subunit tail length determinator %5BEnterobacteria phage Phi1%5D,gi%7C149380687%7Cgb%7CABR24692.1%7C gp29 baseplate hub subunit tail length determinator %5BEnterobacteria phage Phi1%5D;length=577 +Merlin_5 blast match_part 42 69 . . . Gap=M28;ID=b2g.4.29.0.0;Parent=b2g.4.29.0 +Merlin_5 blast match_part 75 91 . . . Gap=M17;ID=b2g.4.29.0.1;Parent=b2g.4.29.0 +Merlin_5 blast match_part 95 102 . . . Gap=M8;ID=b2g.4.29.0.2;Parent=b2g.4.29.0 +Merlin_5 blast match_part 108 112 . . . Gap=M5;ID=b2g.4.29.0.3;Parent=b2g.4.29.0 +Merlin_5 blast match_part 116 116 . . . Gap=M1;ID=b2g.4.29.0.4;Parent=b2g.4.29.0 +Merlin_5 blast match_part 125 146 . . . Gap=M22;ID=b2g.4.29.0.5;Parent=b2g.4.29.0 +Merlin_5 blast match_part 150 159 . . . Gap=M10;ID=b2g.4.29.0.6;Parent=b2g.4.29.0 +Merlin_5 blast match_part 164 183 . . . Gap=M20;ID=b2g.4.29.0.7;Parent=b2g.4.29.0 +Merlin_5 blast match_part 187 279 . . . Gap=M93;ID=b2g.4.29.0.8;Parent=b2g.4.29.0 +Merlin_5 blast match_part 283 324 . . . Gap=M42;ID=b2g.4.29.0.9;Parent=b2g.4.29.0 +Merlin_5 blast match_part 328 328 . . . Gap=M1;ID=b2g.4.29.0.10;Parent=b2g.4.29.0 +Merlin_5 blast match_part 333 341 . . . Gap=M9;ID=b2g.4.29.0.11;Parent=b2g.4.29.0 +Merlin_5 blast match_part 345 347 . . . Gap=M3;ID=b2g.4.29.0.12;Parent=b2g.4.29.0 +Merlin_5 blast match_part 352 374 . . . Gap=M1 I1 M21;ID=b2g.4.29.0.13;Parent=b2g.4.29.0 +Merlin_5 blast match_part 381 389 . . . Gap=M9;ID=b2g.4.29.0.14;Parent=b2g.4.29.0 +Merlin_5 blast match_part 395 402 . . . Gap=M8;ID=b2g.4.29.0.15;Parent=b2g.4.29.0 +Merlin_5 blast match_part 407 411 . . . Gap=M5;ID=b2g.4.29.0.16;Parent=b2g.4.29.0 +Merlin_5 blast match_part 417 442 . . . Gap=M26;ID=b2g.4.29.0.17;Parent=b2g.4.29.0 +Merlin_5 blast match_part 446 451 . . . Gap=M6;ID=b2g.4.29.0.18;Parent=b2g.4.29.0 +Merlin_5 blast match_part 456 496 . . . Gap=M22 I2 M17;ID=b2g.4.29.0.19;Parent=b2g.4.29.0 +Merlin_5 blast match_part 505 505 . . . Gap=M1;ID=b2g.4.29.0.20;Parent=b2g.4.29.0 +Merlin_5 blast match_part 510 524 . . . Gap=M15;ID=b2g.4.29.0.21;Parent=b2g.4.29.0 +Merlin_5 blast match_part 529 532 . . . Gap=M4;ID=b2g.4.29.0.22;Parent=b2g.4.29.0 +Merlin_5 blast match_part 536 536 . . . Gap=M1;ID=b2g.4.29.0.23;Parent=b2g.4.29.0 +Merlin_5 blast match_part 540 557 . . . Gap=M7 I2 M9;ID=b2g.4.29.0.24;Parent=b2g.4.29.0 +Merlin_5 blast match_part 562 562 . . . Gap=M1;ID=b2g.4.29.0.25;Parent=b2g.4.29.0 +Merlin_5 blast match_part 566 568 . . . Gap=M5;ID=b2g.4.29.0.26;Parent=b2g.4.29.0 +Merlin_5 blast protein_match 11 666 5.38583e-53 . . ID=b2g.4.30.0;accession=NP_891750;blast_align_length=576;blast_bits=200.675;blast_frame=0;blast_gaps=82;blast_identities=164;blast_positives=284;blast_query_end=570;blast_query_start=42;blast_sbjct_end=572;blast_sbjct_start=32;blast_score=509.0;blast_strand=None;description=tail length regulator %5BEnterobacteria phage RB49%5D;hit_id=gi%7C33620639%7Cref%7CNP_891750.1%7C;hit_titles=gi%7C33620639%7Cref%7CNP_891750.1%7C tail length regulator %5BEnterobacteria phage RB49%5D,gi%7C33438535%7Cgb%7CAAL15120.2%7C tail length regulator %5BEnterobacteria phage RB49%5D;length=577 +Merlin_5 blast match_part 42 91 . . . Gap=M50;ID=b2g.4.30.0.0;Parent=b2g.4.30.0 +Merlin_5 blast match_part 95 102 . . . Gap=M8;ID=b2g.4.30.0.1;Parent=b2g.4.30.0 +Merlin_5 blast match_part 108 112 . . . Gap=M5;ID=b2g.4.30.0.2;Parent=b2g.4.30.0 +Merlin_5 blast match_part 116 116 . . . Gap=M1;ID=b2g.4.30.0.3;Parent=b2g.4.30.0 +Merlin_5 blast match_part 125 146 . . . Gap=M22;ID=b2g.4.30.0.4;Parent=b2g.4.30.0 +Merlin_5 blast match_part 150 159 . . . Gap=M10;ID=b2g.4.30.0.5;Parent=b2g.4.30.0 +Merlin_5 blast match_part 164 183 . . . Gap=M20;ID=b2g.4.30.0.6;Parent=b2g.4.30.0 +Merlin_5 blast match_part 187 279 . . . Gap=M93;ID=b2g.4.30.0.7;Parent=b2g.4.30.0 +Merlin_5 blast match_part 283 324 . . . Gap=M42;ID=b2g.4.30.0.8;Parent=b2g.4.30.0 +Merlin_5 blast match_part 328 328 . . . Gap=M1;ID=b2g.4.30.0.9;Parent=b2g.4.30.0 +Merlin_5 blast match_part 333 341 . . . Gap=M9;ID=b2g.4.30.0.10;Parent=b2g.4.30.0 +Merlin_5 blast match_part 345 347 . . . Gap=M3;ID=b2g.4.30.0.11;Parent=b2g.4.30.0 +Merlin_5 blast match_part 352 354 . . . Gap=M1 I1 M1;ID=b2g.4.30.0.12;Parent=b2g.4.30.0 +Merlin_5 blast match_part 358 374 . . . Gap=M17;ID=b2g.4.30.0.13;Parent=b2g.4.30.0 +Merlin_5 blast match_part 381 389 . . . Gap=M9;ID=b2g.4.30.0.14;Parent=b2g.4.30.0 +Merlin_5 blast match_part 395 402 . . . Gap=M8;ID=b2g.4.30.0.15;Parent=b2g.4.30.0 +Merlin_5 blast match_part 407 411 . . . Gap=M5;ID=b2g.4.30.0.16;Parent=b2g.4.30.0 +Merlin_5 blast match_part 417 442 . . . Gap=M26;ID=b2g.4.30.0.17;Parent=b2g.4.30.0 +Merlin_5 blast match_part 446 451 . . . Gap=M6;ID=b2g.4.30.0.18;Parent=b2g.4.30.0 +Merlin_5 blast match_part 456 496 . . . Gap=M22 I2 M17;ID=b2g.4.30.0.19;Parent=b2g.4.30.0 +Merlin_5 blast match_part 505 505 . . . Gap=M1;ID=b2g.4.30.0.20;Parent=b2g.4.30.0 +Merlin_5 blast match_part 510 524 . . . Gap=M15;ID=b2g.4.30.0.21;Parent=b2g.4.30.0 +Merlin_5 blast match_part 529 532 . . . Gap=M4;ID=b2g.4.30.0.22;Parent=b2g.4.30.0 +Merlin_5 blast match_part 536 536 . . . Gap=M1;ID=b2g.4.30.0.23;Parent=b2g.4.30.0 +Merlin_5 blast match_part 540 557 . . . Gap=M7 I2 M9;ID=b2g.4.30.0.24;Parent=b2g.4.30.0 +Merlin_5 blast match_part 562 562 . . . Gap=M1;ID=b2g.4.30.0.25;Parent=b2g.4.30.0 +Merlin_5 blast match_part 566 568 . . . Gap=M5;ID=b2g.4.30.0.26;Parent=b2g.4.30.0 +Merlin_5 blast protein_match 8 721 4.41683e-51 . . ID=b2g.4.31.0;accession=YP_006489094;blast_align_length=489;blast_bits=195.667;blast_frame=0;blast_gaps=32;blast_identities=156;blast_positives=246;blast_query_end=576;blast_query_start=112;blast_sbjct_end=585;blast_sbjct_start=105;blast_score=496.0;blast_strand=None;description=baseplate hub subunit %5BAcinetobacter phage ZZ1%5D;hit_id=gi%7C392973136%7Cref%7CYP_006489094.1%7C;hit_titles=gi%7C392973136%7Cref%7CYP_006489094.1%7C baseplate hub subunit %5BAcinetobacter phage ZZ1%5D,gi%7C390058277%7Cgb%7CAFL47731.1%7C baseplate hub subunit%2C tail length determinator %5BAcinetobacter phage ZZ1%5D;length=585 +Merlin_5 blast match_part 112 122 . . . Gap=M11;ID=b2g.4.31.0.0;Parent=b2g.4.31.0 +Merlin_5 blast match_part 126 128 . . . Gap=M3;ID=b2g.4.31.0.1;Parent=b2g.4.31.0 +Merlin_5 blast match_part 134 141 . . . Gap=M8;ID=b2g.4.31.0.2;Parent=b2g.4.31.0 +Merlin_5 blast match_part 145 155 . . . Gap=M2 I2 M7;ID=b2g.4.31.0.3;Parent=b2g.4.31.0 +Merlin_5 blast match_part 159 164 . . . Gap=M6;ID=b2g.4.31.0.4;Parent=b2g.4.31.0 +Merlin_5 blast match_part 171 183 . . . Gap=M13;ID=b2g.4.31.0.5;Parent=b2g.4.31.0 +Merlin_5 blast match_part 190 194 . . . Gap=M5;ID=b2g.4.31.0.6;Parent=b2g.4.31.0 +Merlin_5 blast match_part 198 225 . . . Gap=M28;ID=b2g.4.31.0.7;Parent=b2g.4.31.0 +Merlin_5 blast match_part 230 266 . . . Gap=M37;ID=b2g.4.31.0.8;Parent=b2g.4.31.0 +Merlin_5 blast match_part 271 302 . . . Gap=M32;ID=b2g.4.31.0.9;Parent=b2g.4.31.0 +Merlin_5 blast match_part 308 317 . . . Gap=M10;ID=b2g.4.31.0.10;Parent=b2g.4.31.0 +Merlin_5 blast match_part 321 341 . . . Gap=M21;ID=b2g.4.31.0.11;Parent=b2g.4.31.0 +Merlin_5 blast match_part 346 379 . . . Gap=M27 I1 M6;ID=b2g.4.31.0.12;Parent=b2g.4.31.0 +Merlin_5 blast match_part 386 386 . . . Gap=M1;ID=b2g.4.31.0.13;Parent=b2g.4.31.0 +Merlin_5 blast match_part 390 391 . . . Gap=M2;ID=b2g.4.31.0.14;Parent=b2g.4.31.0 +Merlin_5 blast match_part 395 396 . . . Gap=M2;ID=b2g.4.31.0.15;Parent=b2g.4.31.0 +Merlin_5 blast match_part 400 405 . . . Gap=M6;ID=b2g.4.31.0.16;Parent=b2g.4.31.0 +Merlin_5 blast match_part 411 428 . . . Gap=M18;ID=b2g.4.31.0.17;Parent=b2g.4.31.0 +Merlin_5 blast match_part 432 442 . . . Gap=M11;ID=b2g.4.31.0.18;Parent=b2g.4.31.0 +Merlin_5 blast match_part 447 452 . . . Gap=M6;ID=b2g.4.31.0.19;Parent=b2g.4.31.0 +Merlin_5 blast match_part 456 461 . . . Gap=M6;ID=b2g.4.31.0.20;Parent=b2g.4.31.0 +Merlin_5 blast match_part 466 507 . . . Gap=M30 I1 M4 I2 M5;ID=b2g.4.31.0.21;Parent=b2g.4.31.0 +Merlin_5 blast match_part 513 526 . . . Gap=M14;ID=b2g.4.31.0.22;Parent=b2g.4.31.0 +Merlin_5 blast match_part 530 535 . . . Gap=M6;ID=b2g.4.31.0.23;Parent=b2g.4.31.0 +Merlin_5 blast match_part 540 540 . . . Gap=M1;ID=b2g.4.31.0.24;Parent=b2g.4.31.0 +Merlin_5 blast match_part 547 552 . . . Gap=M6;ID=b2g.4.31.0.25;Parent=b2g.4.31.0 +Merlin_5 blast match_part 556 576 . . . Gap=M21;ID=b2g.4.31.0.26;Parent=b2g.4.31.0 +Merlin_5 blast protein_match -8 688 1.85312e-46 . . ID=b2g.4.32.0;accession=YP_004300776;blast_align_length=533;blast_bits=182.185;blast_frame=0;blast_gaps=65;blast_identities=164;blast_positives=246;blast_query_end=576;blast_query_start=75;blast_sbjct_end=582;blast_sbjct_start=84;blast_score=461.0;blast_strand=None;description=gp29 baseplate hub %5BAcinetobacter phage 133%5D;hit_id=gi%7C326536335%7Cref%7CYP_004300776.1%7C;hit_titles=gi%7C326536335%7Cref%7CYP_004300776.1%7C gp29 baseplate hub %5BAcinetobacter phage 133%5D,gi%7C299483416%7Cgb%7CADJ19510.1%7C gp29 baseplate hub %5BAcinetobacter phage 133%5D;length=582 +Merlin_5 blast match_part 75 85 . . . Gap=M11;ID=b2g.4.32.0.0;Parent=b2g.4.32.0 +Merlin_5 blast match_part 91 122 . . . Gap=M32;ID=b2g.4.32.0.1;Parent=b2g.4.32.0 +Merlin_5 blast match_part 133 137 . . . Gap=M5;ID=b2g.4.32.0.2;Parent=b2g.4.32.0 +Merlin_5 blast match_part 143 143 . . . Gap=M1;ID=b2g.4.32.0.3;Parent=b2g.4.32.0 +Merlin_5 blast match_part 147 149 . . . Gap=M3;ID=b2g.4.32.0.4;Parent=b2g.4.32.0 +Merlin_5 blast match_part 153 155 . . . Gap=M3;ID=b2g.4.32.0.5;Parent=b2g.4.32.0 +Merlin_5 blast match_part 162 163 . . . Gap=M2;ID=b2g.4.32.0.6;Parent=b2g.4.32.0 +Merlin_5 blast match_part 173 175 . . . Gap=M3;ID=b2g.4.32.0.7;Parent=b2g.4.32.0 +Merlin_5 blast match_part 181 191 . . . Gap=M11;ID=b2g.4.32.0.8;Parent=b2g.4.32.0 +Merlin_5 blast match_part 197 197 . . . Gap=M1;ID=b2g.4.32.0.9;Parent=b2g.4.32.0 +Merlin_5 blast match_part 202 265 . . . Gap=M64;ID=b2g.4.32.0.10;Parent=b2g.4.32.0 +Merlin_5 blast match_part 270 272 . . . Gap=M3;ID=b2g.4.32.0.11;Parent=b2g.4.32.0 +Merlin_5 blast match_part 276 302 . . . Gap=M27;ID=b2g.4.32.0.12;Parent=b2g.4.32.0 +Merlin_5 blast match_part 306 308 . . . Gap=M3;ID=b2g.4.32.0.13;Parent=b2g.4.32.0 +Merlin_5 blast match_part 312 329 . . . Gap=M18;ID=b2g.4.32.0.14;Parent=b2g.4.32.0 +Merlin_5 blast match_part 333 341 . . . Gap=M9;ID=b2g.4.32.0.15;Parent=b2g.4.32.0 +Merlin_5 blast match_part 346 353 . . . Gap=M8;ID=b2g.4.32.0.16;Parent=b2g.4.32.0 +Merlin_5 blast match_part 357 379 . . . Gap=M23;ID=b2g.4.32.0.17;Parent=b2g.4.32.0 +Merlin_5 blast match_part 386 386 . . . Gap=M1;ID=b2g.4.32.0.18;Parent=b2g.4.32.0 +Merlin_5 blast match_part 391 391 . . . Gap=M1;ID=b2g.4.32.0.19;Parent=b2g.4.32.0 +Merlin_5 blast match_part 395 410 . . . Gap=M16;ID=b2g.4.32.0.20;Parent=b2g.4.32.0 +Merlin_5 blast match_part 416 428 . . . Gap=M13;ID=b2g.4.32.0.21;Parent=b2g.4.32.0 +Merlin_5 blast match_part 432 453 . . . Gap=M22;ID=b2g.4.32.0.22;Parent=b2g.4.32.0 +Merlin_5 blast match_part 459 498 . . . Gap=M40;ID=b2g.4.32.0.23;Parent=b2g.4.32.0 +Merlin_5 blast match_part 505 505 . . . Gap=M1;ID=b2g.4.32.0.24;Parent=b2g.4.32.0 +Merlin_5 blast match_part 509 516 . . . Gap=M8;ID=b2g.4.32.0.25;Parent=b2g.4.32.0 +Merlin_5 blast match_part 523 524 . . . Gap=M2;ID=b2g.4.32.0.26;Parent=b2g.4.32.0 +Merlin_5 blast match_part 529 529 . . . Gap=M1;ID=b2g.4.32.0.27;Parent=b2g.4.32.0 +Merlin_5 blast match_part 534 544 . . . Gap=M11;ID=b2g.4.32.0.28;Parent=b2g.4.32.0 +Merlin_5 blast match_part 549 556 . . . Gap=M8;ID=b2g.4.32.0.29;Parent=b2g.4.32.0 +Merlin_5 blast match_part 561 576 . . . Gap=M16;ID=b2g.4.32.0.30;Parent=b2g.4.32.0 +Merlin_5 blast protein_match 15 692 5.19477e-43 . . ID=b2g.4.33.0;accession=YP_004010338;blast_align_length=525;blast_bits=172.17;blast_frame=0;blast_gaps=58;blast_identities=159;blast_positives=249;blast_query_end=576;blast_query_start=86;blast_sbjct_end=572;blast_sbjct_start=72;blast_score=435.0;blast_strand=None;description=gp29 baseplate hub subunit %5BAcinetobacter phage Acj9%5D;hit_id=gi%7C311993473%7Cref%7CYP_004010338.1%7C;hit_titles=gi%7C311993473%7Cref%7CYP_004010338.1%7C gp29 baseplate hub subunit %5BAcinetobacter phage Acj9%5D,gi%7C295917430%7Cgb%7CADG60101.1%7C gp29 baseplate hub subunit %5BAcinetobacter phage Acj9%5D;length=572 +Merlin_5 blast match_part 86 115 . . . Gap=M30;ID=b2g.4.33.0.0;Parent=b2g.4.33.0 +Merlin_5 blast match_part 128 129 . . . Gap=M2;ID=b2g.4.33.0.1;Parent=b2g.4.33.0 +Merlin_5 blast match_part 133 140 . . . Gap=M6 I1 M1;ID=b2g.4.33.0.2;Parent=b2g.4.33.0 +Merlin_5 blast match_part 145 147 . . . Gap=M3;ID=b2g.4.33.0.3;Parent=b2g.4.33.0 +Merlin_5 blast match_part 153 157 . . . Gap=M5;ID=b2g.4.33.0.4;Parent=b2g.4.33.0 +Merlin_5 blast match_part 171 192 . . . Gap=M22;ID=b2g.4.33.0.5;Parent=b2g.4.33.0 +Merlin_5 blast match_part 197 198 . . . Gap=M2;ID=b2g.4.33.0.6;Parent=b2g.4.33.0 +Merlin_5 blast match_part 202 266 . . . Gap=M65;ID=b2g.4.33.0.7;Parent=b2g.4.33.0 +Merlin_5 blast match_part 270 302 . . . Gap=M33;ID=b2g.4.33.0.8;Parent=b2g.4.33.0 +Merlin_5 blast match_part 306 317 . . . Gap=M12;ID=b2g.4.33.0.9;Parent=b2g.4.33.0 +Merlin_5 blast match_part 322 333 . . . Gap=M12;ID=b2g.4.33.0.10;Parent=b2g.4.33.0 +Merlin_5 blast match_part 337 341 . . . Gap=M5;ID=b2g.4.33.0.11;Parent=b2g.4.33.0 +Merlin_5 blast match_part 346 379 . . . Gap=M27 I1 M6;ID=b2g.4.33.0.12;Parent=b2g.4.33.0 +Merlin_5 blast match_part 388 388 . . . Gap=M1;ID=b2g.4.33.0.13;Parent=b2g.4.33.0 +Merlin_5 blast match_part 392 416 . . . Gap=M4 I1 M20;ID=b2g.4.33.0.14;Parent=b2g.4.33.0 +Merlin_5 blast match_part 420 426 . . . Gap=M7;ID=b2g.4.33.0.15;Parent=b2g.4.33.0 +Merlin_5 blast match_part 432 442 . . . Gap=M11;ID=b2g.4.33.0.16;Parent=b2g.4.33.0 +Merlin_5 blast match_part 447 450 . . . Gap=M4;ID=b2g.4.33.0.17;Parent=b2g.4.33.0 +Merlin_5 blast match_part 460 461 . . . Gap=M2;ID=b2g.4.33.0.18;Parent=b2g.4.33.0 +Merlin_5 blast match_part 466 471 . . . Gap=M6;ID=b2g.4.33.0.19;Parent=b2g.4.33.0 +Merlin_5 blast match_part 475 488 . . . Gap=M14;ID=b2g.4.33.0.20;Parent=b2g.4.33.0 +Merlin_5 blast match_part 492 500 . . . Gap=M1 I1 M7;ID=b2g.4.33.0.21;Parent=b2g.4.33.0 +Merlin_5 blast match_part 505 536 . . . Gap=M4 I2 M26;ID=b2g.4.33.0.22;Parent=b2g.4.33.0 +Merlin_5 blast match_part 540 540 . . . Gap=M1;ID=b2g.4.33.0.23;Parent=b2g.4.33.0 +Merlin_5 blast match_part 545 547 . . . Gap=M3;ID=b2g.4.33.0.24;Parent=b2g.4.33.0 +Merlin_5 blast match_part 552 556 . . . Gap=M5;ID=b2g.4.33.0.25;Parent=b2g.4.33.0 +Merlin_5 blast match_part 561 576 . . . Gap=M16;ID=b2g.4.33.0.26;Parent=b2g.4.33.0 +Merlin_5 blast protein_match 9 643 5.93083e-36 . . ID=b2g.4.34.0;accession=YP_003969101;blast_align_length=560;blast_bits=150.984;blast_frame=0;blast_gaps=69;blast_identities=143;blast_positives=271;blast_query_end=569;blast_query_start=44;blast_sbjct_end=560;blast_sbjct_start=36;blast_score=380.0;blast_strand=None;description=unnamed protein product %5BAeromonas phage phiAS4%5D;hit_id=gi%7C310722277%7Cref%7CYP_003969101.1%7C;hit_titles=gi%7C310722277%7Cref%7CYP_003969101.1%7C unnamed protein product %5BAeromonas phage phiAS4%5D,gi%7C306021120%7Cgb%7CADM79655.1%7C baseplate hub %5BAeromonas phage phiAS4%5D;length=565 +Merlin_5 blast match_part 44 62 . . . Gap=M15 I1 M3;ID=b2g.4.34.0.0;Parent=b2g.4.34.0 +Merlin_5 blast match_part 68 95 . . . Gap=M28;ID=b2g.4.34.0.1;Parent=b2g.4.34.0 +Merlin_5 blast match_part 101 111 . . . Gap=M11;ID=b2g.4.34.0.2;Parent=b2g.4.34.0 +Merlin_5 blast match_part 115 129 . . . Gap=M15;ID=b2g.4.34.0.3;Parent=b2g.4.34.0 +Merlin_5 blast match_part 133 137 . . . Gap=M5;ID=b2g.4.34.0.4;Parent=b2g.4.34.0 +Merlin_5 blast match_part 141 141 . . . Gap=M1;ID=b2g.4.34.0.5;Parent=b2g.4.34.0 +Merlin_5 blast match_part 148 153 . . . Gap=M6;ID=b2g.4.34.0.6;Parent=b2g.4.34.0 +Merlin_5 blast match_part 165 168 . . . Gap=M4;ID=b2g.4.34.0.7;Parent=b2g.4.34.0 +Merlin_5 blast match_part 175 200 . . . Gap=M26;ID=b2g.4.34.0.8;Parent=b2g.4.34.0 +Merlin_5 blast match_part 204 227 . . . Gap=M24;ID=b2g.4.34.0.9;Parent=b2g.4.34.0 +Merlin_5 blast match_part 231 270 . . . Gap=M40;ID=b2g.4.34.0.10;Parent=b2g.4.34.0 +Merlin_5 blast match_part 277 346 . . . Gap=M70;ID=b2g.4.34.0.11;Parent=b2g.4.34.0 +Merlin_5 blast match_part 354 375 . . . Gap=M22;ID=b2g.4.34.0.12;Parent=b2g.4.34.0 +Merlin_5 blast match_part 388 393 . . . Gap=M3 I1 M2;ID=b2g.4.34.0.13;Parent=b2g.4.34.0 +Merlin_5 blast match_part 397 402 . . . Gap=M6;ID=b2g.4.34.0.14;Parent=b2g.4.34.0 +Merlin_5 blast match_part 410 417 . . . Gap=M8;ID=b2g.4.34.0.15;Parent=b2g.4.34.0 +Merlin_5 blast match_part 422 432 . . . Gap=M11;ID=b2g.4.34.0.16;Parent=b2g.4.34.0 +Merlin_5 blast match_part 440 446 . . . Gap=M7;ID=b2g.4.34.0.17;Parent=b2g.4.34.0 +Merlin_5 blast match_part 451 478 . . . Gap=M28;ID=b2g.4.34.0.18;Parent=b2g.4.34.0 +Merlin_5 blast match_part 482 487 . . . Gap=M6;ID=b2g.4.34.0.19;Parent=b2g.4.34.0 +Merlin_5 blast match_part 493 496 . . . Gap=M4;ID=b2g.4.34.0.20;Parent=b2g.4.34.0 +Merlin_5 blast match_part 501 501 . . . Gap=M1;ID=b2g.4.34.0.21;Parent=b2g.4.34.0 +Merlin_5 blast match_part 507 511 . . . Gap=M5;ID=b2g.4.34.0.22;Parent=b2g.4.34.0 +Merlin_5 blast match_part 515 515 . . . Gap=M1;ID=b2g.4.34.0.23;Parent=b2g.4.34.0 +Merlin_5 blast match_part 519 526 . . . Gap=M8;ID=b2g.4.34.0.24;Parent=b2g.4.34.0 +Merlin_5 blast match_part 530 534 . . . Gap=M5;ID=b2g.4.34.0.25;Parent=b2g.4.34.0 +Merlin_5 blast match_part 540 557 . . . Gap=M18;ID=b2g.4.34.0.26;Parent=b2g.4.34.0 +Merlin_5 blast match_part 562 569 . . . Gap=M8;ID=b2g.4.34.0.27;Parent=b2g.4.34.0 +Merlin_5 blast protein_match 9 643 8.25687e-36 . . ID=b2g.4.35.0;accession=YP_007677896;blast_align_length=560;blast_bits=150.599;blast_frame=0;blast_gaps=69;blast_identities=143;blast_positives=271;blast_query_end=569;blast_query_start=44;blast_sbjct_end=560;blast_sbjct_start=36;blast_score=379.0;blast_strand=None;description=baseplate hub subunit tail length determinator %5BAeromonas phage Aes012%5D;hit_id=gi%7C472438116%7Cref%7CYP_007677896.1%7C;hit_titles=gi%7C472438116%7Cref%7CYP_007677896.1%7C baseplate hub subunit tail length determinator %5BAeromonas phage Aes012%5D,gi%7C395653254%7Cgb%7CAFN69809.1%7C baseplate hub subunit tail length determinator %5BAeromonas phage Aes012%5D;length=565 +Merlin_5 blast match_part 44 62 . . . Gap=M15 I1 M3;ID=b2g.4.35.0.0;Parent=b2g.4.35.0 +Merlin_5 blast match_part 68 95 . . . Gap=M28;ID=b2g.4.35.0.1;Parent=b2g.4.35.0 +Merlin_5 blast match_part 101 111 . . . Gap=M11;ID=b2g.4.35.0.2;Parent=b2g.4.35.0 +Merlin_5 blast match_part 115 129 . . . Gap=M15;ID=b2g.4.35.0.3;Parent=b2g.4.35.0 +Merlin_5 blast match_part 133 137 . . . Gap=M5;ID=b2g.4.35.0.4;Parent=b2g.4.35.0 +Merlin_5 blast match_part 141 143 . . . Gap=M3;ID=b2g.4.35.0.5;Parent=b2g.4.35.0 +Merlin_5 blast match_part 148 153 . . . Gap=M6;ID=b2g.4.35.0.6;Parent=b2g.4.35.0 +Merlin_5 blast match_part 165 168 . . . Gap=M4;ID=b2g.4.35.0.7;Parent=b2g.4.35.0 +Merlin_5 blast match_part 175 200 . . . Gap=M26;ID=b2g.4.35.0.8;Parent=b2g.4.35.0 +Merlin_5 blast match_part 204 227 . . . Gap=M24;ID=b2g.4.35.0.9;Parent=b2g.4.35.0 +Merlin_5 blast match_part 231 270 . . . Gap=M40;ID=b2g.4.35.0.10;Parent=b2g.4.35.0 +Merlin_5 blast match_part 277 346 . . . Gap=M70;ID=b2g.4.35.0.11;Parent=b2g.4.35.0 +Merlin_5 blast match_part 354 375 . . . Gap=M22;ID=b2g.4.35.0.12;Parent=b2g.4.35.0 +Merlin_5 blast match_part 388 393 . . . Gap=M3 I1 M2;ID=b2g.4.35.0.13;Parent=b2g.4.35.0 +Merlin_5 blast match_part 397 402 . . . Gap=M6;ID=b2g.4.35.0.14;Parent=b2g.4.35.0 +Merlin_5 blast match_part 410 417 . . . Gap=M8;ID=b2g.4.35.0.15;Parent=b2g.4.35.0 +Merlin_5 blast match_part 422 432 . . . Gap=M11;ID=b2g.4.35.0.16;Parent=b2g.4.35.0 +Merlin_5 blast match_part 440 446 . . . Gap=M7;ID=b2g.4.35.0.17;Parent=b2g.4.35.0 +Merlin_5 blast match_part 451 478 . . . Gap=M28;ID=b2g.4.35.0.18;Parent=b2g.4.35.0 +Merlin_5 blast match_part 482 487 . . . Gap=M6;ID=b2g.4.35.0.19;Parent=b2g.4.35.0 +Merlin_5 blast match_part 493 496 . . . Gap=M4;ID=b2g.4.35.0.20;Parent=b2g.4.35.0 +Merlin_5 blast match_part 501 501 . . . Gap=M1;ID=b2g.4.35.0.21;Parent=b2g.4.35.0 +Merlin_5 blast match_part 507 511 . . . Gap=M5;ID=b2g.4.35.0.22;Parent=b2g.4.35.0 +Merlin_5 blast match_part 515 515 . . . Gap=M1;ID=b2g.4.35.0.23;Parent=b2g.4.35.0 +Merlin_5 blast match_part 519 526 . . . Gap=M8;ID=b2g.4.35.0.24;Parent=b2g.4.35.0 +Merlin_5 blast match_part 530 534 . . . Gap=M5;ID=b2g.4.35.0.25;Parent=b2g.4.35.0 +Merlin_5 blast match_part 543 557 . . . Gap=M15;ID=b2g.4.35.0.26;Parent=b2g.4.35.0 +Merlin_5 blast match_part 562 569 . . . Gap=M8;ID=b2g.4.35.0.27;Parent=b2g.4.35.0 +Merlin_5 blast protein_match -1 681 2.04985e-35 . . ID=b2g.4.36.0;accession=YP_004009814;blast_align_length=573;blast_bits=149.443;blast_frame=0;blast_gaps=61;blast_identities=174;blast_positives=287;blast_query_end=576;blast_query_start=44;blast_sbjct_end=597;blast_sbjct_start=46;blast_score=376.0;blast_strand=None;description=gp29 baseplate hub subunit %5BAcinetobacter phage Acj61%5D;hit_id=gi%7C311992947%7Cref%7CYP_004009814.1%7C;hit_titles=gi%7C311992947%7Cref%7CYP_004009814.1%7C gp29 baseplate hub subunit %5BAcinetobacter phage Acj61%5D,gi%7C295815236%7Cgb%7CADG36162.1%7C gp29 baseplate hub subunit %5BAcinetobacter phage Acj61%5D;length=597 +Merlin_5 blast match_part 44 68 . . . Gap=M25;ID=b2g.4.36.0.0;Parent=b2g.4.36.0 +Merlin_5 blast match_part 72 82 . . . Gap=M11;ID=b2g.4.36.0.1;Parent=b2g.4.36.0 +Merlin_5 blast match_part 87 93 . . . Gap=M7;ID=b2g.4.36.0.2;Parent=b2g.4.36.0 +Merlin_5 blast match_part 98 105 . . . Gap=M8;ID=b2g.4.36.0.3;Parent=b2g.4.36.0 +Merlin_5 blast match_part 109 117 . . . Gap=M9;ID=b2g.4.36.0.4;Parent=b2g.4.36.0 +Merlin_5 blast match_part 121 129 . . . Gap=M9;ID=b2g.4.36.0.5;Parent=b2g.4.36.0 +Merlin_5 blast match_part 133 138 . . . Gap=M6;ID=b2g.4.36.0.6;Parent=b2g.4.36.0 +Merlin_5 blast match_part 145 158 . . . Gap=M14;ID=b2g.4.36.0.7;Parent=b2g.4.36.0 +Merlin_5 blast match_part 170 170 . . . Gap=M1;ID=b2g.4.36.0.8;Parent=b2g.4.36.0 +Merlin_5 blast match_part 177 185 . . . Gap=M9;ID=b2g.4.36.0.9;Parent=b2g.4.36.0 +Merlin_5 blast match_part 189 200 . . . Gap=M12;ID=b2g.4.36.0.10;Parent=b2g.4.36.0 +Merlin_5 blast match_part 204 225 . . . Gap=M22;ID=b2g.4.36.0.11;Parent=b2g.4.36.0 +Merlin_5 blast match_part 230 260 . . . Gap=M31;ID=b2g.4.36.0.12;Parent=b2g.4.36.0 +Merlin_5 blast match_part 264 266 . . . Gap=M3;ID=b2g.4.36.0.13;Parent=b2g.4.36.0 +Merlin_5 blast match_part 271 273 . . . Gap=M3;ID=b2g.4.36.0.14;Parent=b2g.4.36.0 +Merlin_5 blast match_part 277 302 . . . Gap=M26;ID=b2g.4.36.0.15;Parent=b2g.4.36.0 +Merlin_5 blast match_part 306 309 . . . Gap=M4;ID=b2g.4.36.0.16;Parent=b2g.4.36.0 +Merlin_5 blast match_part 313 317 . . . Gap=M5;ID=b2g.4.36.0.17;Parent=b2g.4.36.0 +Merlin_5 blast match_part 321 324 . . . Gap=M4;ID=b2g.4.36.0.18;Parent=b2g.4.36.0 +Merlin_5 blast match_part 328 334 . . . Gap=M7;ID=b2g.4.36.0.19;Parent=b2g.4.36.0 +Merlin_5 blast match_part 338 376 . . . Gap=M39;ID=b2g.4.36.0.20;Parent=b2g.4.36.0 +Merlin_5 blast match_part 381 386 . . . Gap=M6;ID=b2g.4.36.0.21;Parent=b2g.4.36.0 +Merlin_5 blast match_part 391 391 . . . Gap=M1;ID=b2g.4.36.0.22;Parent=b2g.4.36.0 +Merlin_5 blast match_part 395 401 . . . Gap=M7;ID=b2g.4.36.0.23;Parent=b2g.4.36.0 +Merlin_5 blast match_part 406 415 . . . Gap=M10;ID=b2g.4.36.0.24;Parent=b2g.4.36.0 +Merlin_5 blast match_part 419 428 . . . Gap=M10;ID=b2g.4.36.0.25;Parent=b2g.4.36.0 +Merlin_5 blast match_part 432 444 . . . Gap=M13;ID=b2g.4.36.0.26;Parent=b2g.4.36.0 +Merlin_5 blast match_part 449 461 . . . Gap=M13;ID=b2g.4.36.0.27;Parent=b2g.4.36.0 +Merlin_5 blast match_part 466 475 . . . Gap=M10;ID=b2g.4.36.0.28;Parent=b2g.4.36.0 +Merlin_5 blast match_part 479 498 . . . Gap=M20;ID=b2g.4.36.0.29;Parent=b2g.4.36.0 +Merlin_5 blast match_part 506 507 . . . Gap=M2;ID=b2g.4.36.0.30;Parent=b2g.4.36.0 +Merlin_5 blast match_part 511 536 . . . Gap=M19 I2 M5;ID=b2g.4.36.0.31;Parent=b2g.4.36.0 +Merlin_5 blast match_part 540 556 . . . Gap=M17;ID=b2g.4.36.0.32;Parent=b2g.4.36.0 +Merlin_5 blast match_part 562 576 . . . Gap=M15;ID=b2g.4.36.0.33;Parent=b2g.4.36.0 +Merlin_5 blast protein_match 9 643 5.89358e-35 . . ID=b2g.4.37.0;accession=AFQ22670;blast_align_length=560;blast_bits=147.902;blast_frame=0;blast_gaps=69;blast_identities=142;blast_positives=270;blast_query_end=569;blast_query_start=44;blast_sbjct_end=560;blast_sbjct_start=36;blast_score=372.0;blast_strand=None;description=baseplate hub %5BStenotrophomonas phage IME13%5D;hit_id=gi%7C401824980%7Cgb%7CAFQ22670.1%7C;hit_titles=gi%7C401824980%7Cgb%7CAFQ22670.1%7C baseplate hub %5BStenotrophomonas phage IME13%5D;length=565 +Merlin_5 blast match_part 44 62 . . . Gap=M15 I1 M3;ID=b2g.4.37.0.0;Parent=b2g.4.37.0 +Merlin_5 blast match_part 68 95 . . . Gap=M28;ID=b2g.4.37.0.1;Parent=b2g.4.37.0 +Merlin_5 blast match_part 101 111 . . . Gap=M11;ID=b2g.4.37.0.2;Parent=b2g.4.37.0 +Merlin_5 blast match_part 115 129 . . . Gap=M15;ID=b2g.4.37.0.3;Parent=b2g.4.37.0 +Merlin_5 blast match_part 133 137 . . . Gap=M5;ID=b2g.4.37.0.4;Parent=b2g.4.37.0 +Merlin_5 blast match_part 141 141 . . . Gap=M1;ID=b2g.4.37.0.5;Parent=b2g.4.37.0 +Merlin_5 blast match_part 148 153 . . . Gap=M6;ID=b2g.4.37.0.6;Parent=b2g.4.37.0 +Merlin_5 blast match_part 165 168 . . . Gap=M4;ID=b2g.4.37.0.7;Parent=b2g.4.37.0 +Merlin_5 blast match_part 175 200 . . . Gap=M26;ID=b2g.4.37.0.8;Parent=b2g.4.37.0 +Merlin_5 blast match_part 204 227 . . . Gap=M24;ID=b2g.4.37.0.9;Parent=b2g.4.37.0 +Merlin_5 blast match_part 231 270 . . . Gap=M40;ID=b2g.4.37.0.10;Parent=b2g.4.37.0 +Merlin_5 blast match_part 277 346 . . . Gap=M70;ID=b2g.4.37.0.11;Parent=b2g.4.37.0 +Merlin_5 blast match_part 354 375 . . . Gap=M22;ID=b2g.4.37.0.12;Parent=b2g.4.37.0 +Merlin_5 blast match_part 388 393 . . . Gap=M3 I1 M2;ID=b2g.4.37.0.13;Parent=b2g.4.37.0 +Merlin_5 blast match_part 397 402 . . . Gap=M6;ID=b2g.4.37.0.14;Parent=b2g.4.37.0 +Merlin_5 blast match_part 410 417 . . . Gap=M8;ID=b2g.4.37.0.15;Parent=b2g.4.37.0 +Merlin_5 blast match_part 422 432 . . . Gap=M11;ID=b2g.4.37.0.16;Parent=b2g.4.37.0 +Merlin_5 blast match_part 440 446 . . . Gap=M7;ID=b2g.4.37.0.17;Parent=b2g.4.37.0 +Merlin_5 blast match_part 451 478 . . . Gap=M28;ID=b2g.4.37.0.18;Parent=b2g.4.37.0 +Merlin_5 blast match_part 482 487 . . . Gap=M6;ID=b2g.4.37.0.19;Parent=b2g.4.37.0 +Merlin_5 blast match_part 493 496 . . . Gap=M4;ID=b2g.4.37.0.20;Parent=b2g.4.37.0 +Merlin_5 blast match_part 501 501 . . . Gap=M1;ID=b2g.4.37.0.21;Parent=b2g.4.37.0 +Merlin_5 blast match_part 507 511 . . . Gap=M5;ID=b2g.4.37.0.22;Parent=b2g.4.37.0 +Merlin_5 blast match_part 515 515 . . . Gap=M1;ID=b2g.4.37.0.23;Parent=b2g.4.37.0 +Merlin_5 blast match_part 519 526 . . . Gap=M8;ID=b2g.4.37.0.24;Parent=b2g.4.37.0 +Merlin_5 blast match_part 530 534 . . . Gap=M5;ID=b2g.4.37.0.25;Parent=b2g.4.37.0 +Merlin_5 blast match_part 543 557 . . . Gap=M15;ID=b2g.4.37.0.26;Parent=b2g.4.37.0 +Merlin_5 blast match_part 562 569 . . . Gap=M8;ID=b2g.4.37.0.27;Parent=b2g.4.37.0 +Merlin_5 blast protein_match 9 643 2.35249e-34 . . ID=b2g.4.38.0;accession=YP_656409;blast_align_length=560;blast_bits=145.976;blast_frame=0;blast_gaps=69;blast_identities=142;blast_positives=269;blast_query_end=569;blast_query_start=44;blast_sbjct_end=560;blast_sbjct_start=36;blast_score=367.0;blast_strand=None;description=gp29 base plate hub %5BAeromonas phage 25%5D;hit_id=gi%7C109290160%7Cref%7CYP_656409.1%7C;hit_titles=gi%7C109290160%7Cref%7CYP_656409.1%7C gp29 base plate hub %5BAeromonas phage 25%5D,gi%7C104345833%7Cgb%7CABF72733.1%7C gp29 base plate hub %5BAeromonas phage 25%5D;length=565 +Merlin_5 blast match_part 44 62 . . . Gap=M15 I1 M3;ID=b2g.4.38.0.0;Parent=b2g.4.38.0 +Merlin_5 blast match_part 68 95 . . . Gap=M28;ID=b2g.4.38.0.1;Parent=b2g.4.38.0 +Merlin_5 blast match_part 101 111 . . . Gap=M11;ID=b2g.4.38.0.2;Parent=b2g.4.38.0 +Merlin_5 blast match_part 115 129 . . . Gap=M15;ID=b2g.4.38.0.3;Parent=b2g.4.38.0 +Merlin_5 blast match_part 133 137 . . . Gap=M5;ID=b2g.4.38.0.4;Parent=b2g.4.38.0 +Merlin_5 blast match_part 141 141 . . . Gap=M1;ID=b2g.4.38.0.5;Parent=b2g.4.38.0 +Merlin_5 blast match_part 148 153 . . . Gap=M6;ID=b2g.4.38.0.6;Parent=b2g.4.38.0 +Merlin_5 blast match_part 165 168 . . . Gap=M4;ID=b2g.4.38.0.7;Parent=b2g.4.38.0 +Merlin_5 blast match_part 175 188 . . . Gap=M14;ID=b2g.4.38.0.8;Parent=b2g.4.38.0 +Merlin_5 blast match_part 192 200 . . . Gap=M9;ID=b2g.4.38.0.9;Parent=b2g.4.38.0 +Merlin_5 blast match_part 204 227 . . . Gap=M24;ID=b2g.4.38.0.10;Parent=b2g.4.38.0 +Merlin_5 blast match_part 231 270 . . . Gap=M40;ID=b2g.4.38.0.11;Parent=b2g.4.38.0 +Merlin_5 blast match_part 277 346 . . . Gap=M70;ID=b2g.4.38.0.12;Parent=b2g.4.38.0 +Merlin_5 blast match_part 354 375 . . . Gap=M22;ID=b2g.4.38.0.13;Parent=b2g.4.38.0 +Merlin_5 blast match_part 388 393 . . . Gap=M3 I1 M2;ID=b2g.4.38.0.14;Parent=b2g.4.38.0 +Merlin_5 blast match_part 397 402 . . . Gap=M6;ID=b2g.4.38.0.15;Parent=b2g.4.38.0 +Merlin_5 blast match_part 410 417 . . . Gap=M8;ID=b2g.4.38.0.16;Parent=b2g.4.38.0 +Merlin_5 blast match_part 422 432 . . . Gap=M11;ID=b2g.4.38.0.17;Parent=b2g.4.38.0 +Merlin_5 blast match_part 440 446 . . . Gap=M7;ID=b2g.4.38.0.18;Parent=b2g.4.38.0 +Merlin_5 blast match_part 451 478 . . . Gap=M28;ID=b2g.4.38.0.19;Parent=b2g.4.38.0 +Merlin_5 blast match_part 482 487 . . . Gap=M6;ID=b2g.4.38.0.20;Parent=b2g.4.38.0 +Merlin_5 blast match_part 493 496 . . . Gap=M4;ID=b2g.4.38.0.21;Parent=b2g.4.38.0 +Merlin_5 blast match_part 501 501 . . . Gap=M1;ID=b2g.4.38.0.22;Parent=b2g.4.38.0 +Merlin_5 blast match_part 507 511 . . . Gap=M5;ID=b2g.4.38.0.23;Parent=b2g.4.38.0 +Merlin_5 blast match_part 515 515 . . . Gap=M1;ID=b2g.4.38.0.24;Parent=b2g.4.38.0 +Merlin_5 blast match_part 519 526 . . . Gap=M8;ID=b2g.4.38.0.25;Parent=b2g.4.38.0 +Merlin_5 blast match_part 530 534 . . . Gap=M5;ID=b2g.4.38.0.26;Parent=b2g.4.38.0 +Merlin_5 blast match_part 543 557 . . . Gap=M15;ID=b2g.4.38.0.27;Parent=b2g.4.38.0 +Merlin_5 blast match_part 562 569 . . . Gap=M8;ID=b2g.4.38.0.28;Parent=b2g.4.38.0 +Merlin_5 blast protein_match 9 643 3.57946e-34 . . ID=b2g.4.39.0;accession=YP_007010857;blast_align_length=560;blast_bits=145.591;blast_frame=0;blast_gaps=69;blast_identities=142;blast_positives=269;blast_query_end=569;blast_query_start=44;blast_sbjct_end=560;blast_sbjct_start=36;blast_score=366.0;blast_strand=None;description=baseplate hub subunit tail length determinator %5BAeromonas phage Aes508%5D;hit_id=gi%7C423262258%7Cref%7CYP_007010857.1%7C;hit_titles=gi%7C423262258%7Cref%7CYP_007010857.1%7C baseplate hub subunit tail length determinator %5BAeromonas phage Aes508%5D,gi%7C402762136%7Cgb%7CAFQ97250.1%7C baseplate hub subunit tail length determinator %5BAeromonas phage Aes508%5D;length=565 +Merlin_5 blast match_part 44 62 . . . Gap=M15 I1 M3;ID=b2g.4.39.0.0;Parent=b2g.4.39.0 +Merlin_5 blast match_part 68 95 . . . Gap=M28;ID=b2g.4.39.0.1;Parent=b2g.4.39.0 +Merlin_5 blast match_part 101 111 . . . Gap=M11;ID=b2g.4.39.0.2;Parent=b2g.4.39.0 +Merlin_5 blast match_part 115 129 . . . Gap=M15;ID=b2g.4.39.0.3;Parent=b2g.4.39.0 +Merlin_5 blast match_part 133 137 . . . Gap=M5;ID=b2g.4.39.0.4;Parent=b2g.4.39.0 +Merlin_5 blast match_part 141 141 . . . Gap=M1;ID=b2g.4.39.0.5;Parent=b2g.4.39.0 +Merlin_5 blast match_part 148 153 . . . Gap=M6;ID=b2g.4.39.0.6;Parent=b2g.4.39.0 +Merlin_5 blast match_part 165 168 . . . Gap=M4;ID=b2g.4.39.0.7;Parent=b2g.4.39.0 +Merlin_5 blast match_part 175 200 . . . Gap=M26;ID=b2g.4.39.0.8;Parent=b2g.4.39.0 +Merlin_5 blast match_part 204 227 . . . Gap=M24;ID=b2g.4.39.0.9;Parent=b2g.4.39.0 +Merlin_5 blast match_part 231 270 . . . Gap=M40;ID=b2g.4.39.0.10;Parent=b2g.4.39.0 +Merlin_5 blast match_part 277 346 . . . Gap=M70;ID=b2g.4.39.0.11;Parent=b2g.4.39.0 +Merlin_5 blast match_part 354 375 . . . Gap=M22;ID=b2g.4.39.0.12;Parent=b2g.4.39.0 +Merlin_5 blast match_part 388 393 . . . Gap=M3 I1 M2;ID=b2g.4.39.0.13;Parent=b2g.4.39.0 +Merlin_5 blast match_part 397 402 . . . Gap=M6;ID=b2g.4.39.0.14;Parent=b2g.4.39.0 +Merlin_5 blast match_part 410 417 . . . Gap=M8;ID=b2g.4.39.0.15;Parent=b2g.4.39.0 +Merlin_5 blast match_part 422 432 . . . Gap=M11;ID=b2g.4.39.0.16;Parent=b2g.4.39.0 +Merlin_5 blast match_part 440 446 . . . Gap=M7;ID=b2g.4.39.0.17;Parent=b2g.4.39.0 +Merlin_5 blast match_part 451 478 . . . Gap=M28;ID=b2g.4.39.0.18;Parent=b2g.4.39.0 +Merlin_5 blast match_part 482 487 . . . Gap=M6;ID=b2g.4.39.0.19;Parent=b2g.4.39.0 +Merlin_5 blast match_part 493 496 . . . Gap=M4;ID=b2g.4.39.0.20;Parent=b2g.4.39.0 +Merlin_5 blast match_part 501 501 . . . Gap=M1;ID=b2g.4.39.0.21;Parent=b2g.4.39.0 +Merlin_5 blast match_part 507 511 . . . Gap=M5;ID=b2g.4.39.0.22;Parent=b2g.4.39.0 +Merlin_5 blast match_part 515 515 . . . Gap=M1;ID=b2g.4.39.0.23;Parent=b2g.4.39.0 +Merlin_5 blast match_part 519 526 . . . Gap=M8;ID=b2g.4.39.0.24;Parent=b2g.4.39.0 +Merlin_5 blast match_part 530 534 . . . Gap=M5;ID=b2g.4.39.0.25;Parent=b2g.4.39.0 +Merlin_5 blast match_part 543 557 . . . Gap=M15;ID=b2g.4.39.0.26;Parent=b2g.4.39.0 +Merlin_5 blast match_part 562 569 . . . Gap=M8;ID=b2g.4.39.0.27;Parent=b2g.4.39.0 +Merlin_5 blast protein_match 9 637 1.01075e-33 . . ID=b2g.4.40.0;accession=YP_238910;blast_align_length=553;blast_bits=144.05;blast_frame=0;blast_gaps=53;blast_identities=150;blast_positives=269;blast_query_end=569;blast_query_start=44;blast_sbjct_end=562;blast_sbjct_start=36;blast_score=362.0;blast_strand=None;description=baseplate hub subunit %5BAeromonas phage 31%5D;hit_id=gi%7C66391985%7Cref%7CYP_238910.1%7C;hit_titles=gi%7C66391985%7Cref%7CYP_238910.1%7C baseplate hub subunit %5BAeromonas phage 31%5D,gi%7C62114822%7Cgb%7CAAX63670.1%7C gp29 %5BAeromonas phage 31%5D;length=566 +Merlin_5 blast match_part 44 84 . . . Gap=M41;ID=b2g.4.40.0.0;Parent=b2g.4.40.0 +Merlin_5 blast match_part 88 92 . . . Gap=M5;ID=b2g.4.40.0.1;Parent=b2g.4.40.0 +Merlin_5 blast match_part 101 110 . . . Gap=M10;ID=b2g.4.40.0.2;Parent=b2g.4.40.0 +Merlin_5 blast match_part 115 118 . . . Gap=M4;ID=b2g.4.40.0.3;Parent=b2g.4.40.0 +Merlin_5 blast match_part 123 127 . . . Gap=M5;ID=b2g.4.40.0.4;Parent=b2g.4.40.0 +Merlin_5 blast match_part 131 144 . . . Gap=M14;ID=b2g.4.40.0.5;Parent=b2g.4.40.0 +Merlin_5 blast match_part 154 160 . . . Gap=M7;ID=b2g.4.40.0.6;Parent=b2g.4.40.0 +Merlin_5 blast match_part 166 167 . . . Gap=M2;ID=b2g.4.40.0.7;Parent=b2g.4.40.0 +Merlin_5 blast match_part 171 171 . . . Gap=M1;ID=b2g.4.40.0.8;Parent=b2g.4.40.0 +Merlin_5 blast match_part 175 178 . . . Gap=M4;ID=b2g.4.40.0.9;Parent=b2g.4.40.0 +Merlin_5 blast match_part 182 188 . . . Gap=M7;ID=b2g.4.40.0.10;Parent=b2g.4.40.0 +Merlin_5 blast match_part 192 200 . . . Gap=M9;ID=b2g.4.40.0.11;Parent=b2g.4.40.0 +Merlin_5 blast match_part 204 226 . . . Gap=M23;ID=b2g.4.40.0.12;Parent=b2g.4.40.0 +Merlin_5 blast match_part 231 258 . . . Gap=M28;ID=b2g.4.40.0.13;Parent=b2g.4.40.0 +Merlin_5 blast match_part 262 265 . . . Gap=M4;ID=b2g.4.40.0.14;Parent=b2g.4.40.0 +Merlin_5 blast match_part 270 273 . . . Gap=M4;ID=b2g.4.40.0.15;Parent=b2g.4.40.0 +Merlin_5 blast match_part 277 346 . . . Gap=M70;ID=b2g.4.40.0.16;Parent=b2g.4.40.0 +Merlin_5 blast match_part 351 375 . . . Gap=M25;ID=b2g.4.40.0.17;Parent=b2g.4.40.0 +Merlin_5 blast match_part 385 387 . . . Gap=M3;ID=b2g.4.40.0.18;Parent=b2g.4.40.0 +Merlin_5 blast match_part 393 393 . . . Gap=M1;ID=b2g.4.40.0.19;Parent=b2g.4.40.0 +Merlin_5 blast match_part 397 402 . . . Gap=M6;ID=b2g.4.40.0.20;Parent=b2g.4.40.0 +Merlin_5 blast match_part 409 413 . . . Gap=M5;ID=b2g.4.40.0.21;Parent=b2g.4.40.0 +Merlin_5 blast match_part 417 419 . . . Gap=M3;ID=b2g.4.40.0.22;Parent=b2g.4.40.0 +Merlin_5 blast match_part 423 431 . . . Gap=M9;ID=b2g.4.40.0.23;Parent=b2g.4.40.0 +Merlin_5 blast match_part 437 446 . . . Gap=M10;ID=b2g.4.40.0.24;Parent=b2g.4.40.0 +Merlin_5 blast match_part 451 461 . . . Gap=M11;ID=b2g.4.40.0.25;Parent=b2g.4.40.0 +Merlin_5 blast match_part 467 472 . . . Gap=M6;ID=b2g.4.40.0.26;Parent=b2g.4.40.0 +Merlin_5 blast match_part 476 478 . . . Gap=M3;ID=b2g.4.40.0.27;Parent=b2g.4.40.0 +Merlin_5 blast match_part 482 499 . . . Gap=M18;ID=b2g.4.40.0.28;Parent=b2g.4.40.0 +Merlin_5 blast match_part 506 511 . . . Gap=M6;ID=b2g.4.40.0.29;Parent=b2g.4.40.0 +Merlin_5 blast match_part 515 515 . . . Gap=M1;ID=b2g.4.40.0.30;Parent=b2g.4.40.0 +Merlin_5 blast match_part 519 526 . . . Gap=M8;ID=b2g.4.40.0.31;Parent=b2g.4.40.0 +Merlin_5 blast match_part 530 534 . . . Gap=M5;ID=b2g.4.40.0.32;Parent=b2g.4.40.0 +Merlin_5 blast match_part 540 557 . . . Gap=M2 I1 M15;ID=b2g.4.40.0.33;Parent=b2g.4.40.0 +Merlin_5 blast match_part 562 569 . . . Gap=M8;ID=b2g.4.40.0.34;Parent=b2g.4.40.0 +Merlin_5 blast protein_match 9 637 1.1527e-33 . . ID=b2g.4.41.0;accession=NP_932538;blast_align_length=553;blast_bits=144.05;blast_frame=0;blast_gaps=53;blast_identities=150;blast_positives=268;blast_query_end=569;blast_query_start=44;blast_sbjct_end=562;blast_sbjct_start=36;blast_score=362.0;blast_strand=None;description=baseplate hub subunit %5BAeromonas phage 44RR2.8t%5D;hit_id=gi%7C37651664%7Cref%7CNP_932538.1%7C;hit_titles=gi%7C37651664%7Cref%7CNP_932538.1%7C baseplate hub subunit %5BAeromonas phage 44RR2.8t%5D,gi%7C34732964%7Cgb%7CAAQ81501.1%7C baseplate hub subunit %5BAeromonas phage 44RR2.8t%5D;length=566 +Merlin_5 blast match_part 44 84 . . . Gap=M41;ID=b2g.4.41.0.0;Parent=b2g.4.41.0 +Merlin_5 blast match_part 88 92 . . . Gap=M5;ID=b2g.4.41.0.1;Parent=b2g.4.41.0 +Merlin_5 blast match_part 101 110 . . . Gap=M10;ID=b2g.4.41.0.2;Parent=b2g.4.41.0 +Merlin_5 blast match_part 115 118 . . . Gap=M4;ID=b2g.4.41.0.3;Parent=b2g.4.41.0 +Merlin_5 blast match_part 123 127 . . . Gap=M5;ID=b2g.4.41.0.4;Parent=b2g.4.41.0 +Merlin_5 blast match_part 131 144 . . . Gap=M14;ID=b2g.4.41.0.5;Parent=b2g.4.41.0 +Merlin_5 blast match_part 154 160 . . . Gap=M7;ID=b2g.4.41.0.6;Parent=b2g.4.41.0 +Merlin_5 blast match_part 166 167 . . . Gap=M2;ID=b2g.4.41.0.7;Parent=b2g.4.41.0 +Merlin_5 blast match_part 171 171 . . . Gap=M1;ID=b2g.4.41.0.8;Parent=b2g.4.41.0 +Merlin_5 blast match_part 175 178 . . . Gap=M4;ID=b2g.4.41.0.9;Parent=b2g.4.41.0 +Merlin_5 blast match_part 182 188 . . . Gap=M7;ID=b2g.4.41.0.10;Parent=b2g.4.41.0 +Merlin_5 blast match_part 192 200 . . . Gap=M9;ID=b2g.4.41.0.11;Parent=b2g.4.41.0 +Merlin_5 blast match_part 204 226 . . . Gap=M23;ID=b2g.4.41.0.12;Parent=b2g.4.41.0 +Merlin_5 blast match_part 231 258 . . . Gap=M28;ID=b2g.4.41.0.13;Parent=b2g.4.41.0 +Merlin_5 blast match_part 262 265 . . . Gap=M4;ID=b2g.4.41.0.14;Parent=b2g.4.41.0 +Merlin_5 blast match_part 270 273 . . . Gap=M4;ID=b2g.4.41.0.15;Parent=b2g.4.41.0 +Merlin_5 blast match_part 277 346 . . . Gap=M70;ID=b2g.4.41.0.16;Parent=b2g.4.41.0 +Merlin_5 blast match_part 351 375 . . . Gap=M25;ID=b2g.4.41.0.17;Parent=b2g.4.41.0 +Merlin_5 blast match_part 385 387 . . . Gap=M3;ID=b2g.4.41.0.18;Parent=b2g.4.41.0 +Merlin_5 blast match_part 393 393 . . . Gap=M1;ID=b2g.4.41.0.19;Parent=b2g.4.41.0 +Merlin_5 blast match_part 397 402 . . . Gap=M6;ID=b2g.4.41.0.20;Parent=b2g.4.41.0 +Merlin_5 blast match_part 409 413 . . . Gap=M5;ID=b2g.4.41.0.21;Parent=b2g.4.41.0 +Merlin_5 blast match_part 417 419 . . . Gap=M3;ID=b2g.4.41.0.22;Parent=b2g.4.41.0 +Merlin_5 blast match_part 423 431 . . . Gap=M9;ID=b2g.4.41.0.23;Parent=b2g.4.41.0 +Merlin_5 blast match_part 437 446 . . . Gap=M10;ID=b2g.4.41.0.24;Parent=b2g.4.41.0 +Merlin_5 blast match_part 451 461 . . . Gap=M11;ID=b2g.4.41.0.25;Parent=b2g.4.41.0 +Merlin_5 blast match_part 467 472 . . . Gap=M6;ID=b2g.4.41.0.26;Parent=b2g.4.41.0 +Merlin_5 blast match_part 476 478 . . . Gap=M3;ID=b2g.4.41.0.27;Parent=b2g.4.41.0 +Merlin_5 blast match_part 482 499 . . . Gap=M18;ID=b2g.4.41.0.28;Parent=b2g.4.41.0 +Merlin_5 blast match_part 506 511 . . . Gap=M6;ID=b2g.4.41.0.29;Parent=b2g.4.41.0 +Merlin_5 blast match_part 515 515 . . . Gap=M1;ID=b2g.4.41.0.30;Parent=b2g.4.41.0 +Merlin_5 blast match_part 519 526 . . . Gap=M8;ID=b2g.4.41.0.31;Parent=b2g.4.41.0 +Merlin_5 blast match_part 530 534 . . . Gap=M5;ID=b2g.4.41.0.32;Parent=b2g.4.41.0 +Merlin_5 blast match_part 540 557 . . . Gap=M2 I1 M15;ID=b2g.4.41.0.33;Parent=b2g.4.41.0 +Merlin_5 blast match_part 562 569 . . . Gap=M8;ID=b2g.4.41.0.34;Parent=b2g.4.41.0 +Merlin_5 blast protein_match 0 200 1.49556e-13 . . ID=b2g.4.42.0;accession=CCI89086;blast_align_length=195;blast_bits=79.7221;blast_frame=0;blast_gaps=17;blast_identities=69;blast_positives=102;blast_query_end=189;blast_query_start=2;blast_sbjct_end=187;blast_sbjct_start=3;blast_score=195.0;blast_strand=None;description=phage baseplate hub %5BYersinia phage phiD1%5D;hit_id=gi%7C398313739%7Cemb%7CCCI89086.1%7C;hit_titles=gi%7C398313739%7Cemb%7CCCI89086.1%7C phage baseplate hub %5BYersinia phage phiD1%5D;length=191 +Merlin_5 blast match_part 2 82 . . . Gap=M10 I1 M70;ID=b2g.4.42.0.0;Parent=b2g.4.42.0 +Merlin_5 blast match_part 89 89 . . . Gap=M1;ID=b2g.4.42.0.1;Parent=b2g.4.42.0 +Merlin_5 blast match_part 94 114 . . . Gap=M21;ID=b2g.4.42.0.2;Parent=b2g.4.42.0 +Merlin_5 blast match_part 120 124 . . . Gap=M5;ID=b2g.4.42.0.3;Parent=b2g.4.42.0 +Merlin_5 blast match_part 128 142 . . . Gap=M15;ID=b2g.4.42.0.4;Parent=b2g.4.42.0 +Merlin_5 blast match_part 149 157 . . . Gap=M9;ID=b2g.4.42.0.5;Parent=b2g.4.42.0 +Merlin_5 blast match_part 163 163 . . . Gap=M1;ID=b2g.4.42.0.6;Parent=b2g.4.42.0 +Merlin_5 blast match_part 168 189 . . . Gap=M10 I1 M11;ID=b2g.4.42.0.7;Parent=b2g.4.42.0